Skip to content
Snippets Groups Projects
Commit f577c201 authored by Niels Möller's avatar Niels Möller
Browse files

* 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
parent ad669a2f
No related branches found
No related tags found
No related merge requests found
......@@ -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)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment