1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
prefix?=/usr/local
mle_cflags:=-std=c99 -Wall -Wextra -pedantic -Wno-pointer-arith -Wno-unused-result -Wno-unused-parameter -g -O0 -D_GNU_SOURCE -DPCRE2_CODE_UNIT_WIDTH=8 -I. $(CFLAGS)
mle_ldflags:=$(LDFLAGS)
mle_dynamic_libs:=-lpcre2-8 -llua5.4
mle_static_libs:=vendor/pcre2/.libs/libpcre2-8.a vendor/lua/liblua5.4.a
mle_ldlibs:=-lm $(LDLIBS)
mle_objects:=$(patsubst %.c,%.o,$(wildcard *.c))
mle_objects_no_main:=$(filter-out main.o,$(mle_objects))
mle_func_tests:=$(wildcard tests/func/test_*.sh))
mle_unit_tests:=$(patsubst %.c,%,$(wildcard tests/unit/test_*.c))
mle_unit_test_objects:=$(patsubst %.c,%.o,$(wildcard tests/unit/test_*.c))
mle_unit_test_all:=tests/unit/test
mle_vendor_deps:=
mle_static_var:=
ifdef mle_static
mle_static_var:=-static
endif
ifdef mle_vendor
mle_ldlibs:=$(mle_static_libs) $(mle_ldlibs)
mle_cflags:=-Ivendor/pcre2/src -Ivendor -Ivendor/uthash/src $(mle_cflags)
mle_vendor_deps:=$(mle_static_libs)
else
mle_ldlibs:=$(mle_dynamic_libs) $(mle_ldlibs)
endif
all: mle
mle: $(mle_vendor_deps) $(mle_objects) termbox2.h
$(CC) $(mle_static_var) $(mle_cflags) $(mle_objects) $(mle_ldflags) $(mle_ldlibs) -o mle
$(mle_objects): %.o: %.c
$(CC) -c $(mle_cflags) $< -o $@
$(mle_vendor_deps):
$(MAKE) -C vendor
$(mle_unit_test_objects): %.o: %.c
$(CC) -DTEST_NAME=$(basename $(notdir $<)) -c $(mle_cflags) -rdynamic $< -o $@
$(mle_unit_test_all): $(mle_objects_no_main) $(mle_unit_test_objects) $(mle_unit_test_all).c
$(CC) $(mle_cflags) -rdynamic $(mle_unit_test_all).c $(mle_objects_no_main) $(mle_unit_test_objects) $(mle_ldflags) $(mle_ldlibs) -ldl -o $@
$(mle_unit_tests): %: $(mle_unit_test_all)
{ echo "#!/bin/sh"; echo "$(abspath $(mle_unit_test_all)) $(notdir $@)"; } >$@ && chmod +x $@
test: mle $(mle_unit_tests)
./mle -v && export MLE=$$(pwd)/mle && $(MAKE) -C tests
sloc:
find . -name '*.c' -or -name '*.h' | \
grep -Pv '(termbox|test|ut|lua)' | \
xargs -rn1 cat | \
wc -l
install: mle
install -v -d $(DESTDIR)$(prefix)/bin
install -v -m 755 mle $(DESTDIR)$(prefix)/bin/mle
uscript:
php uscript.inc.php >uscript.inc
clean_quick:
rm -f mle $(mle_objects) $(mle_unit_test_objects) $(mle_unit_tests) $(mle_unit_test_all)
clean:
rm -f mle $(mle_objects) $(mle_vendor_deps) $(mle_unit_test_objects) $(mle_unit_tests) $(mle_unit_test_all)
$(MAKE) -C vendor clean
.PHONY: all test sloc install uscript clean
|