2025-03-21 20:51:22 -07:00
|
|
|
PREFIX=$(HOME)/.local
|
2024-03-09 20:44:52 -08:00
|
|
|
VERSION=0.0.1
|
2025-03-28 12:23:11 -07:00
|
|
|
CC=cc
|
2025-03-28 15:16:47 -07:00
|
|
|
CCONFIG=-std=c2x -fPIC \
|
2025-03-28 13:46:13 -07:00
|
|
|
-fno-signed-zeros -fno-finite-math-only -fno-trapping-math \
|
|
|
|
-fvisibility=hidden -fdollars-in-identifiers \
|
2024-12-30 12:32:08 -08:00
|
|
|
-DGC_THREADS
|
2025-03-28 13:46:13 -07:00
|
|
|
LTO=
|
2025-03-28 13:23:06 -07:00
|
|
|
LDFLAGS=-L/usr/local/lib
|
2025-03-28 15:16:47 -07:00
|
|
|
INCLUDE_DIRS=-I/usr/local/include
|
2024-09-08 14:17:15 -07:00
|
|
|
CWARN=-Wall -Wextra -Wno-format -Wshadow \
|
2024-10-29 20:14:31 -07:00
|
|
|
-Wno-pedantic \
|
2024-09-08 14:17:15 -07:00
|
|
|
-Wno-pointer-arith \
|
2025-03-28 13:46:13 -07:00
|
|
|
-Wtype-limits -Wunused-result -Wnull-dereference \
|
2025-03-28 13:47:27 -07:00
|
|
|
-Walloca -Wcast-align \
|
2025-03-28 13:46:13 -07:00
|
|
|
-Wdangling-else -Wdate-time -Wdisabled-optimization -Wdouble-promotion \
|
|
|
|
-Wexpansion-to-defined -Wno-float-equal \
|
|
|
|
-Wframe-address -Winline -Winvalid-pch \
|
|
|
|
-Wmissing-format-attribute -Wmissing-include-dirs -Wmissing-noreturn \
|
|
|
|
-Wnull-dereference -Woverlength-strings -Wpacked \
|
|
|
|
-Wredundant-decls -Wshadow \
|
|
|
|
-Wno-stack-protector -Wswitch-default \
|
|
|
|
-Wundef -Wunused -Wunused-but-set-variable \
|
|
|
|
-Wunused-const-variable -Wunused-local-typedefs -Wunused-macros -Wvariadic-macros \
|
2024-09-08 14:17:15 -07:00
|
|
|
-Wwrite-strings
|
2025-03-28 13:46:13 -07:00
|
|
|
|
|
|
|
ifeq ($(shell $(CC) -v 2>&1 | grep -c "gcc version"), 1)
|
|
|
|
LTO += -flto=auto -fno-fat-lto-objects -Wl,-flto
|
|
|
|
CWARN += -Werror -Wsign-conversion -Walloc-zero -Wduplicated-branches -Wduplicated-cond -Wjump-misses-init \
|
|
|
|
-Wlogical-op -Wpacked-not-aligned -Wshadow=compatible-local -Wshadow=global -Wshadow=local \
|
|
|
|
-Wsuggest-attribute=const -Wsuggest-attribute=noreturn -Wsuggest-attribute=pure \
|
2025-03-28 13:47:27 -07:00
|
|
|
-Wsync-nand -Wtrampolines -Wvector-operation-performance -Wcast-align=strict
|
2025-03-28 13:46:13 -07:00
|
|
|
CCONFIG += -fsanitize=signed-integer-overflow -fno-sanitize-recover -fno-signaling-nans
|
|
|
|
else
|
|
|
|
CWARN += -Wno-missing-field-initializers
|
|
|
|
endif
|
|
|
|
|
2025-03-28 13:57:52 -07:00
|
|
|
OS := $(shell uname -s)
|
|
|
|
|
|
|
|
OSFLAGS != case $(OS) in *BSD|Darwin) echo '-D_BSD_SOURCE';; Linux) echo '-D_GNU_SOURCE';; *) echo '-D_DEFAULT_SOURCE';; esac
|
2024-02-04 12:23:59 -08:00
|
|
|
EXTRA=
|
|
|
|
G=-ggdb
|
|
|
|
O=-Og
|
2025-03-28 15:16:47 -07:00
|
|
|
CFLAGS=$(CCONFIG) $(INCLUDE_DIRS) $(EXTRA) $(CWARN) $(G) $(O) $(OSFLAGS) $(LTO)
|
2025-03-28 13:16:04 -07:00
|
|
|
CFLAGS_PLACEHOLDER="$$(printf '\033[2m<flags...>\033[m\n')"
|
2025-03-28 11:22:42 -07:00
|
|
|
LDLIBS=-lgc -lcord -lm -lunistring -lgmp
|
2025-03-28 14:44:35 -07:00
|
|
|
LIBTOMO_FLAGS=-shared
|
2025-03-28 13:57:52 -07:00
|
|
|
|
|
|
|
ifeq ($(OS),OpenBSD)
|
2025-03-30 23:11:03 -07:00
|
|
|
LDLIBS += -lexecinfo
|
2025-03-28 13:57:52 -07:00
|
|
|
endif
|
|
|
|
|
2025-03-28 14:44:35 -07:00
|
|
|
ifeq ($(OS),Darwin)
|
2025-03-28 15:16:47 -07:00
|
|
|
INCLUDE_DIRS += -I/opt/homebrew/include
|
|
|
|
LDFLAGS += -L/opt/homebrew/lib
|
|
|
|
LIB_FILE=libtomo.dylib
|
|
|
|
LIBTOMO_FLAGS += -Wl,-install_name,@rpath/libtomo.dylib
|
2025-03-28 14:44:35 -07:00
|
|
|
else
|
2025-03-28 15:16:47 -07:00
|
|
|
LIB_FILE=libtomo.so
|
|
|
|
LIBTOMO_FLAGS += -Wl,-soname,libtomo.so
|
2025-03-28 14:44:35 -07:00
|
|
|
endif
|
|
|
|
|
2025-03-21 18:48:53 -07:00
|
|
|
COMPILER_OBJS=$(patsubst %.c,%.o,$(wildcard src/*.c))
|
|
|
|
STDLIB_OBJS=$(patsubst %.c,%.o,$(wildcard src/stdlib/*.c))
|
2025-03-21 19:04:37 -07:00
|
|
|
TESTS=$(patsubst test/%.tm,test/results/%.tm.testresult,$(wildcard test/*.tm))
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2025-03-28 15:10:49 -07:00
|
|
|
all: build/$(LIB_FILE) build/tomo
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2025-03-21 18:48:53 -07:00
|
|
|
build/tomo: $(STDLIB_OBJS) $(COMPILER_OBJS)
|
2025-03-21 18:43:51 -07:00
|
|
|
@mkdir -p build
|
2024-09-08 14:17:15 -07:00
|
|
|
@echo $(CC) $(CFLAGS_PLACEHOLDER) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
2024-10-29 23:16:39 -07:00
|
|
|
@$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2025-03-28 15:10:49 -07:00
|
|
|
build/$(LIB_FILE): $(STDLIB_OBJS)
|
2025-03-21 18:43:51 -07:00
|
|
|
@mkdir -p build
|
2025-03-28 14:44:35 -07:00
|
|
|
@echo $(CC) $^ $(CFLAGS_PLACEHOLDER) $(OSFLAGS) $(LDFLAGS) $(LDLIBS) $(LIBTOMO_FLAGS) -o $@
|
|
|
|
@$(CC) $^ $(CFLAGS) $(OSFLAGS) $(LDFLAGS) $(LDLIBS) $(LIBTOMO_FLAGS) -o $@
|
2024-02-11 21:18:55 -08:00
|
|
|
|
2024-02-11 22:48:45 -08:00
|
|
|
tags:
|
2025-03-21 19:06:45 -07:00
|
|
|
ctags src/*.[ch] src/stdlib/*.[ch]
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2025-03-21 18:43:51 -07:00
|
|
|
%.o: %.c src/ast.h src/environment.h src/types.h
|
2024-09-08 14:17:15 -07:00
|
|
|
@echo $(CC) $(CFLAGS_PLACEHOLDER) -c $< -o $@
|
2024-10-29 23:16:39 -07:00
|
|
|
@$(CC) $(CFLAGS) -c $< -o $@
|
2024-06-06 14:11:02 -07:00
|
|
|
|
2025-03-18 02:15:58 -07:00
|
|
|
%: %.tm
|
|
|
|
tomo -e $<
|
|
|
|
|
2025-03-21 19:04:37 -07:00
|
|
|
test/results/%.tm.testresult: test/%.tm build/tomo
|
|
|
|
@mkdir -p test/results
|
2025-03-28 15:26:45 -07:00
|
|
|
@printf '\033[33;1;4m%s\033[m\n' $<
|
2024-09-03 12:14:08 -07:00
|
|
|
@set -o pipefail; \
|
2025-03-21 18:43:51 -07:00
|
|
|
if ! VERBOSE=0 COLOR=1 LC_ALL=C CC=gcc ./build/tomo -O 1 $< 2>&1 | tee $@; then \
|
2024-09-03 12:14:08 -07:00
|
|
|
rm -f $@; \
|
|
|
|
false; \
|
|
|
|
fi
|
2024-06-06 14:11:02 -07:00
|
|
|
|
|
|
|
test: $(TESTS)
|
2025-03-28 15:26:45 -07:00
|
|
|
@printf '\033[32;7m ALL TESTS PASSED! \033[m\n'
|
2024-02-23 10:31:35 -08:00
|
|
|
|
2024-02-04 12:23:59 -08:00
|
|
|
clean:
|
2025-03-21 18:48:53 -07:00
|
|
|
rm -rf build/* $(COMPILER_OBJS) $(STDLIB_OBJS) test/*.tm.testresult test/.build examples/.build examples/*/.build
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2024-09-08 14:17:15 -07:00
|
|
|
%: %.md
|
2025-03-21 18:52:12 -07:00
|
|
|
pandoc --lua-filter=docs/.pandoc/bold-code.lua -s $< -t man -o $@
|
2024-02-04 12:23:59 -08:00
|
|
|
|
2025-04-02 13:20:57 -07:00
|
|
|
examples: examples/base64/base64 examples/ini/ini examples/game/game examples/http-server/http-server \
|
2025-03-18 02:15:58 -07:00
|
|
|
examples/tomodeps/tomodeps examples/tomo-install/tomo-install examples/wrap/wrap examples/colorful/colorful
|
2025-04-01 12:15:28 -07:00
|
|
|
./build/tomo -qIL examples/patterns examples/time examples/commands examples/shell examples/base64 examples/log \
|
2025-04-01 17:49:56 -07:00
|
|
|
examples/ini examples/vectors examples/http \
|
2025-04-01 12:34:24 -07:00
|
|
|
examples/wrap examples/pthreads examples/colorful examples/core
|
2025-03-21 18:43:51 -07:00
|
|
|
./build/tomo examples/learnxiny.tm
|
2024-11-24 13:36:27 -08:00
|
|
|
|
2025-03-21 21:02:21 -07:00
|
|
|
deps: check-gcc
|
2025-03-21 20:33:22 -07:00
|
|
|
./install_dependencies.sh
|
|
|
|
|
2025-03-21 21:02:21 -07:00
|
|
|
check-gcc:
|
|
|
|
@GCC_VERSION=$$(gcc --version | awk '{print $$3;exit}'); \
|
|
|
|
if [ "$$(printf '%s\n' "$$GCC_VERSION" "12.0.0" | sort -V | head -n 1)" = "12.0.0" ]; then \
|
|
|
|
printf "\033[32;1mGCC version is good!\033[m\n"; \
|
|
|
|
exit 0; \
|
|
|
|
else \
|
|
|
|
printf "\033[31;1mGCC version is lower than the required 12.0.0!\033[m\n" >&2; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
|
|
|
|
2025-03-28 15:10:49 -07:00
|
|
|
install: build/tomo build/$(LIB_FILE)
|
2025-03-21 20:51:22 -07:00
|
|
|
@if ! echo "$$PATH" | tr ':' '\n' | grep -qx "$(PREFIX)/bin"; then \
|
|
|
|
printf "\033[31;1mError: '$(PREFIX)' is not in your \$$PATH variable!\033[m\n" >&2; \
|
|
|
|
printf "\033[31;1mSpecify a different prefix with 'make PREFIX=... install'\033[m\n" >&2; \
|
|
|
|
printf "\033[31;1mor add the following line to your .profile:\033[m\n" >&2; \
|
|
|
|
printf "\n\033[1mexport PATH=\"$(PREFIX):\$$PATH\"\033[m\n\n" >&2; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
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"
|
2025-03-21 18:48:53 -07:00
|
|
|
cp -v src/stdlib/*.h "$(PREFIX)/include/tomo/"
|
2025-03-28 15:10:49 -07:00
|
|
|
cp -v build/$(LIB_FILE) "$(PREFIX)/lib/"
|
2024-03-09 20:44:52 -08:00
|
|
|
rm -f "$(PREFIX)/bin/tomo"
|
2025-03-21 18:43:51 -07:00
|
|
|
cp -v build/tomo "$(PREFIX)/bin/"
|
2025-03-21 18:50:03 -07:00
|
|
|
cp -v docs/tomo.1 "$(PREFIX)/man/man1/"
|
2024-03-09 20:44:52 -08:00
|
|
|
|
|
|
|
uninstall:
|
2025-03-28 15:10:49 -07:00
|
|
|
rm -rvf "$(PREFIX)/bin/tomo" "$(PREFIX)/include/tomo" "$(PREFIX)/lib/$(LIB_FILE) "$(PREFIX)/share/tomo"; \
|
2024-03-09 20:44:52 -08:00
|
|
|
|
2024-06-06 14:11:02 -07:00
|
|
|
.SUFFIXES:
|
2025-03-21 21:02:21 -07:00
|
|
|
.PHONY: all clean install uninstall test tags examples deps check-gcc
|