blob: 3c3b8aed1054061c99dec5e4feef697c56b04e38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
stdu : stdu.o intmath.o intmath.h config-parser.h config-parser.o
cc -o stdu stdu.o intmath.o config-parser.o
stdu.o : stdu.c
cc -c stdu.c
intmath.o : intmath.c minitest.h intmath.h
cc -c intmath.c
config-parser.o : config-parser.c config-parser.h minitest.h
cc -c config-parser.c
test : tests.c minitest.h intmath.c config-parser.c
cc -o test tests.c
./test
clean :
rm stdu stdu.o intmath.o test config-parser.o
|