tomo/Makefile

85 lines
3.9 KiB
Makefile
Raw Normal View History

PREFIX=/usr
2024-03-09 20:44:52 -08:00
VERSION=0.0.1
CC=gcc
CCONFIG=-std=c23 -Werror -D_XOPEN_SOURCE=700 -D_POSIX_C_SOURCE=200809L -fPIC -I. \
-fno-signed-zeros -fno-finite-math-only -fno-signaling-nans -fno-trapping-math \
-fsanitize=signed-integer-overflow -fno-sanitize-recover -fvisibility=hidden -fdollars-in-identifiers
2024-03-03 12:04:36 -08:00
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
CWARN=-Wall -Wextra -Wno-format -Wshadow \
-Wno-pedantic \
-Wno-pointer-arith \
-Wsign-conversion -Wtype-limits -Wunused-result -Wnull-dereference \
-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 -Wno-float-equal \
-Wframe-address -Winline -Winvalid-pch -Wjump-misses-init \
-Wlogical-op -Wmissing-format-attribute -Wmissing-include-dirs -Wmissing-noreturn \
-Wnull-dereference -Woverlength-strings -Wpacked -Wpacked-not-aligned \
-Wredundant-decls -Wshadow -Wshadow=compatible-local -Wshadow=global -Wshadow=local \
-Wsign-conversion -Wno-stack-protector -Wsuggest-attribute=const -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure -Wswitch-default \
-Wsync-nand -Wtrampolines -Wundef -Wunused -Wunused-but-set-variable \
-Wunused-const-variable -Wunused-local-typedefs -Wunused-macros -Wvariadic-macros -Wvector-operation-performance \
-Wwrite-strings
2024-02-04 12:23:59 -08:00
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) $(LTO)
CFLAGS_PLACEHOLDER="$$(echo -e '\033[2m<flags...>\033[m')"
2024-09-04 11:36:23 -07:00
LDLIBS=-lgc -lcord -lm -lunistring -lgmp -ldl
2024-09-15 12:33:47 -07:00
BUILTIN_OBJS=stdlib/siphash.o stdlib/arrays.o stdlib/bools.o stdlib/bytes.o stdlib/channels.o stdlib/nums.o stdlib/integers.o \
2024-09-13 17:18:08 -07:00
stdlib/pointers.o stdlib/memory.o stdlib/text.o stdlib/threads.o stdlib/c_strings.o stdlib/tables.o \
stdlib/types.o stdlib/util.o stdlib/files.o stdlib/ranges.o stdlib/shell.o stdlib/paths.o \
2024-09-29 17:06:09 -07:00
stdlib/optionals.o stdlib/patterns.o stdlib/metamethods.o stdlib/functiontype.o stdlib/stdlib.o stdlib/datetime.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) ast.o parse.o environment.o types.o typecheck.o structs.o enums.o compile.o repl.o cordhelpers.o
@echo $(CC) $(CFLAGS_PLACEHOLDER) $(LDFLAGS) $^ $(LDLIBS) -o $@
@$(CC) $(CFLAGS) $(CWARN) $(LDFLAGS) $^ $(LDLIBS) -o $@
2024-02-04 12:23:59 -08:00
libtomo.so: $(BUILTIN_OBJS)
@echo $(CC) $^ $(CFLAGS_PLACEHOLDER) $(OSFLAGS) -lgc -lcord -lm -lunistring -lgmp -ldl -Wl,-soname,libtomo.so -shared -o $@
@$(CC) $^ $(CFLAGS) $(CWARN) $(OSFLAGS) -lgc -lcord -lm -lunistring -lgmp -ldl -Wl,-soname,libtomo.so -shared -o $@
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
@echo $(CC) $(CFLAGS_PLACEHOLDER) -c $< -o $@
@$(CC) $(CFLAGS) $(CWARN) -c $< -o $@
%.tm.testresult: %.tm tomo
2024-09-03 12:14:08 -07:00
@printf '\x1b[33;1;4m%s\x1b[m\n' $<
@set -o pipefail; \
if ! VERBOSE=0 COLOR=1 CC=gcc O=1 ./tomo $< 2>&1 | tee $@; then \
rm -f $@; \
false; \
fi
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-09-30 11:40:41 -07:00
rm -f tomo *.o stdlib/*.o libtomo.so test/*.tm.{c,h,o,testresult} examples/**/*.tm.{c,h,o}
2024-02-04 12:23:59 -08:00
%: %.md
2024-02-04 12:23:59 -08:00
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"
2024-09-13 17:18:08 -07:00
cp -v stdlib/*.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