X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=eaa10a0f114ec07aca89531469ef47b55873d72d;hb=ae639c8ba52d4753d5d1d1be23b77f1e9c10c110;hp=6ce342c00aa64534b0fc94599618fd47815a6d4d;hpb=e4bc0a2d6a6c35c67f8920c555c3564e6002de84;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index 6ce342c..eaa10a0 100644 --- a/Makefile +++ b/Makefile @@ -1,18 +1,58 @@ -CC = gcc -CFLAGS += -Wall -OBJ = main.o \ - lex.o \ - error.o \ - parse.o \ - typedef.o \ - util.o \ - code.o +CC ?= clang +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 \ + 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 +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 + +