2015-09-16 01:24:31 +00:00
|
|
|
BROWSERIFY = ./node_modules/.bin/browserify
|
2015-09-15 19:18:34 +00:00
|
|
|
DEPLOY_DIR = libs
|
2015-02-06 15:46:50 +00:00
|
|
|
GLOBAL_FLAGS = -x jquery -e
|
2015-09-15 19:18:34 +00:00
|
|
|
NPM = npm
|
2014-12-17 16:21:25 +00:00
|
|
|
OUTPUT_DIR = .
|
2015-09-16 01:26:23 +00:00
|
|
|
UGLIFYJS = ./node_modules/.bin/uglifyjs
|
2014-12-17 16:21:25 +00:00
|
|
|
|
2015-09-14 20:42:16 +00:00
|
|
|
all: compile deploy clean uglify
|
2014-12-17 16:21:25 +00:00
|
|
|
|
2015-01-22 15:36:12 +00:00
|
|
|
compile:FLAGS = $(GLOBAL_FLAGS)
|
2015-01-28 14:35:22 +00:00
|
|
|
compile: app
|
2015-01-22 15:36:12 +00:00
|
|
|
|
|
|
|
debug: compile-debug deploy clean
|
|
|
|
|
|
|
|
compile-debug:FLAGS = -d $(GLOBAL_FLAGS)
|
2015-01-28 14:35:22 +00:00
|
|
|
compile-debug: app
|
2014-12-17 16:21:25 +00:00
|
|
|
|
2015-01-28 14:35:22 +00:00
|
|
|
app:
|
2015-03-09 16:41:17 +00:00
|
|
|
$(NPM) update && $(BROWSERIFY) $(FLAGS) app.js -s APP -o $(OUTPUT_DIR)/app.bundle.js
|
2014-12-17 16:21:25 +00:00
|
|
|
|
|
|
|
clean:
|
2015-08-03 18:16:00 +00:00
|
|
|
rm -f $(OUTPUT_DIR)/*.bundle.js
|
2014-12-17 16:21:25 +00:00
|
|
|
|
|
|
|
deploy:
|
2015-08-03 18:16:00 +00:00
|
|
|
mkdir -p $(DEPLOY_DIR) && \
|
|
|
|
cp $(OUTPUT_DIR)/*.bundle.js $(DEPLOY_DIR) && \
|
|
|
|
./bump-js-versions.sh && \
|
|
|
|
([ ! -x deploy-local.sh ] || ./deploy-local.sh)
|
2015-09-11 04:06:29 +00:00
|
|
|
|
|
|
|
uglify:
|
2015-09-15 19:18:34 +00:00
|
|
|
$(UGLIFYJS) -p relative libs/app.bundle.js -o libs/app.bundle.min.js --source-map libs/app.bundle.js.map --source-map-url=app.bundle.js.map
|
2015-09-11 04:06:29 +00:00
|
|
|
|
|
|
|
source-package:
|
|
|
|
mkdir -p source_package/jitsi-meet && \
|
|
|
|
cp -r analytics.js app.js css external_api.js favicon.ico fonts images index.html interface_config.js libs plugin.*html sounds title.html unsupported_browser.html LICENSE config.js lang source_package/jitsi-meet && \
|
|
|
|
(cd source_package ; tar cjf ../jitsi-meet.tar.bz2 jitsi-meet) && \
|
|
|
|
rm -rf source_package
|