summaryrefslogtreecommitdiffstats
path: root/examples/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Makefile')
-rw-r--r--examples/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/examples/Makefile b/examples/Makefile
deleted file mode 100644
index 883529ea955..00000000000
--- a/examples/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-CC = gcc
-CFLAGS = -Wall -g -O2
-
-progs := ncr pk speed
-
-all: $(progs)
-
-speed: speed.c
- $(CC) $(CFLAGS) $< -o $@
-
-ncr: ncr.c
- $(CC) $(CFLAGS) $< -o $@
-
-pk: pk.c
- $(CC) $(CFLAGS) $< -o $@ -L/usr/local/lib -lgnutls
-
-uspeed: shm/aes_cbc.c shm/shm.c shm/aes.h
- $(CC) $(CFLAGS) shm/aes_cbc.c shm/shm.c -o $@ -Ishm -lpthread
-
-check: $(progs)
- ./ncr
- ./pk
- ./speed
-
-clean:
- rm -f *.o *~ $(progs)