2023-12-24 17:13:17 -07:00
|
|
|
# Copyright (c) 2023 Emma Tebibyte <emma@tebibyte.media>
|
|
|
|
# Copyright (c) 2023 DTB <trinity@trinity.moe>
|
2023-12-24 19:22:05 -07:00
|
|
|
# Copyright (c) 2023 Sasha Koshka <sashakoshka@tebibyte.media>
|
2023-12-24 17:13:17 -07:00
|
|
|
# SPDX-License-Identifier: FSFAP
|
|
|
|
#
|
|
|
|
# Copying and distribution of this file, with or without modification, are
|
|
|
|
# permitted in any medium without royalty provided the copyright notice and this
|
|
|
|
# notice are preserved. This file is offered as-is, without any warranty.
|
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
.POSIX:
|
|
|
|
.PRAGMA: posix_202x # future POSIX standard support à la pdpmake(1)
|
|
|
|
|
|
|
|
.PHONY: all
|
2023-12-24 17:13:17 -07:00
|
|
|
.PHONY: clean
|
|
|
|
.PHONY: install
|
|
|
|
.PHONY: test
|
|
|
|
|
|
|
|
PREFIX=/usr/local
|
2023-12-25 19:00:17 -07:00
|
|
|
|
2023-12-24 17:13:17 -07:00
|
|
|
CC=cc
|
2023-12-25 20:49:29 -07:00
|
|
|
CFLAGS=-O3 -Lbuild/lib -idirafter include
|
2023-12-25 19:00:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
RUSTC=rustc
|
|
|
|
RUSTCFLAGS=-Copt-level=z -Ccodegen-units=1 -Cpanic=abort -Clto=y \
|
|
|
|
-Cstrip=symbols -Ctarget-cpu=native \
|
2023-12-27 22:42:50 -07:00
|
|
|
--extern sysexits=build/o/libsysexits.rlib
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
all: false fop intcmp scrut str strcmp true test
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
build:
|
2023-12-27 23:20:31 -07:00
|
|
|
# keep build/include until bindgen(1) has stdin support
|
|
|
|
# https://github.com/rust-lang/rust-bindgen/issues/2703
|
2024-01-15 14:34:59 -07:00
|
|
|
mkdir -p build/bin build/include build/o # build/lib
|
2023-12-24 17:13:17 -07:00
|
|
|
|
|
|
|
clean:
|
2024-01-15 14:34:59 -07:00
|
|
|
rm -rf build/ dist/
|
|
|
|
|
|
|
|
dist: all
|
|
|
|
mkdir -p \
|
|
|
|
dist/bin \
|
|
|
|
dist/man/man1 \
|
|
|
|
# dist/$(PREFIX)/lib \
|
|
|
|
# dist/$(PREFIX)/man/man3
|
|
|
|
cp build/bin/* dist/bin/
|
|
|
|
# cp build/lib/* dist/$(PREFIX)/lib/
|
|
|
|
cp docs/*.1 dist/man/man1/
|
|
|
|
# cp docs/*.3 dist/$(PREFIX)/man/man3/
|
|
|
|
|
|
|
|
install: dist
|
|
|
|
mkdir -p $(PREFIX)
|
|
|
|
cp -r dist/* $(PREFIX)/
|
2023-12-24 17:13:17 -07:00
|
|
|
|
|
|
|
test: build
|
|
|
|
tests/cc-compat.sh
|
|
|
|
tests/posix-compat.sh
|
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
sysexits: build
|
2023-12-27 23:20:31 -07:00
|
|
|
# bandage solution until bindgen(1) gets stdin support
|
|
|
|
printf '#define EXIT_FAILURE 1\n' | cat - include/sysexits.h \
|
|
|
|
> build/include/sysexits.h
|
2024-01-15 14:34:59 -07:00
|
|
|
bindgen --default-macro-constant-type signed --use-core --formatter=none \
|
2023-12-27 23:20:31 -07:00
|
|
|
"$$(printf '#include <sysexits.h>\n' \
|
2023-12-28 22:33:04 -07:00
|
|
|
| cpp -M -idirafter "build/include" - \
|
|
|
|
| sed 's/ /\n/g' | grep sysexits.h)" \
|
2023-12-27 22:42:50 -07:00
|
|
|
| $(RUSTC) $(RUSTCFLAGS) --crate-type lib -o build/o/libsysexits.rlib -
|
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
false: src/false.rs build
|
2023-12-25 19:00:17 -07:00
|
|
|
$(RUSTC) $(RUSTCFLAGS) -o build/bin/false src/false.rs
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
fop: src/fop.rs build sysexits
|
2023-12-27 15:44:19 -07:00
|
|
|
$(RUSTC) $(RUSTCFLAGS) -o build/bin/fop src/fop.rs
|
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
intcmp: src/intcmp.c build
|
2023-12-24 19:17:24 -07:00
|
|
|
$(CC) $(CFLAGS) -o build/bin/intcmp src/intcmp.c
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
scrut: src/scrut.c build
|
2023-12-25 17:50:23 -07:00
|
|
|
$(CC) $(CFLAGS) -o build/bin/scrut src/scrut.c
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
str: src/str.c build
|
2023-12-24 19:17:24 -07:00
|
|
|
$(CC) $(CFLAGS) -o build/bin/str src/str.c
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
strcmp: src/strcmp.c build
|
2023-12-24 19:17:24 -07:00
|
|
|
$(CC) $(CFLAGS) -o build/bin/strcmp src/strcmp.c
|
2023-12-24 17:13:17 -07:00
|
|
|
|
2024-01-15 14:34:59 -07:00
|
|
|
true: src/true.rs build
|
2023-12-25 19:00:17 -07:00
|
|
|
$(RUSTC) $(RUSTCFLAGS) -o build/bin/true src/true.rs
|