blob: 7e0ae2cb7d5a3255b957fcf9f7e0b71cd83d85af (
plain) (
tree)
|
|
#!/bin/bash
echo " I think that install and configure should be deprecated."
echo " use sudo make prepare and make generate instead and fix any of yours git-pre-add hooks or whatever."
echo " --sijanec"
mkdir tmp
cd tmp
rm -rf bverbose
git clone https://github.com/sijanec/bverbose
cd bverbose
gcc test/tape-test.c -I lib -I src -o ../../bin/compose-single
gcc test/compose-all-in-dir.c -I lib -I src -o ../../bin/compose-html
gcc test/jsbundle-test.c -I lib -I src -o ../../bin/jsbundle
gcc test/jsmin-test.c -I lib -I src -o ../../bin/jsmin
cd ..
rm -rf bverbose
cd ..
|