From da24739c59255b6b2217fcdf16cfd3c7d78801cf Mon Sep 17 00:00:00 2001 From: Ross Patterson Date: Thu, 17 Sep 2020 12:19:35 -0700 Subject: [PATCH] build(make): Cleanup unused target AFAIK, prefixing a target with a `.` (aside from the special targets make itself treats differently) is just to exclude it from being the default target, but the default target is already defined above this one. Also, it just runs another target which doesn't exist AFAIKT. --- Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/Makefile b/Makefile index e85f29b48..5b0defe32 100644 --- a/Makefile +++ b/Makefile @@ -28,9 +28,6 @@ APPNAME=tahoe-lafs make-version: $(PYTHON) ./setup.py update_version -.built: - $(MAKE) build - src/allmydata/_version.py: $(MAKE) make-version