gmqcc/Makefile

168 lines
4.3 KiB
Makefile
Raw Normal View History

include include.mk
2012-12-20 00:22:22 +00:00
2012-12-20 08:49:14 +00:00
UNAME ?= $(shell uname)
CYGWIN = $(findstring CYGWIN, $(UNAME))
MINGW = $(findstring MINGW32, $(UNAME))
2012-11-17 10:00:32 +00:00
CFLAGS += -Wall -Wextra -Werror -Wstrict-aliasing
#turn on tons of warnings if clang is present
2012-12-20 00:22:22 +00:00
# but also turn off the STUPID ONES
ifeq ($(CC), clang)
CFLAGS += \
2013-03-15 22:56:45 +00:00
-Weverything \
-Wno-padded \
-Wno-format-nonliteral \
-Wno-disabled-macro-expansion \
-Wno-conversion \
-Wno-float-equal \
2013-06-06 02:51:13 +00:00
-Wno-unknown-warning-option \
2013-06-18 07:26:07 +00:00
-Wno-cast-align \
-pedantic-errors
else
ifneq ($(CC), g++)
CFLAGS += -Wmissing-prototypes -Wstrict-prototypes
endif
ifneq ($(CC), tcc)
2013-06-16 05:59:41 +00:00
CFLAGS += -pedantic-errors
else
CFLAGS += -Wno-pointer-sign -fno-common
endif
endif
ifneq ($(shell git describe --always 2>/dev/null),)
CFLAGS += -DGMQCC_GITINFO="\"$(shell git describe --always)\""
endif
ifeq ($(shell valgrind --version 2>/dev/null),)
CFLAGS += -DNVALGRIND
endif
# do this last otherwise there is whitespace in the command output and
# it makes my OCD act up
CFLAGS += $(OPTIONAL)
#we have duplicate object files when dealing with creating a simple list
#for dependinces. To combat this we use some clever recrusive-make to
#filter the list and remove duplicates which we use for make depend
RMDUP = $(if $1,$(firstword $1) $(call RMDUP,$(filter-out $(firstword $1),$1)))
2013-06-16 07:22:37 +00:00
DEPS := $(call RMDUP, $(OBJ_P) $(OBJ_T) $(OBJ_C) $(OBJ_X))
2012-12-20 00:22:22 +00:00
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
2013-06-16 07:21:40 +00:00
PAK = gmqpak.exe
CFLAGS += -DNVALGRIND
2012-12-20 00:22:22 +00:00
else
2012-12-20 08:51:29 +00:00
ifneq ("$(MINGW)", "")
2012-12-20 00:22:22 +00:00
#nullify the common variables that
#most *nix systems have (for windows)
PREFIX :=
BINDIR :=
DATADIR :=
MANDIR :=
QCVM = qcvm.exe
GMQCC = gmqcc.exe
TESTSUITE = testsuite.exe
PAK = gmqpak.exe
CFLAGS += -DNVALGRIND
2012-12-20 00:22:22 +00:00
else
QCVM = qcvm
GMQCC = gmqcc
TESTSUITE = testsuite
PAK = gmqpak
2012-12-20 00:22:22 +00:00
endif
endif
2012-11-17 10:00:55 +00:00
2012-12-20 00:22:22 +00:00
#standard rules
c.o:
$(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS)
2012-04-09 10:42:06 +00:00
exec-standalone.o: exec.c
$(CC) -c $< -o $@ $(CFLAGS) $(CPPFLAGS) -DQCVM_EXECUTOR=1
2012-12-20 00:22:22 +00:00
$(QCVM): $(OBJ_X)
2013-04-25 03:11:50 +00:00
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
2012-12-20 00:22:22 +00:00
$(GMQCC): $(OBJ_C) $(OBJ_D)
2013-04-25 03:11:50 +00:00
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
2012-12-20 00:22:22 +00:00
$(TESTSUITE): $(OBJ_T)
2013-04-25 03:11:50 +00:00
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)
$(PAK): $(OBJ_P)
$(CC) -o $@ $^ $(LDFLAGS)
all: $(GMQCC) $(QCVM) $(TESTSUITE) $(PAK)
2012-11-21 20:31:41 +00:00
check: all
2012-12-20 00:22:22 +00:00
@ ./$(TESTSUITE)
2013-02-08 19:07:12 +00:00
test: all
@ ./$(TESTSUITE)
2013-01-06 15:12:46 +00:00
2012-04-09 10:42:06 +00:00
clean:
rm -rf *.o $(GMQCC) $(QCVM) $(TESTSUITE) $(PAK) *.dat gource.mp4 *.exe gm-qcc.tgz ./cov-int
2012-11-17 10:00:32 +00:00
2013-01-06 12:43:46 +00:00
splint:
2013-01-07 12:39:33 +00:00
@ splint $(SPLINTFLAGS) *.c *.h
2013-01-06 12:43:46 +00:00
2013-03-15 22:51:40 +00:00
gource:
@ gource $(GOURCEFLAGS)
gource-record:
2013-03-15 22:51:40 +00:00
@ gource $(GOURCEFLAGS) -o - | ffmpeg $(FFMPEGFLAGS) gource.mp4
depend:
@ makedepend -Y -w 65536 2> /dev/null $(subst .o,.c,$(DEPS))
2012-11-17 10:00:32 +00:00
coverity:
@cov-build --dir cov-int $(MAKE)
@tar czf gm-qcc.tgz cov-int
@rm -rf cov-int
@echo gm-qcc.tgz generated, submit for analysis
2012-12-20 00:22:22 +00:00
#install rules
install: install-gmqcc install-qcvm install-gmqpak install-doc
2012-12-20 00:22:22 +00:00
install-gmqcc: $(GMQCC)
install -d -m755 $(DESTDIR)$(BINDIR)
install -m755 $(GMQCC) $(DESTDIR)$(BINDIR)/$(GMQCC)
2012-12-20 00:22:22 +00:00
install-qcvm: $(QCVM)
install -d -m755 $(DESTDIR)$(BINDIR)
install -m755 $(QCVM) $(DESTDIR)$(BINDIR)/$(QCVM)
install-gmqpak: $(PAK)
install -d -m755 $(DESTDIR)$(BINDIR)
install -m755 $(PAK) $(DESTDIR)$(BINDIR)/$(PAK)
install-doc:
install -d -m755 $(DESTDIR)$(MANDIR)/man1
2013-01-17 22:22:38 +00:00
install -m644 doc/gmqcc.1 $(DESTDIR)$(MANDIR)/man1/
install -m644 doc/qcvm.1 $(DESTDIR)$(MANDIR)/man1/
install -m644 doc/gmqpak.1 $(DESTDIR)$(MANDIR)/man1/
# DO NOT DELETE
2013-06-16 08:24:13 +00:00
util.o: gmqcc.h opts.def
fs.o: gmqcc.h opts.def
conout.o: gmqcc.h opts.def
opts.o: gmqcc.h opts.def
pak.o: gmqcc.h opts.def
stat.o: gmqcc.h opts.def
test.o: gmqcc.h opts.def
main.o: gmqcc.h opts.def lexer.h
lexer.o: gmqcc.h opts.def lexer.h
parser.o: parser.h gmqcc.h opts.def lexer.h ast.h ir.h
2013-06-16 08:24:13 +00:00
code.o: gmqcc.h opts.def
ast.o: gmqcc.h opts.def ast.h ir.h parser.h lexer.h
2013-06-16 08:24:13 +00:00
ir.o: gmqcc.h opts.def ir.h
ftepp.o: gmqcc.h opts.def lexer.h
utf8.o: gmqcc.h opts.def
correct.o: gmqcc.h opts.def
fold.o: ast.h ir.h gmqcc.h opts.def parser.h lexer.h