tinycc/Makefile

145 lines
3.3 KiB
Makefile
Raw Normal View History

2001-11-11 18:01:29 +00:00
#
# Tiny C Compiler Makefile
#
prefix=/usr/local
2001-10-27 23:48:39 +00:00
2002-01-05 19:57:08 +00:00
CFLAGS=-O2 -g -Wall
2001-11-11 18:01:29 +00:00
LIBS=-ldl
2001-12-17 21:57:01 +00:00
CFLAGS_P=$(CFLAGS) -pg -static -DCONFIG_TCC_STATIC
LIBS_P=
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
CFLAGS+=-m386 -malign-functions=0
2002-01-05 19:57:08 +00:00
DISAS=objdump -d
2001-11-11 18:01:29 +00:00
INSTALL=install
2002-03-17 11:41:46 +00:00
VERSION=0.9.6
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
all: tcc
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
# auto test
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
test: test.ref test.out
@if diff -u test.ref test.out ; then echo "Auto Test OK"; fi
2001-10-27 23:48:39 +00:00
2002-01-05 19:57:08 +00:00
tcctest.ref: tcctest.c
gcc $(CFLAGS) -I. -o $@ $<
2001-10-27 23:48:39 +00:00
2002-01-05 19:57:08 +00:00
test.ref: tcctest.ref
./tcctest.ref > $@
2001-11-11 18:01:29 +00:00
2002-01-05 19:57:08 +00:00
test.out: tcc tcctest.c
./tcc -I. tcctest.c > $@
2001-11-11 18:01:29 +00:00
2002-01-05 19:57:08 +00:00
run: tcc tcctest.c
./tcc -I. tcctest.c
2001-11-11 18:01:29 +00:00
2002-01-05 19:57:08 +00:00
# iterated test2 (compile tcc then compile tcctest.c !)
test2: tcc tcc.c tcctest.c test.ref
./tcc -I. tcc.c -I. tcctest.c > test.out2
2001-11-18 16:33:35 +00:00
@if diff -u test.ref test.out2 ; then echo "Auto Test2 OK"; fi
2001-10-27 23:48:39 +00:00
2002-01-05 19:57:08 +00:00
# iterated test3 (compile tcc then compile tcc then compile tcctest.c !)
test3: tcc tcc.c tcctest.c test.ref
./tcc -I. tcc.c -I. tcc.c -I. tcctest.c > test.out3
2001-11-18 16:33:35 +00:00
@if diff -u test.ref test.out3 ; then echo "Auto Test3 OK"; fi
2001-10-27 23:48:39 +00:00
2002-01-05 19:57:08 +00:00
# memory and bound check auto test
BOUNDS_OK = 1 4 8 10
2002-02-10 16:15:22 +00:00
BOUNDS_FAIL= 2 5 7 9 11 12 13
2002-01-05 19:57:08 +00:00
btest: boundtest.c tcc
@for i in $(BOUNDS_OK); do \
if ./tcc -b boundtest.c $$i ; then \
/bin/true ; \
else\
echo Failed positive test $$i ; exit 1 ; \
fi ;\
done ;\
for i in $(BOUNDS_FAIL); do \
if ./tcc -b boundtest.c $$i ; then \
echo Failed negative test $$i ; exit 1 ;\
else\
/bin/true ; \
fi\
done ;\
echo Bound test OK
2001-11-11 18:01:29 +00:00
# speed test
speed: tcc ex2 ex3
time ./ex2 1238 2 3 4 10 13 4
time ./tcc -I. ./ex2.c 1238 2 3 4 10 13 4
time ./ex3 35
time ./tcc -I. ./ex3.c 35
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
ex2: ex2.c
gcc $(CFLAGS) -o $@ $<
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
ex3: ex3.c
gcc $(CFLAGS) -o $@ $<
2001-10-28 15:20:24 +00:00
2002-02-10 16:15:22 +00:00
# Native Tiny C Compiler
2001-11-11 18:01:29 +00:00
2002-01-05 19:57:08 +00:00
tcc_g: tcc.c i386-gen.c bcheck.c Makefile
2001-11-11 18:01:29 +00:00
gcc $(CFLAGS) -o $@ $< $(LIBS)
tcc: tcc_g
strip -s -R .comment -R .note -o $@ $<
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
install: tcc
$(INSTALL) -m755 tcc $(prefix)/bin
mkdir -p $(prefix)/lib/tcc
2002-01-05 19:57:08 +00:00
$(INSTALL) -m644 stdarg.h stddef.h float.h stdbool.h \
tcclib.h $(prefix)/lib/tcc
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
clean:
2002-01-05 19:57:08 +00:00
rm -f *~ *.o tcc tcc1 tcct tcc_g tcctest.ref *.bin *.i ex2 \
2002-03-03 22:44:31 +00:00
core gmon.out test.out test.ref a.out tcc_p \
*.exe iltcc iltcc_g
2001-12-17 21:57:01 +00:00
2002-02-10 16:15:22 +00:00
# IL TCC
iltcc_g: tcc.c il-gen.c bcheck.c Makefile
gcc $(CFLAGS) -DTCC_TARGET_IL -o $@ $< $(LIBS)
iltcc: iltcc_g
strip -s -R .comment -R .note -o $@ $<
# win32 TCC
2002-01-26 18:06:03 +00:00
tcc_g.exe: tcc.c i386-gen.c bcheck.c Makefile
i386-mingw32msvc-gcc $(CFLAGS) -DCONFIG_TCC_STATIC -o $@ $<
tcc.exe: tcc_g.exe
i386-mingw32msvc-strip -o $@ $<
2001-12-17 21:57:01 +00:00
# profiling version
tcc_p: tcc.c Makefile
gcc $(CFLAGS_P) -o $@ $< $(LIBS_P)
2001-10-27 23:48:39 +00:00
2002-01-05 19:57:08 +00:00
# targets for development
2001-10-27 23:48:39 +00:00
2001-11-18 16:33:35 +00:00
%.bin: %.c tcc
2002-01-05 19:57:08 +00:00
./tcc -g -o $@ -I. $<
2001-11-11 18:01:29 +00:00
$(DISAS) $@
2001-10-28 15:20:24 +00:00
2001-12-17 21:57:01 +00:00
instr: instr.o
objdump -d instr.o
2001-10-28 15:20:24 +00:00
instr.o: instr.S
gcc -O2 -Wall -g -c -o $@ $<
2001-10-27 23:48:39 +00:00
2001-11-11 18:01:29 +00:00
FILE=tcc-$(VERSION)
tar:
rm -rf /tmp/$(FILE)
cp -r ../tcc /tmp/$(FILE)
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz \
2002-03-03 22:44:31 +00:00
$(FILE)/Makefile $(FILE)/Makefile.uClibc \
$(FILE)/README $(FILE)/TODO $(FILE)/COPYING \
2001-12-17 21:57:01 +00:00
$(FILE)/Changelog $(FILE)/tcc-doc.html \
2002-01-05 19:57:08 +00:00
$(FILE)/tcc.c $(FILE)/i386-gen.c $(FILE)/bcheck.c \
2002-03-03 22:44:31 +00:00
$(FILE)/il-opcodes.h $(FILE)/il-gen.c \
$(FILE)/elf.h $(FILE)/stab.h $(FILE)/stab.def \
2001-12-17 21:57:01 +00:00
$(FILE)/stddef.h $(FILE)/stdarg.h $(FILE)/stdbool.h $(FILE)/float.h \
$(FILE)/tcclib.h \
2002-01-05 19:57:08 +00:00
$(FILE)/ex*.c $(FILE)/tcctest.c $(FILE)/boundtest.c )
2001-11-11 18:01:29 +00:00
rm -rf /tmp/$(FILE)