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