btui/Makefile

67 lines
2.0 KiB
Makefile
Raw Normal View History

2020-04-18 15:09:33 -07:00
PREFIX=
CC ?= gcc
O ?= -O2
2021-05-31 21:19:43 -07:00
CFLAGS=-std=c99 -D_XOPEN_SOURCE=500 -D_GNU_SOURCE -D_POSIX_C_SOURCE=200809L -Werror -flto
CWARN=-Wall -Wpedantic -Wextra \
-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 -Wunused -Wunused-but-set-variable \
-Wunused-const-variable -Wunused-local-typedefs -Wvariadic-macros -Wvector-operation-performance \
-Wvla -Wwrite-strings
2020-04-18 15:09:33 -07:00
#CFLAGS += -fsanitize=address -fno-omit-frame-pointer
2020-04-20 13:51:51 -07:00
ifeq ($(shell uname -s),Darwin)
2020-04-20 13:49:57 -07:00
CFLAGS += -D_DARWIN_C_SOURCE
endif
2020-04-18 15:09:33 -07:00
G=
all: checksyntax
checksyntax: btui.h
$(CC) $(CFLAGS) $(CWARN) $(G) $(O) -fsyntax-only $<
2020-04-18 15:09:33 -07:00
clean:
2020-04-18 21:19:03 -07:00
@cd Lua; make clean
@cd C; make clean
2020-04-18 22:47:24 -07:00
@cd Python; make clean
2020-04-18 15:09:33 -07:00
%: %.c btui.h
$(CC) $(CFLAGS) $(CWARN) $(G) $(O) $< -o $@
c:
@cd C; make
testc:
@cd C; make G=$(G) O=$(O) test
2020-04-19 00:31:57 -07:00
rainbow:
@cd C; make rainbowdemo
lua:
2020-04-18 21:19:03 -07:00
@cd Lua; make
testlua:
2020-04-18 21:19:03 -07:00
@cd Lua; make test
2020-04-19 15:46:41 -07:00
python:
@cd Python; make
testpython:
@cd Python; make test
2021-05-16 18:28:44 -07:00
install:
2021-05-16 19:20:25 -07:00
mkdir -pv -m 755 "${PREFIX}/include" "${PREFIX}/man/man3" \
&& cp -v btui.h "${PREFIX}/include/" \
&& cp -v btui.3 "${PREFIX}/man/man3/"
2021-05-16 18:28:44 -07:00
uninstall:
2021-05-16 19:20:25 -07:00
rm -f "${PREFIX}/include/btui.h" "${PREFIX}/man/man3/btui.3"
2021-05-16 18:28:44 -07:00
.PHONY: all, checksyntax, clean, c, testc, lua, testlua, python, testpython, install, uninstall