diff options
| author | bellard <bellard> | 2005-04-10 21:46:58 +0000 |
|---|---|---|
| committer | bellard <bellard> | 2005-04-10 21:46:58 +0000 |
| commit | 2c538d7a2b0fb9e72c0fbb9af5d351302584aca0 (patch) | |
| tree | 0f89e8ac6f2fa62a0beb3915b13a4767968b772f /Makefile | |
| parent | bdd09709d7b412c2cd7380172264d985fabafa6d (diff) | |
| download | tinycc-2c538d7a2b0fb9e72c0fbb9af5d351302584aca0.tar.gz tinycc-2c538d7a2b0fb9e72c0fbb9af5d351302584aca0.tar.bz2 | |
initial PE format support
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -20,7 +20,7 @@ endif DISAS=objdump -d INSTALL=install -PROGS=tcc$(EXESUF) c67-tcc$(EXESUF) arm-tcc$(EXESUF) +PROGS=tcc$(EXESUF) c67-tcc$(EXESUF) arm-tcc$(EXESUF) i386-win32-tcc$(EXESUF) # run local version of tcc with local libraries and includes TCC=./tcc -B. -I. @@ -125,6 +125,9 @@ c67-tcc$(EXESUF): tcc.c c67-gen.c tccelf.c tccasm.c tcctok.h libtcc.h tcccoff.c arm-tcc$(EXESUF): tcc.c arm-gen.c tccelf.c tccasm.c tcctok.h libtcc.h Makefile $(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 Makefile + $(CC) $(CFLAGS) -DTCC_TARGET_PE -o $@ $< $(LIBS) + # TinyCC runtime libraries libtcc1.o: libtcc1.c $(CC) -O2 -Wall -c -o $@ $< |
