gmqcc/Makefile

257 lines
6.4 KiB
Makefile
Raw Normal View History

2012-11-17 10:00:32 +00:00
DESTDIR :=
2012-12-20 00:22:22 +00:00
PREFIX := /usr/local
BINDIR := $(PREFIX)/bin
DATADIR := $(PREFIX)/share
2012-12-20 00:22:22 +00:00
MANDIR := $(DATADIR)/man
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
2012-04-25 14:20:38 +00:00
CC ?= clang
CFLAGS += -Wall -Wextra -Werror -I. -fno-strict-aliasing -fsigned-char
2013-01-10 15:13:47 +00:00
ifneq ($(shell git describe --always 2>/dev/null),)
CFLAGS += -DGMQCC_GITINFO="\"$(shell git describe --always)\""
endif
#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 += \
-Weverything \
-Wno-padded \
-Wno-format-nonliteral \
-Wno-disabled-macro-expansion \
-Wno-conversion \
-Wno-missing-prototypes \
-Wno-float-equal \
-Wno-cast-align \
-Wno-missing-variable-declarations \
-Wno-unknown-warning-option
else
#Tiny C Compiler doesn't know what -pedantic-errors is
# and instead of ignoring .. just errors.
ifneq ($(CC), tcc)
CFLAGS +=-pedantic-errors
else
CFLAGS += -Wno-pointer-sign -fno-common
endif
endif
ifeq ($(track), no)
CFLAGS += -DNOTRACK
endif
OBJ_D = util.o code.o ast.o ir.o conout.o ftepp.o opts.o fs.o utf8.o correct.o
OBJ_P = util.o fs.o conout.o opts.o pak.o
OBJ_T = test.o util.o conout.o fs.o
OBJ_C = main.o lexer.o parser.o fs.o
OBJ_X = exec-standalone.o util.o conout.o fs.o
2012-04-09 10:42:06 +00:00
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
PAK = pak.exe
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 = pak.exe
2012-12-20 00:22:22 +00:00
else
2012-12-28 08:59:41 +00:00
#arm support for linux .. we need to allow unaligned accesses
#to memory otherwise we just segfault everywhere
2012-12-28 09:06:04 +00:00
ifneq (, $(findstring arm, $(shell uname -m)))
2012-12-28 08:59:41 +00:00
CFLAGS += -munaligned-access
endif
2012-12-20 00:22:22 +00:00
QCVM = qcvm
GMQCC = gmqcc
TESTSUITE = testsuite
PAK = pak
2012-12-20 00:22:22 +00:00
endif
endif
2012-11-17 10:00:55 +00:00
2013-03-15 22:51:40 +00:00
#gource flags
GOURCEFLAGS= \
--date-format "%d %B, %Y" \
2013-03-15 22:53:00 +00:00
--seconds-per-day 0.01 \
--auto-skip-seconds 1 \
--title "GMQCC" \
-1280x720
2013-03-15 22:51:40 +00:00
#ffmpeg flags for gource
FFMPEGFLAGS= \
2013-03-15 22:53:00 +00:00
-y \
-r 60 \
-f image2pipe \
-vcodec ppm \
-i - \
-vcodec libx264 \
-preset ultrafast \
-crf 1 \
-threads 0 \
-bf 0
2013-03-15 22:51:40 +00:00
2013-01-07 12:39:33 +00:00
#splint flags
SPLINTFLAGS = \
-redef \
-noeffect \
-nullderef \
-usedef \
-type \
-mustfreeonly \
-nullstate \
-varuse \
-mustfreefresh \
-compdestroy \
-compmempass \
-nullpass \
-onlytrans \
-predboolint \
-boolops \
-exportlocal \
-incondefs \
-macroredef \
-retvalint \
-nullret \
-predboolothers \
-globstate \
-dependenttrans \
-branchstate \
-compdef \
-temptrans \
-usereleased \
-warnposix \
-shiftimplementation \
+charindex \
-kepttrans \
-unqualifiedtrans \
+matchanyintegral \
-bufferoverflowhigh \
+voidabstract \
-nullassign \
-unrecog \
-casebreak \
-retvalbool \
-retvalother \
-mayaliasunique \
-realcompare \
-observertrans \
-shiftnegative \
-freshtrans \
-abstract \
-statictrans \
-castfcnptr
2012-12-20 00:22:22 +00:00
#standard rules
2012-12-18 15:58:21 +00:00
default: all
2012-04-09 10:42:06 +00:00
%.o: %.c
2012-04-10 01:32:24 +00:00
$(CC) -c $< -o $@ $(CFLAGS)
2012-04-09 10:42:06 +00:00
exec-standalone.o: exec.c
$(CC) -c $< -o $@ $(CFLAGS) -DQCVM_EXECUTOR=1
2012-12-20 00:22:22 +00:00
$(QCVM): $(OBJ_X)
2012-08-23 08:24:17 +00:00
$(CC) -o $@ $^ $(CFLAGS) -lm
2012-12-20 00:22:22 +00:00
$(GMQCC): $(OBJ_C) $(OBJ_D)
$(CC) -o $@ $^ $(CFLAGS) -lm
2012-12-20 00:22:22 +00:00
$(TESTSUITE): $(OBJ_T)
$(CC) -o $@ $^ $(CFLAGS) -lm
$(PAK): $(OBJ_P)
$(CC) -o $@ $^ $(CFLAGS)
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:
2013-03-15 22:51:40 +00:00
rm -f *.o $(GMQCC) $(QCVM) $(TESTSUITE) $(PAK) *.dat gource.mp4
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) -o - | ffmpeg $(FFMPEGFLAGS) gource.mp4
depend:
@makedepend -Y -w 65536 2> /dev/null \
$(subst .o,.c,$(OBJ_D))
@makedepend -a -Y -w 65536 2> /dev/null \
$(subst .o,.c,$(OBJ_T))
@makedepend -a -Y -w 65536 2> /dev/null \
$(subst .o,.c,$(OBJ_C))
@makedepend -a -Y -w 65536 2> /dev/null \
$(subst .o,.c,$(OBJ_X))
2013-02-08 16:45:05 +00:00
@makedepend -a -Y -w 65536 2> /dev/null \
$(subst .o,.c,$(OBJ_P))
2012-11-17 10:00:32 +00:00
2012-12-20 00:22:22 +00:00
#install rules
install: install-gmqcc install-qcvm install-doc
2012-12-20 00:22:22 +00:00
install-gmqcc: $(GMQCC)
install -d -m755 $(DESTDIR)$(BINDIR)
2012-12-20 00:22:22 +00:00
install -m755 $(GMQCC) $(DESTDIR)$(BINDIR)/gmqcc
install-qcvm: $(QCVM)
install -d -m755 $(DESTDIR)$(BINDIR)
2012-12-20 00:22:22 +00:00
install -m755 $(QCVM) $(DESTDIR)$(BINDIR)/qcvm
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/
uninstall:
rm $(DESTDIR)$(BINDIR)/gmqcc
rm $(DESTDIR)$(BINDIR)/qcvm
rm $(DESTDIR)$(MANDIR)/man1/doc/gmqcc.1
rm $(DESTDIR)$(MANDIR)/man1/doc/qcvm.1
# DO NOT DELETE
2013-01-06 10:56:25 +00:00
util.o: gmqcc.h opts.def
code.o: gmqcc.h opts.def
ast.o: gmqcc.h opts.def ast.h ir.h
ir.o: gmqcc.h opts.def ir.h
conout.o: gmqcc.h opts.def
ftepp.o: gmqcc.h opts.def lexer.h
opts.o: gmqcc.h opts.def
fs.o: gmqcc.h opts.def
utf8.o: gmqcc.h opts.def
correct.o: gmqcc.h opts.def
test.o: gmqcc.h opts.def
util.o: gmqcc.h opts.def
conout.o: gmqcc.h opts.def
fs.o: gmqcc.h opts.def
main.o: gmqcc.h opts.def lexer.h
lexer.o: gmqcc.h opts.def lexer.h
parser.o: gmqcc.h opts.def lexer.h ast.h ir.h intrin.h
fs.o: gmqcc.h opts.def
util.o: gmqcc.h opts.def
conout.o: gmqcc.h opts.def
fs.o: gmqcc.h opts.def
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