aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 685f42a676a7fe6c87171ed63fab4aeb004350d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

stdu : stdu.o intmath.o intmath.h
	cc -o stdu stdu.o intmath.o

stdu.o : stdu.c
	cc -c stdu.c

intmath.o : intmath.c minitest.h intmath.h
	cc -c intmath.c

test : tests.c minitest.h intmath.c
	cc -o test tests.c
	./test

clean :
	rm stdu stdu.o intmath.o test