summaryrefslogtreecommitdiff
path: root/src/GNUmakefile
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2015-06-17 19:41:26 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2015-06-17 19:41:26 +0200
commit783a4e1a5908c407f88c2a41f526d33f71a06b31 (patch)
treef7a91b39a953a4759fd2a8a8839ed44087d05bd5 /src/GNUmakefile
parent2700d016843dddd53ff2a86fd39ce9aa2b7e5cd7 (diff)
downloadbiruda-783a4e1a5908c407f88c2a41f526d33f71a06b31.tar.gz
biruda-783a4e1a5908c407f88c2a41f526d33f71a06b31.tar.bz2
some first jquery ui steps
Diffstat (limited to 'src/GNUmakefile')
-rw-r--r--src/GNUmakefile14
1 files changed, 12 insertions, 2 deletions
diff --git a/src/GNUmakefile b/src/GNUmakefile
index 07f5748..95606b2 100644
--- a/src/GNUmakefile
+++ b/src/GNUmakefile
@@ -34,7 +34,7 @@ master.o: master.c master.h port.h
coordinator.o: coordinator.c coordinator.h port.h system.h
worker.o: worker.c worker.h port.h
system.o: system.c system.h
-webserver.o: webserver.c webserver.h index.h
+webserver.o: webserver.c webserver.h index.h jquery-ui-css.h jquery-js.h jquery-ui-js.h
3rdParty/linenoise/linenoise.o: 3rdParty/linenoise/linenoise.c 3rdParty/linenoise/linenoise.h
3rdParty/http_tiny/http_lib.o: 3rdParty/http_tiny/http_lib.c 3rdParty/http_tiny/http_lib.h
cli.o: cli.c cli.h
@@ -57,6 +57,15 @@ biruda_conf.c: biruda.conf 3rdParty/xxd/xxd
index.h: index.html 3rdParty/xxd/xxd
3rdParty/xxd/xxd -i index.html > index.h
+jquery-ui-css.h: jquery-ui.css 3rdParty/xxd/xxd
+ 3rdParty/xxd/xxd -i jquery-ui.css > jquery-ui-css.h
+
+jquery-js.h: jquery.js 3rdParty/xxd/xxd
+ 3rdParty/xxd/xxd -i jquery.js > jquery-js.h
+
+jquery-ui-js.h: jquery-ui.js 3rdParty/xxd/xxd
+ 3rdParty/xxd/xxd -i jquery-ui.js > jquery-ui-js.h
+
clean:
@-rm *.o
@-rm biruda birudaenv
@@ -66,7 +75,7 @@ clean:
@-rm 3rdParty/linenoise/*.o
@-rm 3rdParty/xxd/xxd
@-rm biruda_conf.c
- @-rm index.h
+ @-rm index.h jquery-ui-css.h jquery-js.h jquery-ui-js.h
# default values
DESTDIR ?=
@@ -86,6 +95,7 @@ install:
run: all
@-./biruda -c biruda.conf -p
@-./biruda --guess-env --human-readable
+ @-./biruda -f -c biruda.conf
test:
@-./biruda -f -c biruda.conf &