2
0

Extract cli utilities into mpw-cli-util to keep things cleaner.

This commit is contained in:
Maarten Billemont
2017-08-31 15:30:42 -04:00
parent 92a3a0ccbd
commit 568401a612
6 changed files with 325 additions and 242 deletions

View File

@@ -73,7 +73,7 @@ mpw() {
)
# build
cc "${cflags[@]}" "$@" "core/base64.c" "core/mpw-algorithm.c" "core/mpw-types.c" "core/mpw-util.c" "core/mpw-marshall-util.c" "core/mpw-marshall.c" \
cc "${cflags[@]}" "$@" "core/base64.c" "core/mpw-algorithm.c" "core/mpw-types.c" "core/mpw-util.c" "core/mpw-marshall-util.c" "core/mpw-marshall.c" "cli/mpw-cli-util.c" \
"${ldflags[@]}" "cli/mpw-cli.c" -o "mpw"
echo "done! You can now run ./mpw-cli-tests, ./install or use ./$_"
}