File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,13 +35,20 @@ clean:
3535 make -C toke clean
3636 make -C detok clean
3737 make -C romheaders clean
38+ make -C testsuite clean
3839
3940distclean : clean
4041 make -C toke distclean
4142 make -C detok distclean
4243 make -C romheaders distclean
44+ make -C testsuite distclean
4345
46+ tests : all
47+ cp toke/toke testsuite
48+ cp detok/detok testsuite
49+ cp romheaders/romheaders testsuite
50+ make -C testsuite all
4451
4552
46- .PHONY : all clean distclean toke detok romheaders
53+ .PHONY : all clean distclean toke detok romheaders tests
4754
Original file line number Diff line number Diff line change 1+ all :
2+ @echo " starting testsuite"
3+ @csh AutoExec
4+
5+
6+ clean :
7+ find . -name " *.DeTok" -exec rm -f \{\} \;
8+ find . -name " *.Log" -a ! -name " *..OldTkzr.Log" -exec rm -f \{\} \;
9+ find . -name " *.fc" -exec rm -f \{\} \;
10+ find . -name " *.fl" -exec rm -f \{\} \;
11+ find . -name " *.RomHdr" -exec rm -f \{\} \;
12+ find . -name " *.P" -exec rm -f \{\} \;
13+ find . -name " *.missing" -exec rm -f \{\} \;
14+
15+ distclean : clean
16+ rm -f toke detok romheaders
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ INCLUDES = -I../shared
3030
3131# No coverage:
3232# CFLAGS = -O2 -g -Wall
33- CFLAGS = -Os -Wall -Wno-pointer-sign -DSYS_IS_GNU_Linux
33+ CFLAGS = -Os -Wall -Wno-pointer-sign -fno-strict-aliasing - DSYS_IS_GNU_Linux
3434LDFLAGS =
3535
3636# Coverage:
You can’t perform that action at this time.
0 commit comments