|
|
|
@ -32,6 +32,7 @@ while test $# -gt 0; do |
|
|
|
|
(--docker|-d) docker=1;; |
|
|
|
|
(--build|-b) configure=1; build=1; buildtarget+=" distcheck";; |
|
|
|
|
(--all|-a) shift; configure=1; build=1; buildtarget+=" all";; |
|
|
|
|
(--install|-i) shift; configure=1; build=1; buildtarget+=" all install";; |
|
|
|
|
(--clean) shift; configure=1; build=1; buildtarget+=" maintainer-clean";; |
|
|
|
|
(--target|-t) shift; configure=1; build=1; buildtarget+=" $1";; |
|
|
|
|
(--overwrite|-o) overwrite=1;; |
|
|
|
@ -53,6 +54,7 @@ OPTIONS |
|
|
|
|
--docker, -d build and run tests in a docker instance |
|
|
|
|
--build, -b build, also call ./configure && make distcheck |
|
|
|
|
--all, -a same as -b, but make target all |
|
|
|
|
--install, -i same as -a, but add make install |
|
|
|
|
--clean same as -b, but make target maintainer-clean |
|
|
|
|
--target, -t <target> same as -b, but specify target instead of distcheck |
|
|
|
|
--overwrite, -o overwrite all basic files (bootstrap.sh, m4-macros) |
|
|
|
|