]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - Makefile
More fixes
[xonotic/gmqcc.git] / Makefile
index 9101d2b12a3600ae8e410e3b8ea8d31decdcd8de..fe05bf5398682fc87daac297a2b5f5a6ee01b45d 100644 (file)
--- a/Makefile
+++ b/Makefile
-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 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)
 
-# test targets
-test_ast: $(OBJ_A) $(OBJ)
-       $(CC) -o $@ $^ $(CFLAGS)
-test_ir:  $(OBJ_I) $(OBJ)
+exec-standalone.o: exec.c
+       $(CC) -c $< -o $@ $(CFLAGS) -DQCVM_EXECUTOR=1
+
+$(QCVM): $(OBJ_X)
+       $(CC) -o $@ $^ $(CFLAGS) -lm
+
+$(GMQCC): $(OBJ_C) $(OBJ_D)
        $(CC) -o $@ $^ $(CFLAGS)
-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 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/