kuroko/Makefile

236 lines
9.1 KiB
Makefile
Raw Normal View History

CFLAGS ?= -g -O3 -Wall -Wextra -pedantic -Wno-unused-parameter
CFLAGS += -Isrc
TARGET = kuroko
OBJS = $(patsubst %.c, %.o, $(filter-out src/module_% src/kuroko.c,$(sort $(wildcard src/*.c))))
2021-01-21 03:11:55 +03:00
MODULES = $(patsubst src/module_%.c, modules/%.so, $(sort $(wildcard src/module_*.c)))
HEADERS = $(wildcard src/kuroko/*.h)
TOOLS = $(patsubst tools/%.c, krk-%, $(sort $(wildcard tools/*.c)))
GENMODS = modules/codecs/sbencs.krk modules/codecs/dbdata.krk
# These are used by the install target. We call the local kuroko to get the
# version string to use for the final library, so, uh, probably don't
# try to do that in a cross-compile environment...
VERSION = $(shell ./kuroko --version | sed 's/.* //')
SONAME = libkuroko-$(VERSION).so
KRKMODS = $(wildcard modules/*.krk modules/*/*.krk modules/*/*/*.krk)
2020-12-31 09:48:39 +03:00
ifndef KRK_ENABLE_STATIC
# The normal build configuration is as a shared library or DLL (on Windows)
all: ${TARGET} ${MODULES} ${TOOLS} ${GENMODS}
CFLAGS += -fPIC
ifeq (,$(findstring mingw,$(CC)))
# We set rpath here mostly so you can run the locally-built interpreter
# with the correct library; it shouldn't be needed in a real installation.
LDFLAGS += -Wl,-rpath -Wl,'$$ORIGIN' -L.
# On POSIX-like platforms, link with libdl and assume -lkuroko gives us
# our own library.
LDLIBS += -ldl -lpthread
ifeq (Darwin,$(shell uname -s))
# macOS needs us to link modules back to the main library at build time
MODLIBS = libkuroko.so
endif
else
# For Windows, disable format string warnings because gcc will get mad
# about non-portable Windows format specifiers...
CFLAGS += -Wno-format -static-libgcc
# And we need to link this by name with extension because I don't want
# to actually rename it to kuroko.dll or whatever.
2021-02-26 16:18:40 +03:00
MODLIBS = libkuroko.so
${OBJS}: CFLAGS += -DKRKINLIB
libkuroko.so: LDLIBS += -l:libwinpthread.a -Wl,--require-defined=tc_malloc libtcmalloc_minimal.a -l:libpsapi.a -l:libstdc++.a
2021-03-03 04:40:41 +03:00
libkuroko.so: libtcmalloc_minimal.a
modules/socket.so: LDLIBS += -lws2_32
endif
KUROKO_LIBS = libkuroko.so
2021-01-19 06:38:52 +03:00
else
# Static builds are a little different...
CFLAGS +=-DSTATIC_ONLY
LDFLAGS += -static
all: ${TARGET} ${GENMODS}
KUROKO_LIBS = ${OBJS} -lpthread
endif
ifdef KRK_NO_DOCUMENTATION
CFLAGS += -DKRK_NO_DOCUMENTATION -Wno-unused-value
endif
ifndef KRK_DISABLE_RLINE
# Normally, we link the rich line editor into the
# interpreter (and not the main library!)
KUROKO_LIBS += src/vendor/rline.o
else
# ... but it can be disabled if you want a more "pure" build,
# or if you don't have solid support for the escape sequences
# it requires on your target platform.
CFLAGS += -DNO_RLINE
endif
ifndef KRK_DISABLE_DEBUG
# Disabling debug functions doesn't really do much; it may result in a smaller
# library when stripped as there's a lot of debug text, but no performance
# difference has ever been noted from disabling, eg., instruction tracing.
2021-04-05 02:30:59 +03:00
CFLAGS += -DKRK_ENABLE_DEBUG
endif
ifdef KRK_ENABLE_BUNDLE
# When bundling, disable shared object modules.
MODULES =
# Add the sources from the shared object modules as regular sources.
KUROKO_LIBS += $(patsubst %.c,%.o,$(sort $(wildcard src/module_*.c)))
# Enable the build flag so the interpreter binary knows to run startup functions
CFLAGS += -DBUNDLE_LIBS=1
# And link anything our core modules would have needed
LDLIBS += -lm
2021-03-24 06:27:26 +03:00
ifeq (,$(findstring mingw,$(CC)))
LDLIBS += -lws2_32
endif
endif
.PHONY: help
help:
@echo "Configuration options available:"
@echo " KRK_DISABLE_RLINE=1 Do not build with the rich line editing library enabled."
@echo " KRK_DISABLE_DEBUG=1 Disable debugging features (might be faster)."
@echo " KRK_ENABLE_STATIC=1 Build a single static binary."
@echo " KRK_ENABLE_BUNDLE=1 Link C modules directly into the interpreter."
@echo " KRK_NO_DOCUMENTATION=1 Do not include docstrings for builtins."
@echo ""
@echo "Available tools: ${TOOLS}"
2021-01-21 03:11:55 +03:00
kuroko: src/kuroko.o ${KUROKO_LIBS}
${CC} ${CFLAGS} ${LDFLAGS} -o $@ src/kuroko.o ${KUROKO_LIBS}
2020-12-31 09:48:39 +03:00
krk-%: tools/%.c ${KUROKO_LIBS}
${CC} -Itools ${CFLAGS} ${LDFLAGS} -o $@ $< ${KUROKO_LIBS}
libkuroko.so: ${OBJS}
${CC} ${CFLAGS} ${LDFLAGS} -shared -o $@ ${OBJS} ${LDLIBS}
# Make sure we rebuild things when headers change as we have a lot of
# headers that define build flags...
2021-01-21 12:45:16 +03:00
%.o: ${HEADERS}
# Modules are built as shared objects. We link them with LDLIBS
# as well, but this probably isn't necessary?
2021-01-21 03:11:55 +03:00
modules/%.so: src/module_%.c libkuroko.so
2021-02-26 16:18:40 +03:00
${CC} ${CFLAGS} ${LDFLAGS} -shared -o $@ $< ${LDLIBS} ${MODLIBS}
# A module can have dependencies that didn't exist in the main lib,
# like how the math library pulls in libm but we kept references
# to that out of the main interpreter.
2021-01-21 03:11:55 +03:00
modules/math.so: src/module_math.c libkuroko.so
2021-02-26 16:18:40 +03:00
${CC} ${CFLAGS} ${LDFLAGS} -shared -o $@ $< -lm ${LDLIBS} ${MODLIBS}
2021-01-16 04:18:19 +03:00
modules/codecs/sbencs.krk: tools/codectools/gen_sbencs.krk tools/codectools/encodings.json tools/codectools/indexes.json | kuroko
./kuroko tools/codectools/gen_sbencs.krk
modules/codecs/dbdata.krk: tools/codectools/gen_dbdata.krk tools/codectools/encodings.json tools/codectools/indexes.json | kuroko
./kuroko tools/codectools/gen_dbdata.krk
.PHONY: clean
clean:
2021-03-22 04:17:09 +03:00
@rm -f ${OBJS} ${TARGET} ${MODULES} libkuroko.so *.so.debug src/*.o src/vendor/*.o kuroko.exe ${TOOLS} $(patsubst %,%.exe,${TOOLS})
2021-02-20 08:10:36 +03:00
@rm -rf docs/html
2021-01-21 12:45:16 +03:00
tags: $(wildcard src/*.c) $(wildcard src/*.h)
2021-03-24 14:49:20 +03:00
@ctags --c-kinds=+lx src/*.c src/*.h src/kuroko/*.h src/vendor/*.h
2021-03-03 04:40:41 +03:00
libtcmalloc_minimal.a:
curl -O https://klange.dev/libtcmalloc_minimal.a
# Test targets run against all .krk files in the test/ directory, writing
# stdout to `.expect` files, and then comparing with `git`.
# To update the tests if changes are expected, run `make test` and commit the result.
.PHONY: test stress-test update-tests
test:
@for i in test/*.krk; do echo $$i; KUROKO_TEST_ENV=1 $(TESTWRAPPER) ./kuroko $$i > $$i.actual; diff $$i.expect $$i.actual || exit 1; rm $$i.actual; done
update-tests:
@for i in test/*.krk; do echo $$i; KUROKO_TEST_ENV=1 $(TESTWRAPPER) ./kuroko $$i > $$i.expect; done
2021-01-12 01:34:42 +03:00
# You can also set TESTWRAPPER to other things to run the tests in other tools.
2021-01-12 01:34:42 +03:00
stress-test:
$(MAKE) TESTWRAPPER='valgrind' test
# Really should be up to you to set, not us...
multiarch ?= $(shell gcc -print-multiarch)
prefix ?= /usr/local
exec_prefix ?= $(prefix)
includedir ?= $(prefix)/include
bindir ?= $(exec_prefix)/bin
ifeq (/usr,$(prefix))
libdir ?= $(exec_prefix)/lib/$(multiarch)
else
libdir ?= $(exec_prefix)/lib
endif
INSTALL = install
INSTALL_PROGRAM=$(INSTALL)
INSTALL_DATA=$(INSTALL) -m 644
.PHONY: install
install: all libkuroko.so ${HEADERS} $(KRKMODS) $(MODULES)
2021-02-24 06:54:54 +03:00
@echo "Creating directories..."
$(INSTALL) -d $(DESTDIR)$(includedir)/kuroko
$(INSTALL) -d $(DESTDIR)$(bindir)
$(INSTALL) -d $(DESTDIR)$(libdir)
$(INSTALL) -d $(DESTDIR)$(bindir)/../lib/kuroko
$(INSTALL) -d $(DESTDIR)$(bindir)/../lib/kuroko/syntax
$(INSTALL) -d $(DESTDIR)$(bindir)/../lib/kuroko/foo/bar
$(INSTALL) -d $(DESTDIR)$(bindir)/../lib/kuroko/codecs
2021-02-24 06:54:54 +03:00
@echo "Installing programs..."
$(INSTALL_PROGRAM) kuroko $(DESTDIR)$(bindir)/kuroko
2021-02-24 06:54:54 +03:00
$(INSTALL_PROGRAM) $(TOOLS) $(DESTDIR)$(bindir)/
@echo "Installing libraries..."
$(INSTALL_PROGRAM) libkuroko.so $(DESTDIR)$(libdir)/$(SONAME)
ln -s -f $(SONAME) $(DESTDIR)$(libdir)/libkuroko.so
2021-02-24 06:54:54 +03:00
@echo "Installing source modules..."
$(INSTALL_DATA) modules/*.krk $(DESTDIR)$(bindir)/../lib/kuroko/
$(INSTALL_DATA) modules/foo/*.krk $(DESTDIR)$(bindir)/../lib/kuroko/foo/
$(INSTALL_DATA) modules/foo/bar/*.krk $(DESTDIR)$(bindir)/../lib/kuroko/foo/bar/
$(INSTALL_DATA) modules/syntax/*.krk $(DESTDIR)$(bindir)/../lib/kuroko/syntax/
$(INSTALL_DATA) modules/codecs/*.krk $(DESTDIR)$(bindir)/../lib/kuroko/codecs/
$(INSTALL_PROGRAM) $(MODULES) $(DESTDIR)$(bindir)/../lib/kuroko/
2021-02-24 06:54:54 +03:00
@echo "Installing headers..."
$(INSTALL_DATA) ${HEADERS} $(DESTDIR)$(includedir)/kuroko/
@echo "You may need to run 'ldconfig'."
install-strip: all
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
LIBCMIN = $(shell readelf -a libkuroko.so kuroko krk-* modules/*.so | grep GLIBC_ | grep Version | sed s"/.*GLIBC_//" | sed s"/ .*//" | sort --version-sort | tail -1)
# The deb target piggybacks off the install target, creating a temporary DESTDIR
# to install into with 'prefix' as /usr, packages that with fpm, and removes DESTDIR
.PHONY: deb
deb: kuroko libkuroko.so
$(eval DESTDIR := $(shell mktemp -d))
$(MAKE) prefix=/usr DESTDIR='$(DESTDIR)' install-strip
fpm -s dir -C $(DESTDIR) -t deb \
-n "kuroko" \
-m "K. Lange <klange@toaruos.org>" \
--description "Bytecode-compiled interpreted dynamic programming language." \
--url "https://kuroko-lang.github.io/" \
--license "MIT" \
--category "devel" \
-d "libc6 (>= $(LIBCMIN))" \
--version $(VERSION) \
--iteration 0 \
--directories $(libdir)/kuroko
rm -r $(DESTDIR)
2021-02-20 08:10:36 +03:00
.PHONY: docs
docs: kuroko
./kuroko tools/gendoc.krk
doxygen docs/Doxyfile
2021-03-26 16:45:51 +03:00
2021-03-29 03:26:24 +03:00
.PHONY: deploy-docs
deploy-docs: docs
cp -r docs/html/* ../kuroko-lang.github.io/docs/
2021-03-26 16:45:51 +03:00
.PHONY: cloc
cloc:
cloc --read-lang-def docs/cloc.txt --vcs git