aaaaand the makefile :)

This commit is contained in:
Niels Groot Obbink 2012-08-28 15:20:19 +02:00
parent ae981d62d4
commit 1ed9fb3316

13
lsp/Makefile Normal file
View file

@ -0,0 +1,13 @@
default: server.html
uncompressed:
cat jquery.js placeholder.js md5.js main.js functions.js > uncompressed.js
compressed: uncompressed
echo "<script>" > compressed.js
./closure < uncompressed.js >> compressed.js
echo "</script>" >> compressed.js
server.html: compressed
cat header.html compressed.js > ../server.html
echo "<style>" >> ../server.html
cat style.css >> ../server.html
echo "</style>" >> ../server.html
cat footer.html >> ../server.html