blob: e5bfd681e3992b26b4b8f71b4e3b3e9e9af7ab1c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
stdu : stdu.o intmath.o intmath.h config-parser.h config-parser.o formatting.o \
formatting.h
cc -g -o stdu stdu.o intmath.o config-parser.o formatting.o
stdu.o : stdu.c
cc -g -c stdu.c
formatting.o : formatting.h formatting.c intmath.h intmath.c minitest.h
cc -g -c formatting.c
intmath.o : intmath.c minitest.h intmath.h
cc -g -c intmath.c
config-parser.o : config-parser.c config-parser.h minitest.h
cc -g -c config-parser.c
tests : tests.c minitest.h intmath.c config-parser.c formatting.c
cc -g -o tests tests.c
test : tests
./tests
clean :
rm stdu stdu.o intmath.o tests config-parser.o formatting.o
|