Created
October 4, 2016 19:06
-
-
Save MLKrisJohnson/29bab47f3e957f562a24d2af84808350 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# This script is used as an "External Build Tool" | |
case $1 in | |
clean) | |
make clean | |
;; | |
*) | |
make -j6 dcb-all | |
;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment