From: Niels Möller Date: Sun, 14 Nov 2004 11:04:00 +0000 (+0100) Subject: (DEP_FILES): Try include with only one macro X-Git-Tag: before_experimental_branch_20050201~32 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=2ee4d441dfc82307692b10d09c627946385ae041;p=thirdparty%2Fnettle.git (DEP_FILES): Try include with only one macro argument to be expanted. Rev: src/nettle/ChangeLog:1.299 Rev: src/nettle/Makefile.in:1.11 --- diff --git a/ChangeLog b/ChangeLog index e995d4be..4e285256 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2004-11-14 Niels Möller + * Makefile.in (DEP_FILES): Try include with only one macro + argument to be expanted. + * configure.ac (dummy-dep-files): Create dummy dependency files, so that they can be included by the makefiles. diff --git a/Makefile.in b/Makefile.in index f7823001..4cd2d7ab 100644 --- a/Makefile.in +++ b/Makefile.in @@ -323,4 +323,5 @@ distclean-here: clean-here -rm -f config.h stamp-h config.log config.status \ config.make config.m4 Makefile nettle-types.h -include $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d) +DEP_FILES = $(SOURCES:.c=.$(OBJEXT).d) $(SOURCES:.c=.p$(OBJEXT).d) +include $(DEP_FILES)