]> git.xonotic.org Git - xonotic/gmqcc.git/blob - Makefile
142f16d7dbafe0c942b122e1c3296c4a9b45b02b
[xonotic/gmqcc.git] / Makefile
1 include include.mk
2
3 UNAME  ?= $(shell uname)
4 CYGWIN  = $(findstring CYGWIN, $(UNAME))
5 MINGW   = $(findstring MINGW,  $(UNAME))
6
7 # turn on tons of warnings if clang is present
8 # but also turn off the STUPID ONES
9 ifeq ($(CC), clang)
10         CFLAGS +=                              \
11             -Weverything                       \
12             -Wno-padded                        \
13             -Wno-format-nonliteral             \
14             -Wno-disabled-macro-expansion      \
15             -Wno-conversion                    \
16             -Wno-float-equal                   \
17             -Wno-unknown-warning-option        \
18             -Wno-cast-align                    \
19             -Wno-assign-enum                   \
20             -Wno-empty-body                    \
21             -Wno-date-time                     \
22             -pedantic-errors
23 else
24         ifneq ($(CC), g++)
25                 CFLAGS += -Wmissing-prototypes -Wstrict-prototypes
26         endif
27
28         ifneq ($(CC), tcc)
29                 CFLAGS += -pedantic-errors
30         else
31                 CFLAGS += -Wno-pointer-sign -fno-common
32         endif
33 endif
34
35 ifneq ($(shell git describe --always 2>/dev/null),)
36         CFLAGS += -DGMQCC_GITINFO="\"$(shell git describe --always)\""
37 endif
38
39 ifeq ($(shell valgrind --version 2>/dev/null),)
40         CFLAGS += -DNVALGRIND
41 endif
42
43 # do this last otherwise there is whitespace in the command output and
44 # it makes my OCD act up
45 CFLAGS += $(OPTIONAL_CFLAGS)
46 LDFLAGS += $(OPTIONAL_LDFLAGS)
47
48 #we have duplicate object files when dealing with creating a simple list
49 #for dependinces. To combat this we use some clever recrusive-make to
50 #filter the list and remove duplicates which we use for make depend
51 RMDUP = $(if $1,$(firstword $1) $(call RMDUP,$(filter-out $(firstword $1),$1)))
52 DEPS := $(call RMDUP, $(OBJ_P) $(OBJ_T) $(OBJ_C) $(OBJ_X))
53
54 ifneq ("$(CYGWIN)", "")
55         #nullify the common variables that
56         #most *nix systems have (for windows)
57         PREFIX   :=
58         BINDIR   :=
59         DATADIR  :=
60         MANDIR   :=
61         QCVM      = qcvm.exe
62         GMQCC     = gmqcc.exe
63         TESTSUITE = testsuite.exe
64         CFLAGS   += -DNVALGRIND
65 else
66 ifneq ("$(MINGW)", "")
67         #nullify the common variables that
68         #most *nix systems have (for windows)
69         PREFIX   :=
70         BINDIR   :=
71         DATADIR  :=
72         MANDIR   :=
73         QCVM      = qcvm.exe
74         GMQCC     = gmqcc.exe
75         TESTSUITE = testsuite.exe
76         CFLAGS   += -DNVALGRIND
77 else
78         QCVM      = qcvm
79         GMQCC     = gmqcc
80         TESTSUITE = testsuite
81 endif
82 endif
83
84 #standard rules
85 c.o:
86         $(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS)
87
88 $(QCVM): $(OBJ_X)
89         $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
90
91 $(GMQCC): $(OBJ_C) $(OBJ_D)
92         $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
93
94 $(TESTSUITE): $(OBJ_T)
95         $(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
96
97 all: $(GMQCC) $(QCVM) $(TESTSUITE) $(PAK)
98
99 check: all
100         @ ./$(TESTSUITE)
101 test: all
102         @ ./$(TESTSUITE)
103
104 strip: $(GMQCC) $(QCVM) $(TESTSUITE)
105         strip $(GMQCC)
106         strip $(QCVM)
107         strip $(TESTSUITE)
108
109 clean:
110         rm -rf *.o $(GMQCC) $(QCVM) $(TESTSUITE) $(PAK) *.dat gource.mp4 *.exe gm-qcc.tgz ./cov-int
111
112 depend:
113         @ makedepend -Y -w 65536 2> /dev/null $(subst .o,.c,$(DEPS))
114
115
116 coverity:
117         @cov-build --dir cov-int $(MAKE)
118         @tar czf gm-qcc.tgz cov-int
119         @rm -rf cov-int
120         @echo gm-qcc.tgz generated, submit for analysis
121
122 #install rules
123 install: install-gmqcc install-qcvm install-gmqpak install-doc
124 install-gmqcc: $(GMQCC)
125         install -d -m755               $(DESTDIR)$(BINDIR)
126         install    -m755  $(GMQCC)     $(DESTDIR)$(BINDIR)/$(GMQCC)
127 install-qcvm: $(QCVM)
128         install -d -m755               $(DESTDIR)$(BINDIR)
129         install    -m755  $(QCVM)      $(DESTDIR)$(BINDIR)/$(QCVM)
130 install-doc:
131         install -d -m755               $(DESTDIR)$(MANDIR)/man1
132         install    -m644  doc/gmqcc.1  $(DESTDIR)$(MANDIR)/man1/
133         install    -m644  doc/qcvm.1   $(DESTDIR)$(MANDIR)/man1/
134         install    -m644  doc/gmqpak.1 $(DESTDIR)$(MANDIR)/man1/
135
136 # DO NOT DELETE
137
138 ansi.o: platform.h gmqcc.h opts.def
139 util.o: gmqcc.h opts.def platform.h
140 hash.o: gmqcc.h opts.def
141 stat.o: gmqcc.h opts.def
142 fs.o: gmqcc.h opts.def platform.h
143 opts.o: gmqcc.h opts.def
144 conout.o: gmqcc.h opts.def
145 test.o: gmqcc.h opts.def platform.h
146 main.o: gmqcc.h opts.def lexer.h
147 lexer.o: gmqcc.h opts.def lexer.h
148 parser.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h
149 code.o: gmqcc.h opts.def
150 ast.o: gmqcc.h opts.def ast.h ir.h parser.h lexer.h
151 ir.o: gmqcc.h opts.def ir.h
152 ftepp.o: gmqcc.h opts.def lexer.h
153 utf8.o: gmqcc.h opts.def
154 correct.o: gmqcc.h opts.def
155 fold.o: ast.h ir.h gmqcc.h opts.def parser.h lexer.h
156 intrin.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h
157 exec.o: gmqcc.h opts.def