gmqcc/Makefile

160 lines
3.8 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
2013-01-06 10:29:29 +00:00
CFLAGS += -Wall -Wextra -I. -fno-strict-aliasing -fsigned-char -O2
2012-12-28 19:39:30 +00:00
CFLAGS += -DGMQCC_GITINFO="`git describe`"
#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 += \
2012-06-07 15:18:04 +00:00
-Weverything \
-Wno-padded \
-Wno-format-nonliteral \
-Wno-disabled-macro-expansion \
-Wno-conversion \
-Wno-missing-prototypes \
-Wno-float-equal \
-Wno-cast-align
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 file.o utf8.o correct.o
OBJ_T = test.o util.o conout.o file.o
OBJ_C = main.o lexer.o parser.o file.o
OBJ_X = exec-standalone.o util.o conout.o file.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
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
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
endif
endif
2012-11-17 10:00:55 +00:00
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)
2012-12-20 00:22:22 +00:00
$(TESTSUITE): $(OBJ_T)
$(CC) -o $@ $^ $(CFLAGS)
2012-12-20 00:22:22 +00:00
all: $(GMQCC) $(QCVM) $(TESTSUITE)
2012-11-21 20:31:41 +00:00
check: all
2012-12-20 00:22:22 +00:00
@ ./$(TESTSUITE)
2013-01-06 15:12:46 +00:00
# alias to check because test.o exists and people will get confused
# about the undefined references to X.
test: check
2012-04-09 10:42:06 +00:00
clean:
2012-12-20 00:22:22 +00:00
rm -f *.o $(GMQCC) $(QCVM) $(TESTSUITE) *.dat
2012-11-17 10:00:32 +00:00
2013-01-06 12:43:46 +00:00
splint:
@ ./splint.sh
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))
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
install -m755 doc/gmqcc.1 $(DESTDIR)$(MANDIR)/man1/
install -m755 doc/qcvm.1 $(DESTDIR)$(MANDIR)/man1/
# 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
file.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
file.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
file.o: gmqcc.h opts.def
util.o: gmqcc.h opts.def
conout.o: gmqcc.h opts.def
file.o: gmqcc.h opts.def