summaryrefslogtreecommitdiffstats
path: root/configure
blob: 13d7a7f4817e87ef4d7cfde5cf3a17e60d8dfcd2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
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 ..