diff options
| author | Miloslav Trmač <mitr@redhat.com> | 2010-07-30 23:46:52 +0200 |
|---|---|---|
| committer | Miloslav Trmač <mitr@redhat.com> | 2010-08-24 20:05:48 +0200 |
| commit | 6ac025f801eaaf1aec4f652b951424522ec00686 (patch) | |
| tree | 797df3a4ad647db8b19e8519bf75c28f221e5d84 /examples/Makefile | |
| parent | 9d84f5fe384751085e07ed60b634359a0a3b9370 (diff) | |
| download | cryptodev-linux-6ac025f801eaaf1aec4f652b951424522ec00686.tar.gz cryptodev-linux-6ac025f801eaaf1aec4f652b951424522ec00686.tar.xz cryptodev-linux-6ac025f801eaaf1aec4f652b951424522ec00686.zip | |
Drop <cryptodev.h>
Also drop implementation of its ioctls, examples, openssl patch.
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 |
