1
0
Fork 0

added underscore

This commit is contained in:
Frank Celler 2014-06-23 10:44:16 +02:00
parent 542a4263e6
commit c21c1d9a46
2 changed files with 14 additions and 1 deletions

View File

@ -37,7 +37,9 @@ JAVASCRIPT_BROWSER = \
js/apps/system/aardvark/frontend/js/bootstrap/module-console.js \ js/apps/system/aardvark/frontend/js/bootstrap/module-console.js \
\ \
js/apps/system/aardvark/frontend/js/client/client.js \ js/apps/system/aardvark/frontend/js/client/client.js \
js/apps/system/aardvark/frontend/js/client/bootstrap/module-internal.js js/apps/system/aardvark/frontend/js/client/bootstrap/module-internal.js \
\
js/apps/system/aardvark/frontend/js/modules/underscore.js
BUILT_SOURCES += $(JAVASCRIPT_BROWSER) BUILT_SOURCES += $(JAVASCRIPT_BROWSER)
@ -122,6 +124,10 @@ js/apps/system/aardvark/frontend/js/modules/%.js: @srcdir@/js/common/modules/%.j
js/apps/system/aardvark/frontend/js/modules/%.js: @srcdir@/js/client/modules/%.js .setup-js-directories js/apps/system/aardvark/frontend/js/modules/%.js: @srcdir@/js/client/modules/%.js .setup-js-directories
(echo "module.define(\"$(patsubst js/client/modules/%.js,%,$<)\", function(exports, module) {" && cat $< && echo "});") > $@ (echo "module.define(\"$(patsubst js/client/modules/%.js,%,$<)\", function(exports, module) {" && cat $< && echo "});") > $@
js/apps/system/aardvark/frontend/js/modules/underscore.js: @srcdir@/js/node/node_modules/underscore/underscore-min.js
(echo "module.define(\"underscore\", function(exports, module) {" && cat $< && echo "});") > $@
## ----------------------------------------------------------------------------- ## -----------------------------------------------------------------------------
## --SECTION-- END-OF-FILE ## --SECTION-- END-OF-FILE
## ----------------------------------------------------------------------------- ## -----------------------------------------------------------------------------

File diff suppressed because one or more lines are too long