2021-01-08 14:23:16 +03:00
|
|
|
CFLAGS ?= -g -O3 -Wall -Wextra -pedantic -Wno-unused-parameter
|
2020-12-26 03:32:21 +03:00
|
|
|
|
2021-01-08 14:23:16 +03:00
|
|
|
TARGET = kuroko
|
2021-01-21 03:11:55 +03:00
|
|
|
OBJS = $(patsubst %.c, %.o, $(filter-out src/module_% src/rline.c src/kuroko.c,$(sort $(wildcard src/*.c))))
|
|
|
|
MODULES = $(patsubst src/module_%.c, modules/%.so, $(sort $(wildcard src/module_*.c)))
|
2021-01-21 12:45:16 +03:00
|
|
|
HEADERS = $(wildcard src/*.h)
|
2021-02-12 05:48:50 +03:00
|
|
|
TOOLS = $(patsubst tools/%.c, krk-%, $(sort $(wildcard tools/*.c)))
|
2021-02-09 12:51:09 +03:00
|
|
|
|
|
|
|
# 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...
|
2021-02-08 11:36:03 +03:00
|
|
|
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
|
|
|
|
2021-01-08 14:23:16 +03:00
|
|
|
ifndef KRK_ENABLE_STATIC
|
2021-02-09 12:51:09 +03:00
|
|
|
# The normal build configuration is as a shared library or DLL (on Windows)
|
2021-03-03 04:40:41 +03:00
|
|
|
all: ${TARGET} ${MODULES} ${TOOLS}
|
2021-02-08 11:36:03 +03:00
|
|
|
CFLAGS += -fPIC
|
|
|
|
ifeq (,$(findstring mingw,$(CC)))
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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.
|
2021-02-08 11:36:03 +03:00
|
|
|
LDFLAGS += -Wl,-rpath -Wl,'$$ORIGIN' -L.
|
2021-02-09 12:51:09 +03:00
|
|
|
# On POSIX-like platforms, link with libdl and assume -lkuroko gives us
|
|
|
|
# our own library.
|
2021-02-23 10:30:10 +03:00
|
|
|
LDLIBS += -ldl -lpthread
|
2021-03-03 04:36:44 +03:00
|
|
|
ifeq (Darwin,$(shell uname -s))
|
|
|
|
# macOS needs us to link modules back to the main library at build time
|
|
|
|
MODLIBS = libkuroko.so
|
|
|
|
endif
|
2021-02-08 11:36:03 +03:00
|
|
|
else
|
2021-02-09 12:51:09 +03:00
|
|
|
# For Windows, disable format string warnings because gcc will get mad
|
|
|
|
# about non-portable Windows format specifiers...
|
2021-03-02 17:24:52 +03:00
|
|
|
CFLAGS += -Wno-format -static-libgcc
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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
|
2021-03-02 17:24:52 +03:00
|
|
|
${OBJS}: CFLAGS += -DKRKINLIB
|
2021-03-03 17:37:44 +03:00
|
|
|
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
|
2021-02-08 11:36:03 +03:00
|
|
|
endif
|
|
|
|
KUROKO_LIBS = libkuroko.so
|
2021-01-19 06:38:52 +03:00
|
|
|
else
|
2021-02-09 12:51:09 +03:00
|
|
|
# Static builds are a little different...
|
2021-02-08 11:36:03 +03:00
|
|
|
CFLAGS +=-DSTATIC_ONLY
|
|
|
|
LDFLAGS += -static
|
|
|
|
all: ${TARGET}
|
2021-02-19 07:32:45 +03:00
|
|
|
KUROKO_LIBS = ${OBJS} -lpthread
|
2021-02-09 12:51:09 +03:00
|
|
|
endif
|
|
|
|
|
2021-01-08 14:23:16 +03:00
|
|
|
ifndef KRK_DISABLE_RLINE
|
2021-02-09 12:51:09 +03:00
|
|
|
# Normally, we link the rich line editor into the
|
|
|
|
# interpreter (and not the main library!)
|
2021-02-08 11:36:03 +03:00
|
|
|
KUROKO_LIBS += src/rline.o
|
2021-01-08 14:23:16 +03:00
|
|
|
else
|
2021-02-09 12:51:09 +03:00
|
|
|
# ... 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.
|
2021-02-08 11:36:03 +03:00
|
|
|
CFLAGS += -DNO_RLINE
|
2021-01-08 14:23:16 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef KRK_DISABLE_DEBUG
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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-02-08 11:36:03 +03:00
|
|
|
CFLAGS += -DDEBUG
|
2021-01-08 14:23:16 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef KRK_ENABLE_BUNDLE
|
2021-02-09 12:51:09 +03:00
|
|
|
# When bundling, disable shared object modules.
|
2021-02-08 11:36:03 +03:00
|
|
|
MODULES =
|
2021-02-09 12:51:09 +03:00
|
|
|
# Add the sources from the shared object modules as regular sources.
|
2021-02-08 11:36:03 +03:00
|
|
|
KUROKO_LIBS += $(patsubst %.c,%.o,$(sort $(wildcard src/module_*.c)))
|
2021-02-09 12:51:09 +03:00
|
|
|
# Enable the build flag so the interpreter binary knows to run startup functions
|
2021-02-08 11:36:03 +03:00
|
|
|
CFLAGS += -DBUNDLE_LIBS=1
|
2021-02-09 12:51:09 +03:00
|
|
|
# And link anything our core modules would have needed
|
2021-02-08 11:36:03 +03:00
|
|
|
LDLIBS += -lm
|
2021-01-08 14:23:16 +03:00
|
|
|
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."
|
2021-02-12 05:48:50 +03:00
|
|
|
@echo ""
|
|
|
|
@echo "Available tools: ${TOOLS}"
|
2021-01-08 14:23:16 +03:00
|
|
|
|
2021-01-21 03:11:55 +03:00
|
|
|
kuroko: src/kuroko.o ${KUROKO_LIBS}
|
2021-02-23 10:30:10 +03:00
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} -o $@ src/kuroko.o ${KUROKO_LIBS}
|
2020-12-31 09:48:39 +03:00
|
|
|
|
2021-02-12 05:48:50 +03:00
|
|
|
krk-%: tools/%.c ${KUROKO_LIBS}
|
2021-02-23 10:30:10 +03:00
|
|
|
${CC} -Itools ${CFLAGS} ${LDFLAGS} -o $@ $< ${KUROKO_LIBS}
|
2021-02-12 05:48:50 +03:00
|
|
|
|
2021-02-09 12:51:09 +03:00
|
|
|
libkuroko.so: ${OBJS}
|
2021-02-23 10:30:10 +03:00
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} -shared -o $@ ${OBJS} ${LDLIBS}
|
2021-02-09 12:51:09 +03:00
|
|
|
|
|
|
|
# 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}
|
2021-01-08 10:53:17 +03:00
|
|
|
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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}
|
2020-12-26 03:32:21 +03:00
|
|
|
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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
|
|
|
|
2020-12-26 03:32:21 +03:00
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
2021-02-13 02:55:03 +03:00
|
|
|
@rm -f ${OBJS} ${TARGET} ${MODULES} libkuroko.so src/*.o kuroko.exe ${TOOLS} $(patsubst %,%.exe,${TOOLS})
|
2021-02-20 08:10:36 +03:00
|
|
|
@rm -rf docs/html
|
2020-12-26 03:32:21 +03:00
|
|
|
|
2021-01-21 12:45:16 +03:00
|
|
|
tags: $(wildcard src/*.c) $(wildcard src/*.h)
|
|
|
|
@ctags --c-kinds=+lx src/*.c src/*.h
|
2021-01-04 15:49:23 +03:00
|
|
|
|
2021-03-03 04:40:41 +03:00
|
|
|
libtcmalloc_minimal.a:
|
|
|
|
curl -O https://klange.dev/libtcmalloc_minimal.a
|
|
|
|
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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.
|
2021-02-23 08:01:55 +03:00
|
|
|
.PHONY: test stress-test update-tests
|
2021-01-04 15:49:23 +03:00
|
|
|
test:
|
2021-02-23 08:01:55 +03:00
|
|
|
@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:
|
2021-02-09 12:51:09 +03:00
|
|
|
@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
|
|
|
|
2021-02-09 12:51:09 +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:
|
2021-02-09 12:51:09 +03:00
|
|
|
$(MAKE) TESTWRAPPER='valgrind' test
|
2021-01-31 05:00:01 +03:00
|
|
|
|
2021-02-24 05:22:18 +03:00
|
|
|
# Really should be up to you to set, not us...
|
|
|
|
multiarch ?= $(shell gcc -print-multiarch)
|
2021-02-08 11:36:03 +03:00
|
|
|
prefix ?= /usr/local
|
|
|
|
exec_prefix ?= $(prefix)
|
|
|
|
includedir ?= $(prefix)/include
|
|
|
|
bindir ?= $(exec_prefix)/bin
|
2021-02-24 05:22:18 +03:00
|
|
|
ifeq (/usr,$(prefix))
|
|
|
|
libdir ?= $(exec_prefix)/lib/$(multiarch)
|
|
|
|
else
|
|
|
|
libdir ?= $(exec_prefix)/lib
|
|
|
|
endif
|
2021-02-08 11:36:03 +03:00
|
|
|
INSTALL = install
|
|
|
|
INSTALL_PROGRAM=$(INSTALL)
|
|
|
|
INSTALL_DATA=$(INSTALL) -m 644
|
|
|
|
|
|
|
|
.PHONY: install
|
|
|
|
install: kuroko libkuroko.so ${HEADERS} $(KRKMODS) $(MODULES)
|
2021-02-24 06:54:54 +03:00
|
|
|
@echo "Creating directories..."
|
2021-02-08 11:36:03 +03:00
|
|
|
$(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
|
2021-02-24 06:54:54 +03:00
|
|
|
@echo "Installing programs..."
|
2021-02-08 11:36:03 +03:00
|
|
|
$(INSTALL_PROGRAM) kuroko $(DESTDIR)$(bindir)/kuroko
|
2021-02-24 06:54:54 +03:00
|
|
|
$(INSTALL_PROGRAM) $(TOOLS) $(DESTDIR)$(bindir)/
|
|
|
|
@echo "Installing libraries..."
|
2021-02-08 11:36:03 +03:00
|
|
|
$(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..."
|
2021-02-08 11:36:03 +03:00
|
|
|
$(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_PROGRAM) $(MODULES) $(DESTDIR)$(bindir)/../lib/kuroko/
|
2021-02-24 06:54:54 +03:00
|
|
|
@echo "Installing headers..."
|
|
|
|
$(INSTALL_DATA) ${HEADERS} $(DESTDIR)$(includedir)/kuroko/
|
2021-02-24 05:22:18 +03:00
|
|
|
@echo "You may need to run 'ldconfig'."
|
2021-02-08 11:36:03 +03:00
|
|
|
|
|
|
|
install-strip: all
|
|
|
|
$(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install
|
|
|
|
|
2021-02-23 04:50:37 +03:00
|
|
|
LIBCMIN = $(shell readelf -a libkuroko.so kuroko krk-* modules/*.so | grep GLIBC_ | grep Version | sed s"/.*GLIBC_//" | sed s"/ .*//" | sort --version-sort | tail -1)
|
|
|
|
|
2021-02-09 12:51:09 +03:00
|
|
|
# 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
|
2021-01-31 05:00:01 +03:00
|
|
|
.PHONY: deb
|
|
|
|
deb: kuroko libkuroko.so
|
2021-02-08 11:36:03 +03:00
|
|
|
$(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 "ISC" \
|
|
|
|
--category "devel" \
|
2021-02-23 04:50:37 +03:00
|
|
|
-d "libc6 (>= $(LIBCMIN))" \
|
2021-02-08 11:36:03 +03:00
|
|
|
--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
|