X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=fdb173ea432ef03ae205989905b3654f442e030f;hb=724bca0eeca05a68900e3054e118904b6618dc7c;hp=9e367e05ddcdee65230281ed0321ea7b2b1be223;hpb=2d96b2a3ecb3610493c261c297da8a0ed429cd15;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index 9e367e0..fdb173e 100644 --- a/Makefile +++ b/Makefile @@ -1,124 +1,44 @@ -DESTDIR := -PREFIX := /usr/local -BINDIR := $(PREFIX)/bin -DATADIR := $(PREFIX)/share -MANDIR := $(DATADIR)/man +CC ?= clang +CFLAGS = -MD -std=gnu99 -Wall -Wextra -pedantic-errors -g3 +LDFLAGS = -lm -UNAME ?= $(shell uname) -CYGWIN = $(findstring CYGWIN, $(UNAME)) -MINGW = $(findstring MINGW32, $(UNAME)) +CSRCS = ast.c code.c conout.c fold.c ftepp.c hash.c intrin.c ir.c lexer.c main.c opts.c parser.c stat.c utf8.c util.c +TSRCS = conout.c hash.c opts.c stat.c test.c util.c +VSRCS = exec.c hash.c stat.c util.c -CC ?= clang -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 -ifeq ($(CC), clang) - CFLAGS += \ - -Weverything \ - -Wno-padded \ - -Wno-format-nonliteral \ - -Wno-disabled-macro-expansion \ - -Wno-conversion \ - -Wno-missing-prototypes \ - -Wno-float-equal \ - -Wno-cast-align -else - #Tiny C Compiler doesn't know what -pedantic-errors is - # and instead of ignoring .. just errors. - ifneq ($(CC), tcc) - CFLAGS +=-pedantic-errors - else - CFLAGS += -Wno-pointer-sign -fno-common - endif -endif +COBJS = $(CSRCS:.c=.o) +TOBJS = $(TSRCS:.c=.o) +VOBJS = $(VSRCS:.c=.o) -ifeq ($(track), no) - CFLAGS += -DNOTRACK -endif +CDEPS = $(CSRCS:.c=.d) +TDEPS = $(TSRCS:.c=.d) +VDEPS = $(VSRCS:.c=.d) -OBJ_D = util.o code.o ast.o ir.o conout.o ftepp.o opts.o file.o utf8.o correct.o -OBJ_T = test.o util.o conout.o file.o -OBJ_C = main.o lexer.o parser.o file.o -OBJ_X = exec-standalone.o util.o conout.o file.o +CBIN = gmqcc +TBIN = testsuite +VBIN = qcvm -ifneq ("$(CYGWIN)", "") - #nullify the common variables that - #most *nix systems have (for windows) - PREFIX := - BINDIR := - DATADIR := - MANDIR := - QCVM = qcvm.exe - GMQCC = gmqcc.exe - TESTSUITE = testsuite.exe -else -ifneq ("$(MINGW)", "") - #nullify the common variables that - #most *nix systems have (for windows) - PREFIX := - BINDIR := - DATADIR := - MANDIR := - QCVM = qcvm.exe - GMQCC = gmqcc.exe - TESTSUITE = testsuite.exe -else - #arm support for linux .. we need to allow unaligned accesses - #to memory otherwise we just segfault everywhere - ifneq (, $(findstring arm, $(shell uname -m))) - CFLAGS += -munaligned-access - endif +all: $(CBIN) $(TBIN) $(VBIN) - QCVM = qcvm - GMQCC = gmqcc - TESTSUITE = testsuite -endif -endif +$(CBIN): $(COBJS) + $(CC) $(COBJS) $(LDFLAGS) -o $@ -#standard rules -default: all -%.o: %.c - $(CC) -c $< -o $@ $(CFLAGS) +$(TBIN): $(TOBJS) + $(CC) $(TOBJS) $(LDFLAGS) -o $@ -exec-standalone.o: exec.c - $(CC) -c $< -o $@ $(CFLAGS) -DQCVM_EXECUTOR=1 +$(VBIN): $(VOBJS) + $(CC) $(VOBJS) $(LDFLAGS) -o $@ -$(QCVM): $(OBJ_X) - $(CC) -o $@ $^ $(CFLAGS) -lm +.c.o: + $(CC) -c $(CFLAGS) $< -o $@ -$(GMQCC): $(OBJ_C) $(OBJ_D) - $(CC) -o $@ $^ $(CFLAGS) - -$(TESTSUITE): $(OBJ_T) - $(CC) -o $@ $^ $(CFLAGS) - -all: $(GMQCC) $(QCVM) $(TESTSUITE) - -check: all - @ ./$(TESTSUITE) +test: $(CBIN) $(TBIN) $(VBIN) + @./$(TBIN) clean: - rm -f *.o $(GMQCC) $(QCVM) $(TESTSUITE) *.dat - -# deps -$(OBJ_D) $(OBJ_C) $(OBJ_X): gmqcc.h opts.def -main.o: lexer.h -parser.o: ast.h lexer.h -ftepp.o: lexer.h -lexer.o: lexer.h -ast.o: ast.h ir.h -ir.o: ir.h + rm -f *.d + rm -f $(COBJS) $(CDEPS) $(CBIN) + rm -f $(TOBJS) $(TDEPS) $(TBIN) + rm -f $(VOBJS) $(VDEPS) $(VBIN) -#install rules -install: install-gmqcc install-qcvm install-doc -install-gmqcc: $(GMQCC) - install -d -m755 $(DESTDIR)$(BINDIR) - install -m755 $(GMQCC) $(DESTDIR)$(BINDIR)/gmqcc -install-qcvm: $(QCVM) - install -d -m755 $(DESTDIR)$(BINDIR) - install -m755 $(QCVM) $(DESTDIR)$(BINDIR)/qcvm -install-doc: - install -d -m755 $(DESTDIR)$(MANDIR)/man1 - install -m755 doc/gmqcc.1 $(DESTDIR)$(MANDIR)/man1/ - install -m755 doc/qcvm.1 $(DESTDIR)$(MANDIR)/man1/ +-include *.d