X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=Makefile;h=fe05bf5398682fc87daac297a2b5f5a6ee01b45d;hp=d326576da571977ee15a368ff4ab61b2f637f2b5;hb=3e8435783c0112a294588c7ec72fe03559888ed1;hpb=a3919a6074d3182416a03d3cb0fcd9461d3cb37e diff --git a/Makefile b/Makefile index d326576..fe05bf5 100644 --- a/Makefile +++ b/Makefile @@ -1,58 +1,104 @@ -CC ?= clang -CFLAGS += -Wall -I. -pedantic-errors -std=c90 +DESTDIR := +PREFIX := /usr/local +BINDIR := $(PREFIX)/bin +DATADIR := $(PREFIX)/share +MANDIR := $(DATADIR)/man + +UNAME = $(shell uname) +CYGWIN = $(findstring CYGWIN, $(UNAME)) +MINGW = $(findstring MINGW32, $(UNAME)) +CC ?= clang +CFLAGS += -Wall -Wextra -I. -pedantic-errors -std=gnu99 #turn on tons of warnings if clang is present +# but also turn off the STUPID ONES 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 = \ - util.o \ - code.o \ - ast.o \ - ir.o -OBJ_A = test/ast-test.o -OBJ_I = test/ir-test.o + +OBJ_D = util.o code.o ast.o ir.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 +ifneq ("$(CYGWIN)", "") + #nullify the common variables that + #most *nix systems have (for windows) + PREFIX := + BINDIR := + DATADIR := + MANDIR := + QCVM = qcvm.exe + GMQCC = gmqcc.exe + TESTSUITE = testsuite.exe +else +ifneq ("$(MINGW32)", "") + #nullify the common variables that + #most *nix systems have (for windows) + PREFIX := + BINDIR := + DATADIR := + MANDIR := + QCVM = qcvm.exe + GMQCC = gmqcc.exe + TESTSUITE = testsuite.exe +else + QCVM = qcvm + GMQCC = gmqcc + TESTSUITE = testsuite +endif +endif + +#standard rules +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 + +$(GMQCC): $(OBJ_C) $(OBJ_D) $(CC) -o $@ $^ $(CFLAGS) -exec.o: execloop.h -exec-standalone.o: execloop.h -test: test_ast test_ir -# compiler target -gmqcc: $(OBJ_C) $(OBJ) +$(TESTSUITE): $(OBJ_T) $(CC) -o $@ $^ $(CFLAGS) -#all target is test and all -all: test gmqcc +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 + +# deps +$(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 rules +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/