forked from bonsai/harakit
Merge branch 'getopt-bindings'
This commit is contained in:
commit
cb88ed9809
21
Makefile
21
Makefile
@ -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
|
||||||