From: Niels Möller Date: Tue, 19 Oct 2004 22:45:05 +0000 (+0200) Subject: * examples/Makefile.in (INCLUDES): Added -I flags. X-Git-Tag: nettle_1.11_release_20041026~30 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=f577c2018d41973d52071736ad54a26193e7274f;p=thirdparty%2Fnettle.git * examples/Makefile.in (INCLUDES): Added -I flags. (distdir): Use $^ to refer to the files. (distclean): New target. * testsuite/Makefile.in: Likewise. Rev: src/nettle/testsuite/Makefile.in:1.2 --- diff --git a/testsuite/Makefile.in b/testsuite/Makefile.in index 5b408de9..df774f52 100644 --- a/testsuite/Makefile.in +++ b/testsuite/Makefile.in @@ -7,6 +7,8 @@ top_srcdir = @top_srcdir@ include ../config.make +INCLUDES = -I.. -I$(top_srcdir) + TS_SOURCES = aes-test.c arcfour-test.c arctwo-test.c \ blowfish-test.c cast128-test.c \ base16-test.c base64-test.c \ @@ -77,9 +79,12 @@ install: true distdir: $(DISTFILES) - cp $(DISTFILES) $(distdir) + cp $^ $(distdir) clean: - rm -f $(TARGETS) *.o *.d + -rm -f $(TARGETS) *.o *.d test.in test1.out test2.out + +distclean: clean + -rm -f Makefile -include $(SOURCES:.c=.$(OBJEXT).d)