X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=Makefile;h=84334157040d4bf900c8018964ac04bba6d0a62b;hp=b2d65805d0a3ca7c0b67877b8fca386d90fc3f9d;hb=f1a36ca6476e1a67d96d48ea7d9dcdc9f8c6f1d1;hpb=2e84cc0b418500a57d95315c0376c13a10d60142 diff --git a/Makefile b/Makefile index b2d6580..8433415 100644 --- a/Makefile +++ b/Makefile @@ -1,36 +1,37 @@ +DESTDIR := +PREFIX := /usr/local +BINDIR := $(PREFIX)/bin + CC ?= clang -CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector +CFLAGS += -Wall -Wextra -I. -pedantic-errors #turn on tons of warnings if clang is present ifeq ($(CC), clang) - CFLAGS += \ + 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 + -Wno-format-nonliteral \ + -Wno-disabled-macro-expansion \ + -Wno-conversion \ + -Wno-missing-prototypes endif ifeq ($(track), no) CFLAGS += -DNOTRACK endif -OBJ = \ +OBJ = \ util.o \ code.o \ ast.o \ ir.o \ - con.o -OBJ_A = test/ast-test.o -OBJ_I = test/ir-test.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) @@ -38,23 +39,34 @@ default: gmqcc exec-standalone.o: exec.c $(CC) -c $< -o $@ $(CFLAGS) -DQCVM_EXECUTOR=1 -# test targets -test_ast: $(OBJ_A) $(OBJ) - $(CC) -o $@ $^ $(CFLAGS) -test_ir: $(OBJ_I) $(OBJ) - $(CC) -o $@ $^ $(CFLAGS) -qcvm: $(OBJ_X) +qcvm: $(OBJ_X) $(CC) -o $@ $^ $(CFLAGS) -lm -test: test_ast test_ir -# 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 qcvm 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