2024-05-01 10:25:19 -07:00
|
|
|
PREFIX=/usr
|
2024-03-09 20:44:52 -08:00
|
|
|
VERSION=0.0.1
|
2024-03-03 13:08:38 -08:00
|
|
|
CCONFIG=-std=c11 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -I. \
|
2024-03-03 12:04:36 -08:00
|
|
|
-fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers
|
|
|
|
LTO=-flto=auto -fno-fat-lto-objects -Wl,-flto
|
2024-06-09 11:41:22 -07:00
|
|
|
LDFLAGS=
|
2024-02-04 12:23:59 -08:00
|
|
|
# MAKEFLAGS := --jobs=$(shell nproc) --output-sync=target
|
2024-03-13 23:48:07 -07:00
|
|
|
CWARN=-Wall -Wextra -Wno-format -Wshadow
|
2024-02-04 12:23:59 -08:00
|
|
|
# -Wpedantic -Wsign-conversion -Wtype-limits -Wunused-result -Wnull-dereference \
|
|
|
|
# -Waggregate-return -Walloc-zero -Walloca -Warith-conversion -Wcast-align -Wcast-align=strict \
|
|
|
|
# -Wdangling-else -Wdate-time -Wdisabled-optimization -Wdouble-promotion -Wduplicated-branches \
|
|
|
|
# -Wduplicated-cond -Wexpansion-to-defined -Wfloat-conversion -Wfloat-equal -Wformat-nonliteral \
|
|
|
|
# -Wformat-security -Wformat-signedness -Wframe-address -Winline -Winvalid-pch -Wjump-misses-init \
|
|
|
|
# -Wlogical-op -Wlong-long -Wmissing-format-attribute -Wmissing-include-dirs -Wmissing-noreturn \
|
|
|
|
# -Wnull-dereference -Woverlength-strings -Wpacked -Wpacked-not-aligned -Wpointer-arith \
|
|
|
|
# -Wredundant-decls -Wshadow -Wshadow=compatible-local -Wshadow=global -Wshadow=local \
|
|
|
|
# -Wsign-conversion -Wstack-protector -Wsuggest-attribute=const -Wswitch-default -Wswitch-enum \
|
|
|
|
# -Wsync-nand -Wtrampolines -Wundef -Wunsuffixed-float-constants -Wunused -Wunused-but-set-variable \
|
|
|
|
# -Wunused-const-variable -Wunused-local-typedefs -Wunused-macros -Wvariadic-macros -Wvector-operation-performance \
|
|
|
|
# -Wvla -Wwrite-strings
|
|
|
|
OSFLAGS != case $$(uname -s) in *BSD|Darwin) echo '-D_BSD_SOURCE';; Linux) echo '-D_GNU_SOURCE';; *) echo '-D_DEFAULT_SOURCE';; esac
|
|
|
|
EXTRA=
|
|
|
|
G=-ggdb
|
|
|
|
O=-Og
|
|
|
|
CFLAGS=$(CCONFIG) $(EXTRA) $(CWARN) $(G) $(O) $(OSFLAGS)
|
2024-06-09 11:40:34 -07:00
|
|
|
LDLIBS=-lgc -lcord -lm -lunistring -ldl
|
2024-04-20 11:24:37 -07:00
|
|
|
BUILTIN_OBJS=builtins/array.o builtins/bool.o builtins/nums.o builtins/functions.o builtins/integers.o \
|
2024-05-20 12:19:31 -07:00
|
|
|
builtins/pointer.o builtins/memory.o builtins/text.o builtins/where.o builtins/c_string.o builtins/table.o \
|
2024-05-18 11:38:41 -07:00
|
|
|
builtins/types.o builtins/util.o builtins/files.o
|
2024-06-06 14:11:02 -07:00
|
|
|
TESTS=$(patsubst %.tm,%.tm.testresult,$(wildcard test/*.tm))
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-03-30 09:14:24 -07:00
|
|
|
all: libtomo.so tomo
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-06-09 11:40:34 -07:00
|
|
|
tomo: tomo.o $(BUILTIN_OBJS) SipHash/halfsiphash.o ast.o parse.o environment.o types.o typecheck.o structs.o enums.o compile.o repl.o
|
|
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-03-09 21:03:21 -08:00
|
|
|
libtomo.so: $(BUILTIN_OBJS) SipHash/halfsiphash.o
|
2024-04-03 00:04:42 -07:00
|
|
|
$(CC) $^ $(CFLAGS) $(EXTRA) $(CWARN) $(G) $(O) $(OSFLAGS) -lgc -lcord -lm -lunistring -ldl -Wl,-soname,libtomo.so -shared -o $@
|
2024-02-11 21:18:55 -08:00
|
|
|
|
2024-02-04 12:23:59 -08:00
|
|
|
SipHash/halfsiphash.c:
|
|
|
|
git submodule update --init --recursive
|
|
|
|
|
2024-02-11 22:48:45 -08:00
|
|
|
tags:
|
|
|
|
ctags *.[ch] **/*.[ch]
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-07-23 09:25:54 -07:00
|
|
|
%.o: %.c ast.h compile.h enums.h environment.h parse.h structs.h typecheck.h types.h
|
2024-06-09 11:40:34 -07:00
|
|
|
$(CC) $(CFLAGS) -c $< -o $@
|
2024-06-06 14:11:02 -07:00
|
|
|
|
|
|
|
%.tm.testresult: %.tm tomo
|
2024-06-17 14:35:21 -07:00
|
|
|
VERBOSE=0 COLOR=1 CC=tcc ./tomo $< 2>$@ >$@ && cat $@
|
2024-06-06 14:11:02 -07:00
|
|
|
|
|
|
|
test: $(TESTS)
|
2024-06-16 22:11:15 -07:00
|
|
|
@echo -e '\x1b[32;7m ALL TESTS PASSED! \x1b[m'
|
2024-02-23 10:31:35 -08:00
|
|
|
|
2024-02-04 12:23:59 -08:00
|
|
|
clean:
|
2024-06-06 14:11:02 -07:00
|
|
|
rm -f tomo *.o SipHash/halfsiphash.o builtins/*.o libtomo.so test/*.tm.{c,h,o,testresult}
|
2024-02-04 12:23:59 -08:00
|
|
|
|
|
|
|
%.1: %.1.md
|
|
|
|
pandoc --lua-filter=.pandoc/bold-code.lua -s $< -t man -o $@
|
|
|
|
|
2024-06-11 10:38:46 -07:00
|
|
|
install: tomo libtomo.so tomo.1
|
2024-03-09 21:03:21 -08:00
|
|
|
mkdir -p -m 755 "$(PREFIX)/man/man1" "$(PREFIX)/bin" "$(PREFIX)/include/tomo" "$(PREFIX)/lib" "$(PREFIX)/share/tomo/modules"
|
|
|
|
cp -v builtins/*.h "$(PREFIX)/include/tomo/"
|
2024-03-09 20:44:52 -08:00
|
|
|
cp -v libtomo.so "$(PREFIX)/lib/"
|
|
|
|
rm -f "$(PREFIX)/bin/tomo"
|
|
|
|
cp -v tomo "$(PREFIX)/bin/"
|
2024-06-11 10:38:46 -07:00
|
|
|
cp -v tomo.1 "$(PREFIX)/man/man1/"
|
2024-03-09 20:44:52 -08:00
|
|
|
|
|
|
|
uninstall:
|
2024-03-09 21:03:21 -08:00
|
|
|
rm -rvf "$(PREFIX)/bin/tomo" "$(PREFIX)/include/tomo" "$(PREFIX)/lib/libtomo.so" "$(PREFIX)/share/tomo"; \
|
2024-03-09 20:44:52 -08:00
|
|
|
|
2024-06-06 14:11:02 -07:00
|
|
|
.SUFFIXES:
|
2024-02-11 21:41:49 -08:00
|
|
|
.PHONY: all clean install uninstall test tags
|