diff options
| author | Miloslav Trmač <mitr@redhat.com> | 2010-07-30 23:46:52 +0200 |
|---|---|---|
| committer | Miloslav Trmač <mitr@redhat.com> | 2010-08-23 19:57:58 +0200 |
| commit | cc005a2b4a52a3214635be20eafe819b57aa81ea (patch) | |
| tree | a9596bc68edfddbb3d098f82a9fde746477e0626 /examples/Makefile | |
| parent | 3115860ff33d01ac941839392386612225794e26 (diff) | |
| download | cryptodev-linux-cc005a2b4a52a3214635be20eafe819b57aa81ea.tar.gz cryptodev-linux-cc005a2b4a52a3214635be20eafe819b57aa81ea.tar.xz cryptodev-linux-cc005a2b4a52a3214635be20eafe819b57aa81ea.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 |
