aaaaand the makefile :)
This commit is contained in:
parent
ae981d62d4
commit
1ed9fb3316
1 changed files with 13 additions and 0 deletions
13
lsp/Makefile
Normal file
13
lsp/Makefile
Normal 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
|
Loading…
Add table
Reference in a new issue