X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=Makefile;h=f838e21235170d18dd4ad75ecd9e821416b8d60e;hb=69bda5cf31457ea843bc4c6e3c13ed751a673b7f;hp=4675ad3da1148838000d57a391af8c33cdd82684;hpb=923fd7d858fd232ce9aff67943b688385a836f07;p=cparser diff --git a/Makefile b/Makefile index 4675ad3..f838e21 100644 --- a/Makefile +++ b/Makefile @@ -7,16 +7,15 @@ BUILDDIR ?= build FIRM_CFLAGS ?= `pkg-config --cflags libfirm` FIRM_LIBS ?= `pkg-config --libs libfirm` -CPPFLAGS = -DHAVE_CONFIG_H -DFIRM_BACKEND -CPPFLAGS += -I. +CPPFLAGS = -I. CPPFLAGS += $(FIRM_CFLAGS) -CFLAGS += -Wall -W -Wstrict-prototypes -Wmissing-prototypes -Werror -std=c99 -pedantic +CFLAGS += -Wall -W -Wstrict-prototypes -Wmissing-prototypes -std=c99 -pedantic CFLAGS += -O0 -g3 #CFLAGS += -O3 -march=pentium4 -fomit-frame-pointer -DNDEBUG #CFLAGS += -pg -O3 -fno-inline -ICC_CFLAGS = -O0 -g3 -std=c99 -Wall -Werror -LFLAGS += -pg +ICC_CFLAGS = -O0 -g3 -std=c99 -Wall +#LFLAGS += -pg ICC ?= true GCCO1 ?= true @@ -25,51 +24,64 @@ LFLAGS += $(FIRM_LIBS) SOURCES := \ adt/hashset.c \ adt/strset.c \ - adt/obstack.c \ - adt/obstack_printf.c \ adt/xmalloc.c \ + attribute.c \ + parser.c \ ast.c \ ast2firm.c \ + builtins.c \ diagnostic.c \ + driver/firm_cmdline.c \ + driver/firm_codegen.c \ + driver/firm_opt.c \ + driver/firm_timing.c \ + entity.c \ + entitymap.c \ format_check.c \ lexer.c \ main.c \ - parser.c \ + mangle.c \ + preprocessor.c \ + printer.c \ symbol_table.c \ token.c \ type.c \ - types.c \ type_hash.c \ + types.c \ + walk_statements.c \ warning.c \ - write_fluffy.c \ - driver/firm_cmdline.c \ - driver/firm_timing.c \ - driver/firm_codegen.c \ - driver/firm_opt.c \ - driver/gen_firm_asm.c \ + wrappergen/write_caml.c \ + wrappergen/write_fluffy.c \ + wrappergen/write_jna.c OBJECTS = $(SOURCES:%.c=build/%.o) SPLINTS = $(addsuffix .splint, $(SOURCES)) CPARSERS = $(addsuffix .cparser, $(SOURCES)) CPARSEROS = $(SOURCES:%.c=build/cpb/%.o) +CPARSEROS_E = $(SOURCES:%.c=build/cpbe/%.o) CPARSEROS2 = $(SOURCES:%.c=build/cpb2/%.o) Q = @ -.PHONY : all clean dirs - all: $(GOAL) +.PHONY: all clean bootstrap bootstrap2 + ifeq ($(findstring $(MAKECMDGOALS), clean depend),) -include .depend endif +config.h: + cp config.h.in $@ + %.h: @true -.depend: $(SOURCES) - @echo "#define cparser_REVISION \"`svnversion -n .`\"" > .revision.h +REVISION ?= $(shell svnversion -n .) + +.depend: config.h $(SOURCES) + @echo "#define cparser_REVISION \"$(REVISION)\"" > .revision.h $(Q)if diff -Nq .revision.h revision.h > /dev/null; then \ rm .revision.h; \ else \ @@ -79,19 +91,21 @@ endif @echo "===> DEPEND" @rm -f $@ && touch $@ && makedepend -p "$@ build/" -Y -f $@ -- $(CPPFLAGS) -- $(SOURCES) 2> /dev/null && rm $@.bak -DIRS = build/adt build/driver build/cpb build/cpb/adt build/cpb/driver build/cpb2 build/cpb2/adt build/cpb2/driver +DIRS = build build/adt build/driver build/wrappergen build/cpb build/cpb/adt build/cpb/driver build/cpb/wrappergen build/cpb2 build/cpb2/adt build/cpb2/driver build/cpb2/wrappergen build/cpbe build/cpbe/adt build/cpbe/driver build/cpbe2/wrappergen +UNUSED := $(shell mkdir -p $(DIRS)) -$(GOAL): $(DIRS) $(OBJECTS) +$(GOAL): $(OBJECTS) $(LIBFIRM_FILE) @echo "===> LD $@" $(Q)$(CC) $(OBJECTS) $(LFLAGS) -o $(GOAL) - splint: $(SPLINTS) selfcheck: $(CPARSERS) bootstrap: build/cpb build/cpb/adt build/cpb/driver $(CPARSEROS) cparser.bootstrap +bootstrape: build/cpb build/cpb/adt build/cpb/driver $(CPARSEROS_E) cparser.bootstrape + bootstrap2: build/cpb2 build/cpb2/adt build/cpb2/driver $(CPARSEROS2) cparser.bootstrap2 %.c.splint: %.c @@ -102,13 +116,19 @@ bootstrap2: build/cpb2 build/cpb2/adt build/cpb2/driver $(CPARSEROS2) cparser.bo @echo '===> CPARSER $<' $(Q)./cparser $(CPPFLAGS) -fsyntax-only $< -$(DIRS): - @echo "===> MKDIR $@" - $(Q)mkdir -p $@ +gen_builtins.h: builtins/builtins.c create_builtins_h.sh + @echo '===> CREATE_BUILTINS $<' + $(Q)./create_builtins_h.sh "$<" > $@ + +main.c: gen_builtins.h build/cpb/%.o: %.c build/cparser @echo '===> CPARSER $<' - $(Q)./build/cparser $(CPPFLAGS) -Wall -g -c $< -o $@ + $(Q)./build/cparser $(CPPFLAGS) -std=c99 -Wall -g3 -c $< -o $@ + +build/cpbe/%.o: %.c + @echo '===> ECCP $<' + $(Q)eccp $(CPPFLAGS) -std=c99 -Wall -c $< -o $@ build/cpb2/%.o: %.c cparser.bootstrap @echo '===> CPARSER.BOOTSTRAP $<' @@ -116,18 +136,22 @@ build/cpb2/%.o: %.c cparser.bootstrap cparser.bootstrap: $(CPARSEROS) @echo "===> LD $@" - $(Q)$(CC) $(CPARSEROS) $(LFLAGS) -o $@ + $(Q)./build/cparser $(CPARSEROS) $(LFLAGS) -o $@ + +cparser.bootstrape: $(CPARSEROS_E) + @echo "===> LD $@" + $(Q)gcc $(CPARSEROS_E) $(LFLAGS) -o $@ cparser.bootstrap2: $(CPARSEROS2) @echo "===> LD $@" - $(Q)$(CC) $(CPARSEROS2) $(LFLAGS) -o $@ + $(Q)./cparser.bootstrap $(CPARSEROS2) $(LFLAGS) -o $@ build/%.o: %.c @echo '===> CC $<' - $(Q)$(ICC) $(CPPFLAGS) $(ICC_CFLAGS) -c $< -o $@ - $(Q)$(GCCO1) $(CPPFLAGS) $(CFLAGS) -O1 -c $< -o $@ +#$(Q)$(ICC) $(CPPFLAGS) $(ICC_CFLAGS) -c $< -o $@ +#$(Q)$(GCCO1) $(CPPFLAGS) $(CFLAGS) -O1 -c $< -o $@ $(Q)$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@ clean: @echo '===> CLEAN' - $(Q)rm -rf build/* $(GOAL) .depend + $(Q)rm -rf gen_builtins.h build/* $(GOAL) .depend