1
0
Fork 0

Makefile: move PHONYs to their respective recipes

This commit is contained in:
dtb 2024-01-15 23:54:42 -07:00
parent 48c6ad1252
commit c237af0e37
Signed by untrusted user: trinity
GPG Key ID: 31FF85CCB6DC7641
1 changed files with 4 additions and 5 deletions

View File

@ -10,11 +10,6 @@
.POSIX:
.PRAGMA: posix_202x # future POSIX standard support à la pdpmake(1)
.PHONY: all
.PHONY: clean
.PHONY: install
.PHONY: test
PREFIX=/usr/local
CC=cc
@ -23,6 +18,7 @@ RUSTC=rustc
# to build, first run ./configure
include *.mk
.PHONY: all
all: dj false fop intcmp scrut str strcmp true
build:
@ -30,6 +26,7 @@ build:
# https://github.com/rust-lang/rust-bindgen/issues/2703
mkdir -p build/bin build/include build/lib build/o build/test
.PHONY: clean
clean:
rm -rf build/ dist/
@ -38,10 +35,12 @@ dist: all
cp build/bin/* dist/bin/
cp docs/*.1 dist/share/man/man1/
.PHONY: install
install: dist
mkdir -p $(PREFIX)
cp -r dist/* $(PREFIX)/
.PHONY: test
test: build
tests/cc-compat.sh
tests/posix-compat.sh