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