5.3 ./configure && makeYou can make your Rscons-based project more familiar to users of
autoconf-generated projects by creating a ./configure make to build a project.
To do this, create a #!/bin/sh exec "$(dirname "$0")"/rscons configure "$@" and make it executable with If you want your users to be able to build/clean a project with .PHONY: all all: ./rscons build .PHONY: clean clean: ./rscons clean
|