diff options
| author | Miloslav Trmač <mitr@redhat.com> | 2010-08-23 20:27:29 +0200 |
|---|---|---|
| committer | Miloslav Trmač <mitr@redhat.com> | 2010-08-23 20:27:29 +0200 |
| commit | c3eeccf6491c632037dfef737f3e40ed24e5bf72 (patch) | |
| tree | 4399d2c6f8f2395392da281126c06919f5883cd7 /examples/Makefile | |
| parent | 8909294e19aa6a9154891950a7878a938676aec7 (diff) | |
| parent | cc005a2b4a52a3214635be20eafe819b57aa81ea (diff) | |
| download | cryptodev-linux-c3eeccf6491c632037dfef737f3e40ed24e5bf72.tar.gz cryptodev-linux-c3eeccf6491c632037dfef737f3e40ed24e5bf72.tar.xz cryptodev-linux-c3eeccf6491c632037dfef737f3e40ed24e5bf72.zip | |
Merge branch 'drop-old-interface' into integration
Conflicts:
cryptodev_main.c
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 |
