mirror of
https://github.com/frida/tinycc
synced 2024-11-28 02:29:38 +03:00
d3e85e80fd
modified version of the old one which don't allow '.' in #define Identifiers. This allow correctly preprocess the following code in *.S #define SRC(y...) \ 9999: y; \ .section __ex_table, "a"; \ .long 9999b, 6001f ; \ // .previous SRC(1: movw (%esi), %bx) 6001: A test included.
53 lines
1.1 KiB
Makefile
53 lines
1.1 KiB
Makefile
#
|
|
# credits: 01..13.c from the pcc cpp-tests suite
|
|
#
|
|
|
|
TOP = ../..
|
|
include $(TOP)/Makefile
|
|
|
|
TCC = $(TOP)/tcc
|
|
TESTS = $(patsubst %.c,%.test,$(wildcard *.c))
|
|
TESTS += $(patsubst %.S,%.test,$(wildcard *.S))
|
|
|
|
ifdef CONFIG_WIN32
|
|
TCC = $(top_srcdir)/win32/tcc
|
|
endif
|
|
|
|
all test : $(TESTS)
|
|
|
|
%.test: %.c %.expect
|
|
@echo PPTest $* ...
|
|
@$(TCC) -E -P $< >$*.output 2>&1 ; \
|
|
diff -Nu -b -B -I "^#" $(EXTRA_DIFF_OPTS) $*.expect $*.output \
|
|
&& rm -f $*.output
|
|
|
|
%.test: %.S %.expect
|
|
@echo PPTest $* ...
|
|
@$(TCC) -E -P $< >$*.output 2>&1 ; \
|
|
diff -Nu -b -B -I "^#" $(EXTRA_DIFF_OPTS) $*.expect $*.output \
|
|
&& rm -f $*.output
|
|
|
|
# automatically generate .expect files with gcc:
|
|
%.expect: %.c
|
|
gcc -E -P $*.c >$*.expect 2>&1
|
|
|
|
%.expect: %.S
|
|
gcc -E -P $*.S >$*.expect 2>&1
|
|
|
|
# tell make not to delete
|
|
.PRECIOUS: %.expect
|
|
|
|
clean:
|
|
rm -vf *.output
|
|
|
|
# 02.test : EXTRA_DIFF_OPTS = -w
|
|
# 03.test : EXTRA_DIFF_OPTS = -w
|
|
# 04.test : EXTRA_DIFF_OPTS = -w
|
|
# 10.test : EXTRA_DIFF_OPTS = -w
|
|
|
|
# diff options:
|
|
# -b ighore space changes
|
|
# -w ighore all whitespace
|
|
# -B ignore blank lines
|
|
# -I <RE> ignore lines matching RE
|