blob: c513ed026cda211f788a1590fb1bdcc5c1c8f230 (
plain) (
tree)
|
|
all: test-sha256
test-sha256 : test-sha256.o novena-eim.o
gcc -o test-sha256 test-sha256.o novena-eim.o
test-sha256.o: test-sha256.c novena-eim.h novena-eim.c
gcc -c test-sha256.c
gcc -c novena-eim.c
clean:
rm -f *.o test-sha256
|