[c307d5]: / Makefile  Maximize  Restore  History

Download this file

50 lines (36 with data), 846 Bytes

 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
C2IEC=c99
TESTS=$(patsubst %.c, %.test, $(wildcard test/*.c))
TEST_LOGS=$(patsubst %.c, %.test.log, $(wildcard test/*.c))
all: c99
c99: lex.yy.c y.tab.c
gcc -o $@ $^
lex.yy.c: c99.l
flex $^
y.tab.c: c99.y
yacc -d $^
y.dot: c99.y
yacc -g $^
commit: ${TEST_LOGS}
for i in ${TEST_LOGS}; do \
cp $$i $$(dirname $$i)/$$(basename $$i .log).expected; \
done
clean:
rm -f ${C2IEC}
rm -f ${TEST_LOGS}
.PHONY: test
test: ${TESTS}
%.test: %.test.log
@echo "========================================"
@echo "checking output of test $*"
@diff $< $*.test.expected
%.test.log: %.test.txt
@echo "========================================"
@echo "output of test $*"
@echo "========================================"
@cat $< | tee $@
%.test.txt: %.c ${C2IEC}
./${C2IEC} < $< > $@
test2: c99
./c99 < test2.c
test3: c99
./c99 < test3.c