tinycc/Makefile

299 lines
7.4 KiB
Makefile
Raw Normal View History

2001-11-12 02:01:29 +08:00
#
# Tiny C Compiler Makefile
#
2003-04-14 03:48:19 +08:00
include config.mak
2001-10-28 07:48:39 +08:00
2005-09-04 02:34:22 +08:00
CFLAGS+=-g -Wall
2004-10-08 05:11:43 +08:00
ifndef CONFIG_WIN32
2001-11-12 02:01:29 +08:00
LIBS=-ldl
2004-10-08 05:11:43 +08:00
BCHECK_O=bcheck.o
endif
2001-12-18 05:57:01 +08:00
CFLAGS_P=$(CFLAGS) -pg -static -DCONFIG_TCC_STATIC
LIBS_P=
2001-10-28 07:48:39 +08:00
2003-04-14 03:48:19 +08:00
CFLAGS+=-mpreferred-stack-boundary=2
ifeq ($(GCC_MAJOR),2)
CFLAGS+=-m386 -malign-functions=0
else
2004-11-08 02:08:15 +08:00
CFLAGS+=-march=i386 -falign-functions=0 -fno-strict-aliasing
2003-04-14 03:48:19 +08:00
endif
2002-01-06 03:57:08 +08:00
DISAS=objdump -d
2001-11-12 02:01:29 +08:00
INSTALL=install
ifdef CONFIG_WIN32
PROGS=tcc$(EXESUF)
ifdef CONFIG_CROSS
PROGS+=c67-tcc$(EXESUF) arm-tcc$(EXESUF)
endif
PROGS+=tiny_impdef$(EXESUF)
else
ifeq ($(ARCH),i386)
PROGS=tcc$(EXESUF)
ifdef CONFIG_CROSS
PROGS+=arm-tcc$(EXESUF)
endif
endif
ifeq ($(ARCH),arm)
PROGS=tcc$(EXESUF)
ifdef CONFIG_CROSS
PROGS+=i386-tcc$(EXESUF)
endif
endif
ifdef CONFIG_CROSS
PROGS+=c67-tcc$(EXESUF) i386-win32-tcc$(EXESUF)
endif
endif
2002-07-25 06:13:02 +08:00
# run local version of tcc with local libraries and includes
TCC=./tcc -B. -I.
2004-10-08 05:11:43 +08:00
all: $(PROGS) \
2005-06-18 06:03:50 +08:00
libtcc1.a $(BCHECK_O) tcc-doc.html tcc.1 libtcc.a \
2004-10-08 05:11:43 +08:00
libtcc_test$(EXESUF)
2003-04-14 03:48:19 +08:00
Makefile: config.mak
2001-10-28 07:48:39 +08:00
2001-11-12 02:01:29 +08:00
# auto test
2001-10-28 07:48:39 +08:00
2001-11-12 02:01:29 +08:00
test: test.ref test.out
@if diff -u test.ref test.out ; then echo "Auto Test OK"; fi
2001-10-28 07:48:39 +08:00
2002-01-06 03:57:08 +08:00
tcctest.ref: tcctest.c
2003-04-14 03:48:19 +08:00
$(CC) $(CFLAGS) -I. -o $@ $<
2001-10-28 07:48:39 +08:00
2002-01-06 03:57:08 +08:00
test.ref: tcctest.ref
./tcctest.ref > $@
2001-11-12 02:01:29 +08:00
2002-01-06 03:57:08 +08:00
test.out: tcc tcctest.c
2003-04-14 05:55:08 +08:00
$(TCC) -run tcctest.c > $@
2001-11-12 02:01:29 +08:00
2002-01-06 03:57:08 +08:00
run: tcc tcctest.c
2003-04-14 05:55:08 +08:00
$(TCC) -run tcctest.c
2001-11-12 02:01:29 +08:00
2002-01-06 03:57:08 +08:00
# iterated test2 (compile tcc then compile tcctest.c !)
test2: tcc tcc.c tcctest.c test.ref
2003-04-14 05:55:08 +08:00
$(TCC) -run tcc.c -B. -I. -run tcctest.c > test.out2
2001-11-19 00:33:35 +08:00
@if diff -u test.ref test.out2 ; then echo "Auto Test2 OK"; fi
2001-10-28 07:48:39 +08:00
2002-01-06 03:57:08 +08:00
# iterated test3 (compile tcc then compile tcc then compile tcctest.c !)
test3: tcc tcc.c tcctest.c test.ref
2003-04-14 05:55:08 +08:00
$(TCC) -run tcc.c -B. -I. -run tcc.c -B. -I. -run tcctest.c > test.out3
2001-11-19 00:33:35 +08:00
@if diff -u test.ref test.out3 ; then echo "Auto Test3 OK"; fi
2001-10-28 07:48:39 +08:00
2002-08-18 22:31:04 +08:00
# binary output test
test4: tcc test.ref
# dynamic output
$(TCC) -o tcctest1 tcctest.c
./tcctest1 > test1.out
@if diff -u test.ref test1.out ; then echo "Dynamic Auto Test OK"; fi
# static output
$(TCC) -static -o tcctest2 tcctest.c
./tcctest2 > test2.out
@if diff -u test.ref test2.out ; then echo "Static Auto Test OK"; fi
# object + link output
$(TCC) -c -o tcctest3.o tcctest.c
$(TCC) -o tcctest3 tcctest3.o
./tcctest3 > test3.out
@if diff -u test.ref test3.out ; then echo "Object Auto Test OK"; fi
# dynamic output + bound check
$(TCC) -b -o tcctest4 tcctest.c
./tcctest4 > test4.out
@if diff -u test.ref test4.out ; then echo "BCheck Auto Test OK"; fi
2002-01-06 03:57:08 +08:00
# memory and bound check auto test
BOUNDS_OK = 1 4 8 10
2002-02-11 00:15:22 +08:00
BOUNDS_FAIL= 2 5 7 9 11 12 13
2002-01-06 03:57:08 +08:00
btest: boundtest.c tcc
@for i in $(BOUNDS_OK); do \
2003-04-14 05:55:08 +08:00
if $(TCC) -b -run boundtest.c $$i ; then \
2002-01-06 03:57:08 +08:00
/bin/true ; \
else\
echo Failed positive test $$i ; exit 1 ; \
fi ;\
done ;\
for i in $(BOUNDS_FAIL); do \
2003-04-14 05:55:08 +08:00
if $(TCC) -b -run boundtest.c $$i ; then \
2002-01-06 03:57:08 +08:00
echo Failed negative test $$i ; exit 1 ;\
else\
/bin/true ; \
fi\
done ;\
echo Bound test OK
2001-11-12 02:01:29 +08: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-28 07:48:39 +08:00
2001-11-12 02:01:29 +08:00
ex2: ex2.c
2003-04-14 03:48:19 +08:00
$(CC) $(CFLAGS) -o $@ $<
2001-10-28 07:48:39 +08:00
2001-11-12 02:01:29 +08:00
ex3: ex3.c
2003-04-14 03:48:19 +08:00
$(CC) $(CFLAGS) -o $@ $<
2001-10-28 23:20:24 +08:00
# Host Tiny C Compiler
ifdef CONFIG_WIN32
tcc$(EXESUF): tcc.c i386-gen.c tccelf.c tccasm.c i386-asm.c tcctok.h libtcc.h i386-asm.h tccpe.c
$(CC) $(CFLAGS) -DTCC_TARGET_PE -o $@ $< $(LIBS)
else
ifeq ($(ARCH),i386)
tcc$(EXESUF): tcc.c i386-gen.c tccelf.c tccasm.c i386-asm.c tcctok.h libtcc.h i386-asm.h
2003-04-14 03:48:19 +08:00
$(CC) $(CFLAGS) -o $@ $< $(LIBS)
endif
ifeq ($(ARCH),arm)
tcc$(EXESUF): tcc.c arm-gen.c tccelf.c tccasm.c tcctok.h libtcc.h
$(CC) $(CFLAGS) -DTCC_TARGET_ARM -o $@ $< $(LIBS)
endif
endif
2001-11-12 02:01:29 +08:00
# Cross Tiny C Compilers
i386-tcc$(EXESUF): tcc.c i386-gen.c tccelf.c tccasm.c i386-asm.c tcctok.h libtcc.h i386-asm.h
$(CC) $(CFLAGS) -o $@ $< $(LIBS)
2001-10-28 07:48:39 +08:00
c67-tcc$(EXESUF): tcc.c c67-gen.c tccelf.c tccasm.c tcctok.h libtcc.h tcccoff.c
2004-10-05 05:57:35 +08:00
$(CC) $(CFLAGS) -DTCC_TARGET_C67 -o $@ $< $(LIBS)
arm-tcc$(EXESUF): tcc.c arm-gen.c tccelf.c tccasm.c tcctok.h libtcc.h
2004-10-05 06:19:21 +08:00
$(CC) $(CFLAGS) -DTCC_TARGET_ARM -o $@ $< $(LIBS)
i386-win32-tcc$(EXESUF): tcc.c i386-gen.c tccelf.c tccasm.c i386-asm.c tcctok.h libtcc.h i386-asm.h tccpe.c
2005-04-11 05:46:58 +08:00
$(CC) $(CFLAGS) -DTCC_TARGET_PE -o $@ $< $(LIBS)
# windows utilities
tiny_impdef$(EXESUF): tiny_impdef.c
$(CC) $(CFLAGS) -o $@ $< -lkernel32
2002-07-25 06:13:02 +08:00
# TinyCC runtime libraries
ifdef CONFIG_WIN32
2005-06-18 06:03:50 +08:00
# for windows, we must use TCC because we generate ELF objects
LIBTCC1_OBJS=$(addprefix win32/lib/, crt1.o wincrt1.o dllcrt1.o dllmain.o chkstk.o) libtcc1.o
2005-06-18 06:03:50 +08:00
LIBTCC1_CC=./tcc.exe -Bwin32
else
LIBTCC1_OBJS=libtcc1.o
2005-06-18 06:03:50 +08:00
LIBTCC1_CC=$(CC)
endif
%.o: %.c
2005-06-18 06:03:50 +08:00
$(LIBTCC1_CC) -O2 -Wall -c -o $@ $<
2002-07-25 06:13:02 +08:00
%.o: %.S
2005-06-18 06:03:50 +08:00
$(LIBTCC1_CC) -c -o $@ $<
2005-06-18 06:03:50 +08:00
libtcc1.a: $(LIBTCC1_OBJS)
$(AR) rcs $@ $^
2002-07-25 06:13:02 +08:00
bcheck.o: bcheck.c
2003-04-14 03:48:19 +08:00
$(CC) -O2 -Wall -c -o $@ $<
install: tcc_install libinstall
2005-06-18 06:03:50 +08:00
tcc_install: $(PROGS) tcc.1 libtcc1.a $(BCHECK_O) tcc-doc.html tcc.1
2004-10-08 05:11:43 +08:00
mkdir -p "$(bindir)"
$(INSTALL) -s -m755 $(PROGS) "$(bindir)"
ifndef CONFIG_WIN32
mkdir -p "$(mandir)/man1"
$(INSTALL) tcc.1 "$(mandir)/man1"
endif
mkdir -p "$(tccdir)"
mkdir -p "$(tccdir)/include"
ifdef CONFIG_WIN32
2005-04-15 08:23:00 +08:00
mkdir -p "$(tccdir)/lib"
2005-06-18 06:03:50 +08:00
$(INSTALL) -m644 libtcc1.a win32/lib/*.def "$(tccdir)/lib"
cp -r win32/include/. "$(tccdir)/include"
cp -r win32/examples/. "$(tccdir)/examples"
else
2005-06-18 06:03:50 +08:00
$(INSTALL) -m644 libtcc1.a $(BCHECK_O) "$(tccdir)"
2002-11-24 23:58:28 +08:00
$(INSTALL) -m644 stdarg.h stddef.h stdbool.h float.h varargs.h \
tcclib.h "$(tccdir)/include"
endif
2004-10-08 05:11:43 +08:00
mkdir -p "$(docdir)"
$(INSTALL) -m644 tcc-doc.html "$(docdir)"
ifdef CONFIG_WIN32
$(INSTALL) -m644 win32/readme.txt "$(docdir)"
endif
2001-10-28 07:48:39 +08:00
2001-11-12 02:01:29 +08:00
clean:
2005-04-15 08:11:02 +08:00
rm -f *~ *.o *.a tcc tcc1 tcct tcc_g tcctest.ref *.bin *.i ex2 \
2002-03-04 06:44:31 +08:00
core gmon.out test.out test.ref a.out tcc_p \
2005-06-18 06:03:50 +08:00
*.exe *.lib tcc.pod libtcc_test \
tcctest[1234] test[1234].out $(PROGS) win32/lib/*.o
2001-12-18 05:57:01 +08:00
2003-04-14 03:48:19 +08:00
distclean: clean
2003-04-14 05:55:08 +08:00
rm -f config.h config.mak config.texi
2003-04-14 03:48:19 +08:00
2001-12-18 05:57:01 +08:00
# profiling version
tcc_p: tcc.c Makefile
2003-04-14 03:48:19 +08:00
$(CC) $(CFLAGS_P) -o $@ $< $(LIBS_P)
2001-10-28 07:48:39 +08:00
2002-05-14 06:58:22 +08:00
# libtcc generation and example
2005-06-18 06:03:50 +08:00
libinstall: libtcc.a
2004-10-08 05:11:43 +08:00
mkdir -p "$(libdir)"
2005-06-18 06:03:50 +08:00
$(INSTALL) -m644 libtcc.a "$(libdir)"
2004-10-08 05:11:43 +08:00
mkdir -p "$(includedir)"
$(INSTALL) -m644 libtcc.h "$(includedir)"
2002-05-14 06:58:22 +08:00
2004-10-08 05:11:43 +08:00
libtcc.o: tcc.c i386-gen.c Makefile
2003-04-14 03:48:19 +08:00
$(CC) $(CFLAGS) -DLIBTCC -c -o $@ $<
2002-05-14 06:58:22 +08:00
2005-06-18 06:03:50 +08:00
libtcc.a: libtcc.o
2003-04-14 03:48:19 +08:00
$(AR) rcs $@ $^
2002-05-14 06:58:22 +08:00
2005-06-18 06:03:50 +08:00
libtcc_test$(EXESUF): libtcc_test.c libtcc.a
$(CC) $(CFLAGS) -o $@ $< libtcc.a $(LIBS)
2002-05-14 06:58:22 +08:00
2002-12-08 22:34:02 +08:00
libtest: libtcc_test
./libtcc_test
2002-01-06 03:57:08 +08:00
# targets for development
2001-10-28 07:48:39 +08:00
2001-11-19 00:33:35 +08:00
%.bin: %.c tcc
2002-07-25 06:13:02 +08:00
$(TCC) -g -o $@ $<
2001-11-12 02:01:29 +08:00
$(DISAS) $@
2001-10-28 23:20:24 +08:00
2001-12-18 05:57:01 +08:00
instr: instr.o
objdump -d instr.o
2003-01-07 04:19:20 +08:00
# tiny assembler testing
asmtest.ref: asmtest.S
2003-04-14 03:48:19 +08:00
$(CC) -c -o asmtest.ref.o asmtest.S
2003-01-07 04:19:20 +08:00
objdump -D asmtest.ref.o > $@
# XXX: we compute tcc.c to go faster during development !
asmtest.out: asmtest.S tcc
# ./tcc tcc.c -c asmtest.S
#asmtest.out: asmtest.S tcc
./tcc -c asmtest.S
objdump -D asmtest.o > $@
asmtest: asmtest.out asmtest.ref
@if diff -u --ignore-matching-lines="file format" asmtest.ref asmtest.out ; then echo "ASM Auto Test OK"; fi
2001-10-28 23:20:24 +08:00
instr.o: instr.S
2003-04-14 03:48:19 +08:00
$(CC) -O2 -Wall -g -c -o $@ $<
2001-10-28 07:48:39 +08:00
2002-11-24 23:58:28 +08:00
cache: tcc_g
cachegrind ./tcc_g -o /tmp/linpack -lm bench/linpack.c
vg_annotate tcc.c > /tmp/linpack.cache.log
# documentation and man page
2002-07-25 06:13:02 +08:00
tcc-doc.html: tcc-doc.texi
texi2html -monolithic -number $<
tcc.1: tcc-doc.texi
./texi2pod.pl $< tcc.pod
pod2man --section=1 --center=" " --release=" " tcc.pod > $@
2005-04-15 08:11:02 +08:00
FILE=tcc-$(shell cat VERSION)
2001-11-12 02:01:29 +08:00
2005-04-15 08:11:02 +08:00
# tar release (use 'make -k tar' on a checkouted tree)
2001-11-12 02:01:29 +08:00
tar:
rm -rf /tmp/$(FILE)
2005-04-15 08:11:02 +08:00
cp -r . /tmp/$(FILE)
( cd /tmp ; tar zcvf ~/$(FILE).tar.gz $(FILE) --exclude CVS )
2001-11-12 02:01:29 +08:00
rm -rf /tmp/$(FILE)