Merge branch 'getopt-bindings'

This commit is contained in:
Emma Tebibyte 2024-06-29 07:51:01 -06:00
commit cb88ed9809
Signed by untrusted user: emma
GPG Key ID: 06FA419A1698C270
12 changed files with 246 additions and 1020 deletions

View File

@ -50,9 +50,12 @@ install: dist
cp -r $(DESTDIR)/* / cp -r $(DESTDIR)/* /
.PHONY: test .PHONY: test
test: build test: build /tmp/getopt
/tmp/getopt
tests/posix-compat.sh tests/posix-compat.sh
$(RUSTC) --test src/getopt-rs/lib.rs -o build/test/getopt
/tmp/getopt: src/libgetopt.rs
$(RUSTC) --test -o /tmp/getopt src/libgetopt.rs
.PHONY: docs .PHONY: docs
docs: docs/ build docs: docs/ build