From b865ea3383d198464e920194b61d40dee32dc019 Mon Sep 17 00:00:00 2001 From: Andre Noll Date: Sat, 16 Jul 2016 22:47:57 +0200 Subject: [PATCH] build: Remove target "dep". It is not needed at all. The attempt to include non-existent or outdated .d files instructs make to rebuild them. --- Makefile.real | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile.real b/Makefile.real index a226df1b..ce4881d2 100644 --- a/Makefile.real +++ b/Makefile.real @@ -65,9 +65,8 @@ tarball_pfx := $(PACKAGE_TARNAME)-$(GIT_VERSION) tarball_delete := $(addprefix $(tarball_pfx)/, web .gitignore) tarball := $(tarball_pfx).tar.bz2 -.PHONY: dep all clean clean2 distclean maintainer-clean install man tarball -all: dep $(prefixed_executables) $(man_pages) -dep: $(deps) +.PHONY: all clean clean2 distclean maintainer-clean install man tarball +all: $(prefixed_executables) $(man_pages) man: $(man_pages) tarball: $(tarball) -- 2.39.2