From: leslie Date: Tue, 1 Jan 2008 13:23:47 +0000 (+0100) Subject: Makefile: fix dependencies target X-Git-Tag: 0.8.7~34 X-Git-Url: http://www.vanbest.org/gitweb/?a=commitdiff_plain;h=ba41db454aa5ed30327bd650ae518c556abe1577;p=sasc-ng.git Makefile: fix dependencies target --- diff --git a/Makefile b/Makefile index 2f560fa..e865dfc 100644 --- a/Makefile +++ b/Makefile @@ -135,7 +135,7 @@ export CXXFLAGS MAKEDEP = g++ -MM -MG DEPFILE = .dependencies -DEPFILES = $(subst i18n.c,,$(subst version.c,,$(OBJS:%.o=%.c))) $(wildcard *.h) +DEPFILES = $(subst i18n.c,,$(subst version.c,,$(OBJS:%.o=%.c))) $(DEPFILE): $(DEPFILES) $(wildcard *.h) @$(MAKEDEP) $(DEFINES) $(SHAREDDEFINES) $(INCLUDES) $(DEPFILES) > $@