X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=Makefile;h=a8f7a790728eb0249c2e1842126c43ec0727063f;hp=7c332105fe06e7ca708a981af3f930834cf11ac7;hb=b5507b3127f18e10ffd15160f1bcbd84a8a1173b;hpb=510d795c06f6c9aa6d89c703c6881d0d24b9b4a6 diff --git a/Makefile b/Makefile index 7c33210..a8f7a79 100644 --- a/Makefile +++ b/Makefile @@ -1,36 +1,71 @@ +DESTDIR := +PREFIX := /usr/local +BINDIR := $(PREFIX)/bin + CC ?= clang -CFLAGS += -Wall -I. -pedantic-errors -std=c90 -Wno-attributes -OBJ = lex.o \ - error.o \ - parse.o \ - typedef.o \ +CFLAGS += -Wall -I. -Wall -pedantic +#turn on tons of warnings if clang is present +ifeq ($(CC), clang) + CFLAGS += \ + -Weverything \ + -Wno-padded \ + -Wno-format-nonliteral \ + -Wno-disabled-macro-expansion \ + -Wno-conversion + +endif +ifeq ($(track), no) + CFLAGS += -DNOTRACK +endif + +OBJ = \ util.o \ code.o \ - asm.o \ ast.o \ - ir.o -OBJ_A = test/ast-test.o -OBJ_I = test/ir-test.o -OBJ_C = main.o + ir.o \ + con.o \ + ftepp.o + +OBJ_T = test.o util.o con.o +OBJ_C = main.o lexer.o parser.o +OBJ_X = exec-standalone.o util.o con.o + -#default is compiler only default: gmqcc %.o: %.c $(CC) -c $< -o $@ $(CFLAGS) -# test targets -test_ast: $(OBJ_A) $(OBJ) - $(CC) -o $@ $^ $(CFLAGS) -test_ir: $(OBJ_I) $(OBJ) - $(CC) -o $@ $^ $(CFLAGS) -test: test_ast test_ir +exec-standalone.o: exec.c + $(CC) -c $< -o $@ $(CFLAGS) -DQCVM_EXECUTOR=1 + +qcvm: $(OBJ_X) + $(CC) -o $@ $^ $(CFLAGS) -lm -# compiler target gmqcc: $(OBJ_C) $(OBJ) $(CC) -o $@ $^ $(CFLAGS) -#all target is test and all -all: test gmqcc +testsuite: $(OBJ_T) + $(CC) -o $@ $^ $(CFLAGS) + +all: gmqcc qcvm testsuite + +check: all + ./testsuite clean: - rm -f *.o gmqcc test_ast test_ir test/*.o + rm -f *.o gmqcc qcvm testsuite *.dat + + +$(OBJ) $(OBJ_C) $(OBJ_X): gmqcc.h +main.o: lexer.h +parser.o: ast.h lexer.h +ast.o: ast.h ir.h +ir.o: ir.h + +install: install-gmqcc install-qcvm +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