X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=Makefile;h=4a29e9c16195391f32b6fc075e03550dad9749b6;hb=bf267d02385594be6175f94ae7d73275597b7f73;hp=c800ecaf6200af9d98b8002999e290736522e713;hpb=f0750209b73c2e2caa0ebb0201f1bbe666093ac7;p=xonotic%2Fgmqcc.git diff --git a/Makefile b/Makefile index c800eca..4a29e9c 100644 --- a/Makefile +++ b/Makefile @@ -1,61 +1,79 @@ +DESTDIR := +PREFIX := /usr/local +BINDIR := $(PREFIX)/bin +DATADIR := $(PREFIX)/share +MANDIR := $(DATADIR)/man + CC ?= clang -CFLAGS += -Wall -I. -fomit-frame-pointer -fno-stack-protector -O3 +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 \ - error.o \ - con.o -OBJ_A = test/ast-test.o -OBJ_I = test/ir-test.o + con.o \ + ftepp.o \ + opts.o + +OBJ_T = test.o util.o con.o OBJ_C = main.o lexer.o parser.o -OBJ_X = exec-standalone.o util.o +OBJ_X = exec-standalone.o util.o con.o + -#default is compiler only -default: gmqcc +default: all %.o: %.c $(CC) -c $< -o $@ $(CFLAGS) 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 opts.def +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-doc +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 +install-doc: + install -d -m755 $(DESTDIR)$(MANDIR)/man1 + install -m755 doc/gmqcc.1 $(DESTDIR)$(MANDIR)/man1/ + install -m755 doc/qcvm.1 $(DESTDIR)$(MANDIR)/man1/