bp/Makefile

109 lines
4.3 KiB
Makefile
Raw Permalink Normal View History

NAME=bp
2021-01-02 13:57:04 -08:00
CC=cc
2020-09-11 01:28:06 -07:00
PREFIX=/usr/local
2021-01-04 17:32:56 -08:00
SYSCONFDIR=/etc
2025-03-03 13:03:51 -08:00
CFLAGS=-std=c11 -Werror -D_XOPEN_SOURCE=800 -D_POSIX_C_SOURCE=200809L -fPIC -flto=auto -fvisibility=hidden \
2024-05-27 22:59:03 -07:00
-fsanitize=signed-integer-overflow -fno-sanitize-recover
2024-05-27 23:00:14 -07:00
CWARN=-Wall -Wextra -Wno-format -Wshadow
# -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
2021-07-06 11:45:40 -07:00
OSFLAGS != case $$(uname -s) in *BSD|Darwin) echo '-D_BSD_SOURCE';; Linux) echo '-D_GNU_SOURCE';; *) echo '-D_DEFAULT_SOURCE';; esac
2021-01-15 18:32:56 -08:00
EXTRA=
2021-01-02 13:57:04 -08:00
G=
O=-O3
2021-07-06 11:45:40 -07:00
ALL_FLAGS=$(CFLAGS) $(OSFLAGS) -DBP_NAME="\"$(NAME)\"" $(EXTRA) $(CWARN) $(G) $(O)
2020-09-07 23:05:38 -07:00
2022-05-14 11:31:34 -07:00
LIBFILE=lib$(NAME).so
2024-06-23 16:23:02 -07:00
CFILES=pattern.c utils.c match.c files.c printmatch.c utf8.c
HFILES=files.h match.h pattern.h printmatch.h utf8.h utils.h
2020-09-11 01:28:06 -07:00
OBJFILES=$(CFILES:.c=.o)
2022-05-02 14:25:18 -07:00
$(NAME): $(OBJFILES) bp.c
$(CC) $(ALL_FLAGS) -o $@ $(OBJFILES) bp.c
2024-05-27 22:48:58 -07:00
$(LIBFILE): pattern.o utils.o match.o utf8.o
2022-05-14 11:31:34 -07:00
$(CC) $^ $(ALL_FLAGS) -Wl,-soname,$(LIBFILE) -shared -o $@
all: $(NAME) $(LIBFILE) bp.1 lua
2020-09-07 23:05:38 -07:00
%.o: %.c %.h utf8.h
2021-01-15 18:32:56 -08:00
$(CC) -c $(ALL_FLAGS) -o $@ $<
2020-09-07 23:05:38 -07:00
bp.1: bp.1.md
pandoc --lua-filter=.pandoc/bold-code.lua -s $< -t man -o $@
2021-01-18 15:12:01 -08:00
tags: $(CFILES) bp.c
ctags *.c *.h
2020-09-11 01:28:06 -07:00
clean:
2020-09-11 01:54:26 -07:00
rm -f $(NAME) $(OBJFILES)
2024-05-27 22:59:03 -07:00
@cd Lua && make clean
2020-09-07 23:05:38 -07:00
2022-05-02 14:24:20 -07:00
lua:
2022-05-02 14:25:18 -07:00
@cd Lua && make
2022-05-02 14:24:20 -07:00
2024-05-27 22:41:07 -07:00
luatest:
@cd Lua && make test
test: $(NAME)
2021-08-28 14:26:32 -07:00
./$(NAME) Comment -r '[@0]' >/dev/null
2024-05-27 22:12:24 -07:00
./$(NAME) -g ./grammars/bp.bp '{Grammar}' ./grammars/bp.bp >/dev/null
2021-08-28 14:26:32 -07:00
for test in tests/*.sh; do \
PATH=".:$$PATH" sh "$$test" <"$${test/.sh/.in}" | diff -q - "$${test/.sh/.out}" ||\
PATH=".:$$PATH" sh "$$test" <"$${test/.sh/.in}" | diff -y --color=always - "$${test/.sh/.out}"; \
2021-08-28 14:26:32 -07:00
done
tutorial:
./tutorial.sh
2021-05-10 23:43:54 -07:00
leaktest: bp
2024-05-27 22:12:24 -07:00
valgrind --leak-check=full ./bp -l -g ./grammars/bp.bp '{Grammar}' ./grammars/bp.bp
2021-01-18 09:15:25 -08:00
splint:
2021-01-18 11:55:05 -08:00
splint -posix-lib -weak -unrecog -initallelements -fullinitblock $(CFILES) bp.c
#splint:
# splint -posix-lib -checks -mustfreefresh -mustfreeonly -temptrans -immediatetrans -branchstate \
# -compmempass -nullret -nullpass -nullderef -kepttrans -boolops -initallelements -fullinitblock \
# -compdef -usereleased -unrecog -dependenttrans -predboolothers -ownedtrans -unqualifiedtrans \
# -onlytrans -usedef -nullassign -compdestroy -globstate -nullstate -statictrans -predboolint \
# $(CFILES) bp.c
2021-01-18 09:15:25 -08:00
2021-05-19 22:03:34 -07:00
install: $(NAME) bp.1
2021-07-03 21:43:56 -07:00
mkdir -p -m 755 "$(PREFIX)/man/man1" "$(PREFIX)/bin" "$(SYSCONFDIR)/$(NAME)"
cp -r grammars/* "$(SYSCONFDIR)/$(NAME)/"
cp bp.1 "$(PREFIX)/man/man1/$(NAME).1"
2021-01-04 17:32:56 -08:00
rm -f "$(PREFIX)/bin/$(NAME)"
2021-01-17 23:39:29 -08:00
cp $(NAME) "$(PREFIX)/bin/"
2020-09-11 01:54:26 -07:00
2022-05-14 11:31:34 -07:00
install-lib: $(LIBFILE) bp.1
mkdir -p -m 755 "$(PREFIX)/lib" "$(PREFIX)/include/$(NAME)"
cp $(LIBFILE) "$(PREFIX)/lib"
cp pattern.h match.h "$(PREFIX)/include/$(NAME)"
2022-05-14 11:31:34 -07:00
2020-09-11 01:54:26 -07:00
uninstall:
2021-07-03 21:43:56 -07:00
rm -rf "$(PREFIX)/bin/$(NAME)" "$(PREFIX)/man/man1/$(NAME).1" "$(SYSCONFDIR)/$(NAME)"
2021-01-04 17:32:56 -08:00
@if [ -d ~/.config/$(NAME) ]; then \
printf 'Config files exist in ~/.config/$(NAME) Do you want to delete them? [Y/n] '; \
read confirm; \
[ "$$confirm" != n ] && rm -rf ~/.config/$(NAME); \
fi
2022-10-26 16:30:04 -07:00
profile_grammar: bp
perf stat -r 100 -e L1-dcache-loads,L1-dcache-load-misses,L1-dcache-stores -e cycles ./bp -f plain -g bp -p Grammar grammars/bp.bp >/dev/null
2022-10-26 10:19:38 -07:00
2022-10-26 16:30:04 -07:00
profile_pattern: bp
perf stat -r 1 -e L1-dcache-loads,L1-dcache-load-misses,L1-dcache-stores -e cycles ./bp -f plain -p 'id parens' /usr/include/*.h >/dev/null
2022-10-26 16:28:57 -07:00
2024-05-27 22:41:07 -07:00
.PHONY: all clean install install-lib uninstall leaktest splint test tutorial lua profile luatest