-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
60 lines (46 loc) · 1.64 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
SOCIALCALC_FILES=\
socialcalcconstants.js \
socialcalc-3.js \
socialcalctableeditor.js \
formatnumber2.js \
formula1.js \
socialcalcpopup.js \
socialcalcspreadsheetcontrol.js \
socialcalcviewer.js
ETHERCALC_FILES=\
$(SOCIALCALC_FILES) \
third-party/class-js/lib/Class.js \
third-party/wikiwyg/lib/Document/Emitter.js \
third-party/wikiwyg/lib/Document/Emitter/HTML.js \
third-party/wikiwyg/lib/Document/Parser.js \
third-party/wikiwyg/lib/Document/Parser/Wikitext.js \
static/jquery.js
JS_FILES=\
app.js dotcloud.js player.js main.js sc.js db.js
all :: SocialCalcModule.js
env PATH="$$PATH:./node_modules/LiveScript/bin" livescript -c -o . src
node app.js
vm :: SocialCalcModule.js
env PATH="$$PATH:./node_modules/LiveScript/bin" livescript -c -o . src
node app.js --vm
expire :: SocialCalcModule.js
env PATH="$$PATH:./node_modules/LiveScript/bin" livescript -c -o . src
node app.js --expire 10
./node_modules/streamline/bin/_node :
npm i --dev
depends :: app.js static/ethercalc.js static/start.css
SocialCalcModule.js :: $(SOCIALCALC_FILES) exports.js
cat $(SOCIALCALC_FILES) exports.js > $@
#@perl -e 'system(join(" ", "closure-compiler" => map { ("--js", $$_) } @ARGV). " > $@")' $(SOCIALCALC_FILES) exports.js
static/ethercalc.js :: $(ETHERCALC_FILES)
@echo "// Auto-generated from "make depends"; all changes here will be lost." > $@
@perl -e 'system(join(" ", "closure-compiler" => "--language_in=ES5" => map { ("--js", $$_) } @ARGV). " >> $@")' $(ETHERCALC_FILES)
.coffee.js:
coffee -c $<
.sass.css:
sass -t compressed $< > $@
clean ::
@-rm $(JS_FILES)
push ::
dotcloud push ethercalc
.SUFFIXES: .js .coffee .css .sass .ls