aboutsummaryrefslogtreecommitdiff
path: root/sw/test-adder/Makefile
blob: 5271b70fb3fc93e37a8c32f0b569a3309caa2f5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
all: test-adder

test-adder : test-adder.o novena-eim.o
	gcc -o test-adder test-adder.o novena-eim.o
	
test-adder.o: test-adder.c novena-eim.h novena-eim.c
	gcc -c test-adder.c
	gcc -c novena-eim.c
	
clean:
	rm -f *.o test-adder