aboutsummaryrefslogtreecommitdiff
path: root/sw/test-sha256/Makefile
blob: c513ed026cda211f788a1590fb1bdcc5c1c8f230 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
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