d4-core/client/Makefile

21 lines
389 B
Makefile
Raw Normal View History

2018-12-05 09:48:16 +01:00
all: d4
hmac: hmac.o sha2.o
$(CC) sha2.o hmac.o -o hmac
hmac.o: ./others/hmac/hmac_sha2.c ./others/hmac/hmac_sha2.h
$(CC) -Wall -c ./others/hmac/hmac_sha2.c -o hmac.o
sha2.o: ./others/hmac/sha2.c ./others/hmac/sha2.h
$(CC) -c ./others/hmac/sha2.c -o sha2.o
clean:
- rm -rf *.o hmac
d4: d4.o sha2.o hmac.o
gcc -Wall -o d4 d4.o hmac.o sha2.o -luuid
2018-12-04 14:24:52 +01:00
d4.o: d4.c
gcc -Wall -c d4.c