forked from mathquill/mathquill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
167 lines (133 loc) · 3.59 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
#
# -*- Configuration -*-
#
# inputs
SRC_DIR = ./src
INTRO = $(SRC_DIR)/intro.js
OUTRO = $(SRC_DIR)/outro.js
SOURCES = \
./node_modules/pjs/src/p.js \
$(SRC_DIR)/textarea.js \
$(SRC_DIR)/parser.js \
$(SRC_DIR)/tree.js \
$(SRC_DIR)/math.js \
$(SRC_DIR)/rootelements.js \
$(SRC_DIR)/commands.js \
$(SRC_DIR)/symbols.js \
$(SRC_DIR)/latex.js \
$(SRC_DIR)/cursor.js \
$(SRC_DIR)/publicapi.js
CSS_DIR = $(SRC_DIR)/css
CSS_MAIN = $(CSS_DIR)/main.less
CSS_SOURCES = $(shell find $(CSS_DIR) -name '*.less')
FONT_SOURCE = $(SRC_DIR)/font
FONT_TARGET = $(BUILD_DIR)/font
UNIT_TESTS = ./test/unit/*.test.js
# outputs
VERSION ?= $(shell node -e "console.log(require('./package.json').version)")
BUILD_DIR = ./build
BUILD_JS = $(BUILD_DIR)/mathquill.js
BUILD_CSS = $(BUILD_DIR)/mathquill.css
BUILD_TEST = $(BUILD_DIR)/mathquill.test.js
UGLY_JS = $(BUILD_DIR)/mathquill.min.js
CLEAN += $(BUILD_DIR)/*
DISTDIR = ./mathquill-$(VERSION)
DIST = $(DISTDIR).tgz
CLEAN += $(DIST)
# programs and flags
UGLIFY ?= ./node_modules/.bin/uglifyjs
UGLIFY_OPTS ?= --lift-vars
LESSC ?= ./node_modules/.bin/lessc
LESS_OPTS ?=
# environment constants
#
# -*- Build tasks -*-
#
.PHONY: all cat uglify css font dist clean
all: font css uglify
# dev is like all, but without minification
dev: font css js
js: $(BUILD_JS)
uglify: $(UGLY_JS)
css: $(BUILD_CSS)
font: $(FONT_TARGET)
dist: $(DIST)
clean:
rm -rf $(CLEAN)
$(BUILD_JS): $(INTRO) $(SOURCES) $(OUTRO)
cat $^ > $@
$(UGLY_JS): $(BUILD_JS)
$(UGLIFY) $(UGLIFY_OPTS) < $< > $@
$(BUILD_CSS): $(CSS_SOURCES)
$(LESSC) $(LESS_OPTS) $(CSS_MAIN) > $@
$(FONT_TARGET): $(FONT_SOURCE)
rm -rf $@
cp -r $< $@
$(DIST): $(UGLY_JS) $(BUILD_JS) $(BUILD_CSS) $(FONT_TARGET)
tar -czf $(DIST) \
--xform 's:^\./build:$(DISTDIR):' \
--exclude='\.gitkeep' \
./build/
#
# -*- Test tasks -*-
#
.PHONY: test server
server:
./node_modules/.bin/supervisor -e js,less,Makefile .
test: dev $(BUILD_TEST)
@echo
@echo "** now open test/{unit,visual}.html in your browser to run the {unit,visual} tests. **"
$(BUILD_TEST): $(INTRO) $(SOURCES) $(UNIT_TESTS) $(OUTRO)
cat $^ > $@
#
# -*- site (mathquill.github.com) tasks
#
.PHONY: site publish site-pull
SITE = mathquill.github.com
SITE_CLONE_URL = [email protected]:mathquill/mathquill.github.com
SITE_COMMITMSG = 'updating mathquill to $(VERSION)'
DOWNLOADS_PAGE = $(SITE)/downloads.html
DIST_DOWNLOAD = $(SITE)/downloads/$(DIST)
site: $(SITE) $(SITE)/mathquill $(SITE)/demo.html $(SITE)/support $(DOWNLOADS_PAGE)
publish: site-pull site
pwd
cd $(SITE) \
&& git add -- mathquill demo.html support downloads downloads.html \
&& git commit -m $(SITE_COMMITMSG) \
&& git push
$(SITE)/mathquill: $(DIST)
mkdir -p $@
tar -xzf $(DIST) \
--directory $@ \
--strip-components=2
$(DIST_DOWNLOAD): $(DIST)
mkdir -p $(dir $@)
cp $^ $@
$(DOWNLOADS_PAGE): $(DIST_DOWNLOAD)
@echo -n updating downloads page...
@sed -ri $(DOWNLOADS_PAGE) \
-e '/Latest version:/ s/[0-9]+[.][0-9]+[.][0-9]+/$(VERSION)/g'
@mkdir -p tmp
@ls $(SITE)/downloads/*.tgz \
| egrep -o '[0-9]+[.][0-9]+[.][0-9]+' \
| fgrep -v $(VERSION) \
| sort --version-sort \
| sed 's|.*|<li><a class="prev" href="downloads/mathquill-&.tgz">v&</a></li>|' \
> tmp/versions-list.html
@sed -ir $(DOWNLOADS_PAGE) \
-e '/<a class="prev"/d' \
-e '/<ul id="prev-versions">/ r tmp/versions-list.html'
@rm tmp/versions-list.html
@echo done.
$(SITE)/demo.html: test/demo.html
cat $^ \
| sed 's:../build/:mathquill/:' \
| sed 's:local test page:live demo:' \
> $@
$(SITE)/support: test/support
rm -rf $@
cp -r $^ $@
$(SITE):
git clone $(SITE_CLONE_URL) $@
site-pull: $(SITE)
cd $(SITE) && git pull