tomo/Makefile

74 lines
3.4 KiB
Makefile
Raw Normal View History

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
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)
LDLIBS=-lgc -lcord -lreadline -lm -lunistring -lgmp -ldl
2024-08-11 11:47:34 -07:00
BUILTIN_OBJS=builtins/array.o builtins/bool.o builtins/channel.o builtins/nums.o builtins/functions.o builtins/integers.o \
builtins/pointer.o builtins/memory.o builtins/text.o builtins/thread.o builtins/c_string.o builtins/table.o \
builtins/types.o builtins/util.o builtins/files.o builtins/range.o
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
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
$(CC) $^ $(CFLAGS) $(EXTRA) $(CWARN) $(G) $(O) $(OSFLAGS) -lgc -lcord -lreadline -lm -lunistring -lgmp -ldl -Wl,-soname,libtomo.so -shared -o $@
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:27:14 -07:00
%.o: %.c ast.h environment.h types.h
$(CC) $(CFLAGS) -c $< -o $@
%.tm.testresult: %.tm tomo
2024-08-13 01:06:20 -07:00
VERBOSE=0 COLOR=1 CC=gcc O=1 ./tomo $< 2>$@ >$@ && cat $@
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:
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
.SUFFIXES:
2024-02-11 21:41:49 -08:00
.PHONY: all clean install uninstall test tags