diff options
author | horchi <vdr@jwendel.de> | 2017-05-22 18:06:39 +0200 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2017-05-22 18:06:39 +0200 |
commit | fbafc79ffcb19ef4eb46569c7a8583fe12699569 (patch) | |
tree | 34a356c05ab11acd40a3c5d6a5ef79d00cb34a0c /http/Makefile | |
parent | dcf081666c526b6c9d5f1992088a56ea50b4816d (diff) | |
download | vdr-epg-daemon-fbafc79ffcb19ef4eb46569c7a8583fe12699569.tar.gz vdr-epg-daemon-fbafc79ffcb19ef4eb46569c7a8583fe12699569.tar.bz2 |
2017-05-16: version 1.1.115 (horchi)\n - change: Changed apple-mobile-web-app-status-bar-style to black\n - bugfix: Fixed typo in eventsviews\n\n1.1.115
Diffstat (limited to 'http/Makefile')
-rw-r--r-- | http/Makefile | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/http/Makefile b/http/Makefile index ae1ec10..6b86a0c 100644 --- a/http/Makefile +++ b/http/Makefile @@ -17,8 +17,8 @@ core: @echo "var epgd = {};" > ./epgd.full.js @cat ./src/lang/$(DEFAULT_LANG).js >> ./epgd.full.js @cat ./src/js/*.js >> ./epgd.full.js - @java -jar tools/yuicompressor-2.4.8.jar ./epgd.full.js -o ./www/epgd.js -v
-
+ @java -jar tools/yuicompressor-2.4.8.jar ./epgd.full.js -o ./www/epgd.js -v + # baut aus allen benötigten 3rdParty-scripten eine gesamt Javascriptdatei -> www/common.js common: # cat ./3rdParty/modernizr.custom.js > ./www/common.js @@ -38,7 +38,7 @@ lang: cp -ua ./src/lang/* ./www/lang/ # baut das default-theme und hinter dann auch ggf. weitere themes -style: +style: $(LESS_Compiler) -f ./tools/less-rhino-1.7.0.js ./tools/lessc-rhino-1.7.0.js --ru ./src/css/theme/default.less ./www/epgd.css @@ -51,10 +51,10 @@ install-core: cp ./www/epgd.css $(HTTPDEST)/ if test -f ./custom.css; then \ cat ./custom.css >> $(HTTPDEST)/epgd.css; \ - fi + fi cp -u ../HISTORY.h $(HTTPDEST)/ cp -u ../TODO $(HTTPDEST)/ - + install-lang: cp -ua ./www/lang/* $(HTTPDEST)/lang @@ -80,5 +80,4 @@ install-env: @if ! test -d $(HTTPDEST)/images/; then \ mkdir -p "$(HTTPDEST)/images/"; \ chmod a+rx $(HTTPDEST)/images/; \ - fi - + fi |