aboutsummaryrefslogtreecommitdiff
path: root/eim/sw/Makefile
blob: 263a3270838f7fe47497e2d6b629a963045c2ae2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
all: hash_tester_eim trng_tester_eim hash_eim

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

hash_tester_eim: hash_tester_eim.o novena-eim.o tc_eim.o
	gcc -o $@ $^

hash_tester_eim.o: hash_tester_eim.c tc_eim.h cryptech_memory_map.h

trng_tester_eim: trng_tester_eim.o novena-eim.o tc_eim.o
	gcc -o $@ $^

trng_tester_eim.o: trng_tester_eim.c tc_eim.h cryptech_memory_map.h

hash_eim: hash_eim.o novena-eim.o tc_eim.o
	gcc -o $@ $^

hash_eim.o: hash_eim.c tc_eim.h

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

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

clean:
	rm -f *.o hash_tester_eim trng_tester_eim hash_eim