summaryrefslogtreecommitdiffstats
path: root/demos/sign/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'demos/sign/Makefile.in')
-rw-r--r--demos/sign/Makefile.in16
1 files changed, 0 insertions, 16 deletions
diff --git a/demos/sign/Makefile.in b/demos/sign/Makefile.in
deleted file mode 100644
index f6afeb7be0..0000000000
--- a/demos/sign/Makefile.in
+++ /dev/null
@@ -1,16 +0,0 @@
-CC=cc
-CFLAGS= -g -I../../include -Wall
-LIBS= -L../.. -lcrypto
-EXAMPLES=sign
-
-all: $(EXAMPLES)
-
-sign: sign.o
- $(CC) -o sign sign.o $(LIBS)
-
-clean:
- rm -f $(EXAMPLES) *.o
-
-test: all
- ./sign
-# DO NOT DELETE THIS LINE -- make depend depends on it.