diff options
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/examples/Makefile b/examples/Makefile index 100cc49..d149088 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -1,19 +1,13 @@ CC = gcc CFLAGS = -Wall -g -O2 -progs := cipher hmac ncr pk speed +progs := ncr pk speed all: $(progs) -cipher: cipher.c - $(CC) $(CFLAGS) $< -o $@ - speed: speed.c $(CC) $(CFLAGS) $< -o $@ -hmac: hmac.c - $(CC) $(CFLAGS) $< -o $@ - ncr: ncr.c $(CC) $(CFLAGS) $< -o $@ @@ -23,9 +17,7 @@ pk: pk.c check: $(progs) ./ncr ./pk - ./cipher - ./hmac ./speed clean: - rm -f *.o *~ hmac cipher ncr pk speed
\ No newline at end of file + rm -f *.o *~ ncr pk speed |
