tomo/Makefile

63 lines
3.0 KiB
Makefile
Raw Normal View History

2024-02-04 12:23:59 -08:00
PREFIX=/usr/local
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-02-04 12:23:59 -08:00
LDFLAGS=-Wl,-rpath '-Wl,$$ORIGIN'
# MAKEFLAGS := --jobs=$(shell nproc) --output-sync=target
CWARN=-Wall -Wextra -Wno-format
# -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-03-09 20:23:31 -08:00
LDLIBS=-lgc -lcord -lm -lunistring
2024-02-17 16:52:37 -08:00
BUILTIN_OBJS=builtins/array.o builtins/bool.o builtins/color.o builtins/nums.o builtins/functions.o builtins/integers.o \
2024-03-03 15:15:45 -08:00
builtins/pointer.o builtins/memory.o builtins/text.o builtins/table.o builtins/types.o
2024-02-04 12:23:59 -08:00
2024-02-24 13:06:49 -08:00
all: libtomo.so tomo
2024-02-04 12:23:59 -08:00
2024-02-24 13:06:49 -08:00
tomo: tomo.c SipHash/halfsiphash.o util.o files.o ast.o parse.o environment.o types.o typecheck.o structs.o enums.o compile.o $(BUILTIN_OBJS)
2024-02-04 12:23:59 -08:00
2024-02-24 13:06:49 -08:00
libtomo.so: util.o files.o $(BUILTIN_OBJS) SipHash/halfsiphash.o
$(CC) $^ $(CFLAGS) $(EXTRA) $(CWARN) $(G) $(O) $(OSFLAGS) $(LDLIBS) -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-02-24 13:06:49 -08:00
test: tomo
2024-03-03 13:08:38 -08:00
for f in test/*.tm; do echo -e "\x1b[1;4m$$f\x1b[m"; VERBOSE=0 CC=tcc ./tomo "$$f" || break; done
2024-02-23 10:31:35 -08:00
2024-02-04 12:23:59 -08:00
clean:
2024-02-24 13:06:49 -08:00
rm -f tomo *.o SipHash/halfsiphash.o builtins/*.o libtomo.so
2024-02-04 12:23:59 -08:00
%.1: %.1.md
pandoc --lua-filter=.pandoc/bold-code.lua -s $< -t man -o $@
2024-03-09 20:44:52 -08:00
install: tomo libtomo.so
mkdir -p -m 755 "$(PREFIX)/man/man1" "$(PREFIX)/bin" "$(PREFIX)/lib" "$(PREFIX)/share/tomo/modules"
cp -v tomo.h "$(PREFIX)/include/"
cp -v libtomo.so "$(PREFIX)/lib/"
rm -f "$(PREFIX)/bin/tomo"
cp -v tomo "$(PREFIX)/bin/"
uninstall:
rm -rvf "$(PREFIX)/bin/tomo" "$(PREFIX)/lib/libtomo.so" "$(PREFIX)/share/tomo"; \
2024-02-11 21:41:49 -08:00
.PHONY: all clean install uninstall test tags