From ad669a2f1c39145104e6e02c62765e75fe863e33 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Niels=20M=C3=B6ller?= <nisse@lysator.liu.se>
Date: Wed, 20 Oct 2004 00:44:43 +0200
Subject: [PATCH] * examples/Makefile.in (INCLUDES): Added -I flags. (distdir):
 Use $^ to refer to the files. (distclean): New target.

Rev: src/nettle/examples/Makefile.in:1.2
---
 examples/Makefile.in | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)

diff --git a/examples/Makefile.in b/examples/Makefile.in
index b51d8d9c..c2f6c96c 100644
--- a/examples/Makefile.in
+++ b/examples/Makefile.in
@@ -7,6 +7,8 @@ top_srcdir = @top_srcdir@
 
 include ../config.make
 
+INCLUDES = -I.. -I$(top_srcdir)
+
 OPENSSL_LIBFLAGS = @OPENSSL_LIBFLAGS@
 TARGETS = nettle-benchmark @RSA_EXAMPLES@
 SOURCES = nettle-benchmark.c nettle-openssl.c \
@@ -16,7 +18,7 @@ SOURCES = nettle-benchmark.c nettle-openssl.c \
 TS_ALL = rsa-sign-test rsa-verify-test rsa-encrypt-test
 
 DISTFILES= $(SOURCES) Makefile.in $(TS_ALL) run-tests setup-env teardown-env \
-	io.h rsa-session.h 
+	io.h rsa-session.h
 
 all: $(TARGETS)
 
@@ -64,9 +66,12 @@ install:
 	true
 
 distdir: $(DISTFILES)
-	cp $(DISTFILES) $(distdir)
+	cp $^ $(distdir)
 
 clean:
-	rm -f $(TARGETS) *.o *.d
+	-rm -f $(TARGETS) *.o *.d
+
+distclean: clean
+	-rm -f Makefile
 
 -include $(SOURCES:.c=.$(OBJEXT).d)
-- 
GitLab