WIP: Generate Rust sysexits bindings without bindgen #129

Draft
trinity wants to merge 7 commits from sysxs into main
Showing only changes of commit 6efd398425 - Show all commits

View File

@ -18,7 +18,7 @@ PREFIX ?= /usr/local
MANDIR != [ $(PREFIX) = / ] && printf '/usr/share/man\n' \
|| printf '/share/man\n'
SYSEXITS != </dev/null cpp -M -include sysexits.h - | tr ' ' '\n' \
SYSEXITS != cpp -M -include sysexits.h /dev/null | tr ' ' '\n' \
| sed -n 's/sysexits\.h//p' || printf 'include\n'
CC ?= cc