-
Notifications
You must be signed in to change notification settings - Fork 0
/
makefile
executable file
·52 lines (35 loc) · 948 Bytes
/
makefile
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
CFLAGS = -Wall -O3
CC=gcc -std=c1x
.c.o :
${CC} ${CFLAGS} -c $<
all : doc test
doc : strbld.c strnbld.c strbld.h Doxyfile
doxygen Doxyfile
test : test_strbld.txt test_strnbld.txt test_multi_strbld.txt
test_strbld.txt : test_strbld
./$? > $@
test_strnbld.txt : test_strnbld
./$? > $@
test_multi_strbld.txt : test_multi_strbld
./$? > $@
test_strbld : test_strbld.o strbld.o strnbld.o
${CC} ${CFLAGS} -o $@ test_strbld.o strbld.o strnbld.o
test_strnbld : test_strnbld.o strnbld.o
${CC} ${CFLAGS} -o $@ test_strnbld.o strnbld.o
test_multi_strbld : test_multi_strbld.o strbld.o
${CC} ${CFLAGS} -o $@ test_multi_strbld.o strbld.o
test_strbld.o : test_strbld.c
test_strnbld.o : test_strnbld.c
test_multi_strbld.o : test_multi_strbld.c
strbld.o : strbld.c
strnbld.o : strnbld.c
clean :
rm -f *.o
clean_targets :
rm -f *.o
rm -f test_strbld
rm -f test_strnbld
rm -f test_multi_strbld
rm -f test_*.txt
rm -rf html
rm -rf man