117 lines
3.0 KiB
Makefile
117 lines
3.0 KiB
Makefile
#
|
|
# user overwritable variables
|
|
#
|
|
|
|
# install prefix
|
|
PREFIX ?= /usr/local
|
|
|
|
# add functions to debug assembly to console
|
|
DEBUG_ASSEMBLY ?= 0
|
|
|
|
#
|
|
# internal flags/options
|
|
#
|
|
|
|
# version
|
|
|
|
VERSION_MAJOR=0
|
|
VERSION_MINOR=1
|
|
|
|
VERSION=${VERSION_MAJOR}.${VERSION_MINOR}
|
|
|
|
# add compiler-specific warnings
|
|
|
|
IS_CLANG := $(shell $(CC) -dM -E - < /dev/null | grep -c __clang__)
|
|
WARNINGS=@config/WARNINGS
|
|
ADD_DBG_FLAGS=
|
|
ifeq ($(IS_CLANG),1)
|
|
WARNINGS += @config/WARNINGS_CLANG
|
|
else
|
|
WARNINGS += @config/WARNINGS_GCC
|
|
ADD_DBG_FLAGS=-fanalyzer
|
|
endif
|
|
|
|
# debug and release flags
|
|
|
|
DEBUG_CFLAGS=-O0 -ggdb3 ${WARNINGS} -fno-omit-frame-pointer -fsanitize=address -fsanitize=undefined \
|
|
-fno-sanitize-recover=all -fstack-protector-strong -fstack-clash-protection -fno-common ${ADD_DBG_FLAGS} \
|
|
-DCHECK_TYCHE_BUGS=1
|
|
DEBUG_LDFLAGS=-fsanitize=address -fsanitize=undefined
|
|
|
|
# apple clang doesn't support -fsanitize=leak
|
|
UNAME_S := $(shell uname -s)
|
|
ifneq ($(UNAME_S),Darwin)
|
|
DEBUG_CFLAGS += -fsanitize=leak
|
|
DEBUG_LDFLAGS += -fsanitize=leak
|
|
endif
|
|
|
|
RELEASE_CFLAGS=-O3 -flto=auto -march=native -mtune=native -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=3 -fstack-protector-strong
|
|
RELEASE_LDFLAGS=-flto=auto
|
|
|
|
CFLAGS+=-std=c99 -D_GNU_SOURCE -fPIC -fvisibility=hidden -isystem lib/contrib -MMD -MP
|
|
LDFLAGS+=
|
|
|
|
ifeq ($(DEBUG_ASSEMBLY),1)
|
|
CFLAGS += -DDEBUG_ASSEMBLY
|
|
endif
|
|
|
|
#
|
|
# generic targets
|
|
#
|
|
|
|
all: tyche libtyche.a libtyche.so.${VERSION}
|
|
|
|
check: tyche-test
|
|
./tyche-test
|
|
|
|
clean:
|
|
rm -f tyche libtyche.a libtyche.so* tyche-test **/*.o **/*.d lib/compiler/compiler.lua.h
|
|
|
|
install: tyche libtyche.a libtyche.so.${VERSION} lib/tyche.h
|
|
install -m 644 libtyche.a libtyche.so.${VERSION} ${PREFIX}/lib
|
|
install tyche ${PREFIX}/bin
|
|
install -m 644 lib/tyche.h ${PREFIX}/include
|
|
ln -s ${PREFIX}/lib/libtyche.so.${VERSION} ${PREFIX}/lib/libtyche.so.${VERSION_MAJOR}
|
|
ln -s ${PREFIX}/lib/libtyche.so.${VERSION_MAJOR} ${PREFIX}/lib/libtyche.so
|
|
|
|
uninstall:
|
|
rm -f ${PREFIX}/lib/libtyche.* ${PREFIX}/bin/tyche ${PREFIX}/include/tyche.h
|
|
|
|
.PHONY: all check clean install uninstall
|
|
|
|
#
|
|
# TODO - temporary, using Lua for compilation for now
|
|
#
|
|
CFLAGS+=`pkg-config --cflags lua`
|
|
LDFLAGS+=`pkg-config --libs lua`
|
|
lib/compiler/compiler.lua.h: lib/compiler/compiler.lua
|
|
luac -o lib/compiler/compiler.out lib/compiler/compiler.lua
|
|
xxd -i lib/compiler/compiler.out > lib/compiler/compiler.lua.h
|
|
rm lib/compiler/compiler.out
|
|
lib/compiler.o: lib/compiler.c lib/compiler/compiler.lua.h
|
|
|
|
#
|
|
# executable files
|
|
#
|
|
|
|
LIB_SRC=lib/value.o lib/stack.o lib/array.o lib/table.o lib/heap.o lib/vm.o lib/expr.o lib/compiler.o lib/code.o lib/utils.o
|
|
|
|
tyche: CFLAGS += ${RELEASE_CFLAGS}
|
|
tyche: LDFLAGS += ${RELEASE_LDFLAGS}
|
|
tyche: src/tyche.o libtyche.a
|
|
$(CC) -o $@ $^ ${LDFLAGS}
|
|
strip $@
|
|
|
|
tyche-test: CFLAGS += ${DEBUG_CFLAGS} -DDEBUG_ASSEMBLY
|
|
tyche-test: LDFLAGS += ${DEBUG_LDFLAGS}
|
|
tyche-test: test/tests.o libtyche.a
|
|
$(CC) -o $@ $^ ${LDFLAGS} -I../lib
|
|
|
|
libtyche.a: ${LIB_SRC}
|
|
ar rcs $@ $^
|
|
|
|
libtyche.so.${VERSION}: LDFLAGS += ${RELEASE_LDFLAGS}
|
|
libtyche.so.${VERSION}: ${LIB_SRC}
|
|
$(CC) -shared -o $@ -Wl,-soname,libfoo.so.${VERSION_MAJOR} $^ ${LDFLAGS}
|
|
|
|
-include $(LIB_SRC:.o=.d) |