aboutsummaryrefslogtreecommitdiff
path: root/sw/test-adder/Makefile
blob: bd6cfa0c346e390b6f37b2990b7c4d8f71c30646 (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 -Wall test-adder.c
	gcc -c -Wall novena-eim.c

clean:
	rm -f *.o test-adder