X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=52e7270fd66a705fe4e8c9b87f89791c4406a55d;hb=debfe136a59968b250e7d57ac5d6f397c404bfb6;hp=f804fd1cd028410cb9a5b92d6c2e2185ba0cf9f3;hpb=4afe61060d62668e054e2f8e9d2b734b6da2b426;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index f804fd1..52e7270 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ CYGWIN = $(findstring CYGWIN, $(UNAME)) MINGW = $(findstring MINGW32, $(UNAME)) CC ?= clang -CFLAGS += -Wall -Wextra -I. -fno-strict-aliasing -fsigned-char -O2 +CFLAGS += -Wall -Wextra -I. -fno-strict-aliasing -fsigned-char CFLAGS += -DGMQCC_GITINFO="`git describe`" #turn on tons of warnings if clang is present # but also turn off the STUPID ONES @@ -76,6 +76,57 @@ else endif endif +#splint flags +SPLINTFLAGS = \ + -redef \ + -noeffect \ + -nullderef \ + -usedef \ + -type \ + -mustfreeonly \ + -nullstate \ + -varuse \ + -mustfreefresh \ + -compdestroy \ + -compmempass \ + -nullpass \ + -onlytrans \ + -predboolint \ + -boolops \ + -exportlocal \ + -incondefs \ + -macroredef \ + -retvalint \ + -nullret \ + -predboolothers \ + -globstate \ + -dependenttrans \ + -branchstate \ + -compdef \ + -temptrans \ + -usereleased \ + -warnposix \ + -shiftimplementation \ + +charindex \ + -kepttrans \ + -unqualifiedtrans \ + +matchanyintegral \ + -bufferoverflowhigh \ + +voidabstract \ + -nullassign \ + -unrecog \ + -casebreak \ + -retvalbool \ + -retvalother \ + -mayaliasunique \ + -realcompare \ + -observertrans \ + -shiftnegative \ + -freshtrans \ + -abstract \ + -statictrans \ + -castfcnptr + #standard rules default: all %.o: %.c @@ -98,17 +149,24 @@ all: $(GMQCC) $(QCVM) $(TESTSUITE) check: all @ ./$(TESTSUITE) +# alias to check because test.o exists and people will get confused +# about the undefined references to X. +test: check + clean: rm -f *.o $(GMQCC) $(QCVM) $(TESTSUITE) *.dat +splint: + @ splint $(SPLINTFLAGS) *.c *.h + depend: - makedepend -Y -w 65536 \ + @makedepend -Y -w 65536 2> /dev/null \ $(subst .o,.c,$(OBJ_D)) - makedepend -a -Y -w 65536 \ + @makedepend -a -Y -w 65536 2> /dev/null \ $(subst .o,.c,$(OBJ_T)) - makedepend -a -Y -w 65536 \ + @makedepend -a -Y -w 65536 2> /dev/null \ $(subst .o,.c,$(OBJ_C)) - makedepend -a -Y -w 65536 \ + @makedepend -a -Y -w 65536 2> /dev/null \ $(subst .o,.c,$(OBJ_X)) #install rules @@ -125,6 +183,7 @@ install-doc: install -m755 doc/qcvm.1 $(DESTDIR)$(MANDIR)/man1/ # DO NOT DELETE + util.o: gmqcc.h opts.def code.o: gmqcc.h opts.def ast.o: gmqcc.h opts.def ast.h ir.h