]> mj.ucw.cz Git - eval.git/blob - judge/Makefile
Added test cases for the tokenizing judge.
[eval.git] / judge / Makefile
1 CC=gcc-4.1.1
2 CFLAGS=-O2 -Wall -W -Wno-parentheses -Wstrict-prototypes -Wmissing-prototypes -Wundef -Wredundant-decls -Winline $(DEBUG) -std=gnu99
3 CFLAGS+=-Wno-pointer-sign -Wdisabled-optimization -Wno-missing-field-initializers
4
5 all: test-io test-tok judge-tok judge-shuff filter-cmt
6
7 JLIB=utils.o io.o token.o
8
9 test-io: test-io.o $(JLIB)
10 test-tok: test-tok.o $(JLIB)
11 judge-tok: judge-tok.o $(JLIB)
12 judge-tok: LDLIBS+=-lm
13 judge-shuff: judge-shuff.o $(JLIB)
14 filter-cmt: filter-cmt.o $(JLIB)
15
16 tests: $(addsuffix .test,io token filter-cmt judge-tok)
17 io.test: test-io
18 token.test: test-tok
19 filter-cmt.test: filter-cmt
20 judge-tok.test: judge-tok
21
22 %.test: %.t tester
23         ./tester $<
24
25 clean::
26         rm -f `find . -name "*~" -or -name "*.[oa]" -or -name "\#*\#" -or -name TAGS -or -name core`
27         rm -f test-io test-tok judge-tok filter-cmt
28         rm -rf tmp
29
30 .PHONY: all clean distclean