ecb mode working, still bug in cbc mode.
[my-code/crypto.git] / Makefile
1 #!/usr/bin/make
2
3 CC = gcc
4 CFLAGS = -O3 -Wall
5
6 TARGETS = test
7
8 all: $(TARGETS)
9
10 test: des.o
11
12 des.o: des.c
13
14 clean:
15         rm -f *.o test
16
17 remake: clean all