Merge branch 'makefile-posix-2024'
This commit is contained in:
commit
2e91338101
15
Makefile
15
Makefile
@ -8,11 +8,10 @@
|
|||||||
# permitted in any medium without royalty provided the copyright notice and this
|
# permitted in any medium without royalty provided the copyright notice and this
|
||||||
# notice are preserved. This file is offered as-is, without any warranty.
|
# notice are preserved. This file is offered as-is, without any warranty.
|
||||||
|
|
||||||
.POSIX:
|
# The octal escape \043 is utilized twice in this file as make(1p) will
|
||||||
|
# interpret a hash in a rule as an inline comment.
|
||||||
|
|
||||||
# if using BSD make(1), remove these pragmas because they break it
|
.POSIX:
|
||||||
.PRAGMA: posix_202x # future POSIX standard support à la pdpmake(1)
|
|
||||||
.PRAGMA: command_comment # breaks without this?
|
|
||||||
|
|
||||||
DESTDIR ?= dist
|
DESTDIR ?= dist
|
||||||
PREFIX ?= /usr/local
|
PREFIX ?= /usr/local
|
||||||
@ -32,9 +31,9 @@ CFLAGS += -I$(SYSEXITS)
|
|||||||
.PHONY: all
|
.PHONY: all
|
||||||
all: dj false fop hru intcmp mm npc rpn scrut str strcmp swab true
|
all: dj false fop hru intcmp mm npc rpn scrut str strcmp swab true
|
||||||
|
|
||||||
|
# keep build/include until bindgen(1) has stdin support
|
||||||
|
# https://github.com/rust-lang/rust-bindgen/issues/2703
|
||||||
build:
|
build:
|
||||||
# keep build/include until bindgen(1) has stdin support
|
|
||||||
# https://github.com/rust-lang/rust-bindgen/issues/2703
|
|
||||||
mkdir -p build/bin build/include build/lib build/o build/test
|
mkdir -p build/bin build/include build/lib build/o build/test
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
@ -67,9 +66,9 @@ build/o/libstrerror.rlib: build src/strerror.rs
|
|||||||
$(RUSTC) $(RUSTFLAGS) --crate-type=lib -o $@ \
|
$(RUSTC) $(RUSTFLAGS) --crate-type=lib -o $@ \
|
||||||
src/strerror.rs
|
src/strerror.rs
|
||||||
|
|
||||||
|
# bandage solution until bindgen(1) gets stdin support
|
||||||
build/o/libsysexits.rlib: build $(SYSEXITS)sysexits.h
|
build/o/libsysexits.rlib: build $(SYSEXITS)sysexits.h
|
||||||
# bandage solution until bindgen(1) gets stdin support
|
printf '\043define EXIT_FAILURE 1\n' | cat - $(SYSEXITS)sysexits.h \
|
||||||
printf '#define EXIT_FAILURE 1\n' | cat - $(SYSEXITS)sysexits.h \
|
|
||||||
> build/include/sysexits.h
|
> build/include/sysexits.h
|
||||||
bindgen --default-macro-constant-type signed --use-core --formatter=none \
|
bindgen --default-macro-constant-type signed --use-core --formatter=none \
|
||||||
build/include/sysexits.h | $(RUSTC) $(RUSTFLAGS) --crate-type lib -o $@ -
|
build/include/sysexits.h | $(RUSTC) $(RUSTFLAGS) --crate-type lib -o $@ -
|
||||||
|
Loading…
Reference in New Issue
Block a user