aboutsummaryrefslogtreecommitdiff
path: root/sw/Makefile
blob: b9fb6a22cce2a2a0d882d0a82e0b6c73f5c907c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: hash_tester

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

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 hash_tester