X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=84334157040d4bf900c8018964ac04bba6d0a62b;hb=f587e9cfb3e8329f20f364dd0435d8b23a65a9a4;hp=2a9c17f588e2eb87a8a97b0b8c3b72fea6aee679;hpb=0b8da9eeb4954dd334d5bac4526f42f837c60798;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index 2a9c17f..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 -fno-common +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