X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=eaa10a0f114ec07aca89531469ef47b55873d72d;hb=ae639c8ba52d4753d5d1d1be23b77f1e9c10c110;hp=1a562b8961171bf51f0aff110fbba0790ab757c4;hpb=858d9734a2b41a5c08b709daae30fc4664b45480;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index 1a562b8..eaa10a0 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,22 @@ CC ?= clang -CFLAGS += -Wall -OBJ = main.o \ - lex.o \ +CFLAGS += -Wall -I. -pedantic-errors -std=c90 + +#turn on tons of warnings if clang is present +ifeq ($(CC), clang) + CFLAGS += \ + -Weverything \ + -Wno-missing-prototypes \ + -Wno-unused-parameter \ + -Wno-sign-compare \ + -Wno-implicit-fallthrough \ + -Wno-sign-conversion \ + -Wno-conversion \ + -Wno-disabled-macro-expansion \ + -Wno-padded \ + -Wno-format-nonliteral + +endif +OBJ = lex.o \ error.o \ parse.o \ typedef.o \ @@ -9,13 +24,35 @@ OBJ = main.o \ code.o \ asm.o \ ast.o \ - ir.o + ir.o +OBJ_A = test/ast-test.o +OBJ_I = test/ir-test.o +OBJ_C = main.o +OBJ_X = exec.o util.o +#default is compiler only +default: gmqcc %.o: %.c $(CC) -c $< -o $@ $(CFLAGS) -gmqcc: $(OBJ) +# test targets +test_ast: $(OBJ_A) $(OBJ) $(CC) -o $@ $^ $(CFLAGS) - +test_ir: $(OBJ_I) $(OBJ) + $(CC) -o $@ $^ $(CFLAGS) +qcvm: $(OBJ_X) + $(CC) -o $@ $^ $(CFLAGS) +exec.o: qcvm_execprogram.h +test: test_ast test_ir + +# compiler target +gmqcc: $(OBJ_C) $(OBJ) + $(CC) -o $@ $^ $(CFLAGS) + +#all target is test and all +all: test gmqcc + clean: - rm -f *.o gmqcc + rm -f *.o gmqcc test_ast test_ir test/*.o + +