aboutsummaryrefslogtreecommitdiff
path: root/sw/test-sha256/Makefile
blob: ee8536e421af2ac7ed51c1f2310560e559dc2a33 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: test-sha256 hash_tester

.c.o:
	gcc -c -Wall -o $@ $<

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

hash_tester : hash_tester.o novena-eim.o
	gcc -o hash_tester hash_tester.o novena-eim.o

hash_tester.o: hash_tester.c novena-eim.h

novena-eim.o: novena-eim.c novena-eim.h

clean:
	rm -f *.o test-adder test-sha256 hash_tester