X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=Makefile;h=3f286e27f6117db926fbdd051dad85abf3433644;hp=0b57b9c01a23c7c2f701a49747f99178f87cd935;hb=0d1a740bc71fee53892fb192215e9e318d0da5ac;hpb=033cf7c7d397c3fdc23a1448b0068000219efef6 diff --git a/Makefile b/Makefile index 0b57b9c..3f286e2 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ include include.mk UNAME ?= $(shell uname) -CYGWIN = $(findstring CYGWIN, $(UNAME)) -MINGW = $(findstring MINGW32, $(UNAME)) +CYGWIN = $(findstring CYGWIN, $(UNAME)) +MINGW = $(findstring MINGW, $(UNAME)) -CFLAGS += -Wall -Wextra -Werror -Wstrict-aliasing +CFLAGS += -Wall -Wextra -Werror -Wstrict-aliasing -Wno-attributes #turn on tons of warnings if clang is present # but also turn off the STUPID ONES ifeq ($(CC), clang) @@ -40,7 +40,8 @@ endif # do this last otherwise there is whitespace in the command output and # it makes my OCD act up -CFLAGS += $(OPTIONAL) +CFLAGS += $(OPTIONAL_CFLAGS) +LDFLAGS += $(OPTIONAL_LDFLAGS) #we have duplicate object files when dealing with creating a simple list #for dependinces. To combat this we use some clever recrusive-make to @@ -85,9 +86,6 @@ endif c.o: $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) -exec-standalone.o: exec.c - $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) -DQCVM_EXECUTOR=1 - $(QCVM): $(OBJ_X) $(CC) -o $@ $^ $(LDFLAGS) $(LIBS) @@ -107,18 +105,14 @@ check: all test: all @ ./$(TESTSUITE) +strip: $(GMQCC) $(QCVM) $(TESTSUITE) + strip $(GMQCC) + strip $(QCVM) + strip $(TESTSUITE) + clean: rm -rf *.o $(GMQCC) $(QCVM) $(TESTSUITE) $(PAK) *.dat gource.mp4 *.exe gm-qcc.tgz ./cov-int -splint: - @ splint $(SPLINTFLAGS) *.c *.h - -gource: - @ gource $(GOURCEFLAGS) - -gource-record: - @ gource $(GOURCEFLAGS) -o - | ffmpeg $(FFMPEGFLAGS) gource.mp4 - depend: @ makedepend -Y -w 65536 2> /dev/null $(subst .o,.c,$(DEPS)) @@ -148,22 +142,24 @@ install-doc: # DO NOT DELETE -pak.o: gmqcc.h opts.def platform.h -ansi.o: platform.h -util.o: gmqcc.h opts.def +ansi.o: platform.h gmqcc.h opts.def +util.o: gmqcc.h opts.def platform.h +hash.o: gmqcc.h opts.def stat.o: gmqcc.h opts.def fs.o: gmqcc.h opts.def platform.h -conout.o: gmqcc.h opts.def platform.h -opts.o: gmqcc.h opts.def platform.h +opts.o: gmqcc.h opts.def +conout.o: gmqcc.h opts.def +pak.o: gmqcc.h opts.def test.o: gmqcc.h opts.def platform.h main.o: gmqcc.h opts.def lexer.h -lexer.o: gmqcc.h opts.def lexer.h platform.h -parser.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h platform.h +lexer.o: gmqcc.h opts.def lexer.h +parser.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h code.o: gmqcc.h opts.def -ast.o: gmqcc.h opts.def ast.h ir.h parser.h lexer.h platform.h -ir.o: gmqcc.h opts.def ir.h platform.h -ftepp.o: gmqcc.h opts.def lexer.h platform.h +ast.o: gmqcc.h opts.def ast.h ir.h parser.h lexer.h +ir.o: gmqcc.h opts.def ir.h +ftepp.o: gmqcc.h opts.def lexer.h utf8.o: gmqcc.h opts.def correct.o: gmqcc.h opts.def -fold.o: ast.h ir.h gmqcc.h opts.def parser.h lexer.h platform.h -intrin.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h platform.h +fold.o: ast.h ir.h gmqcc.h opts.def parser.h lexer.h +intrin.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h +exec.o: gmqcc.h opts.def