-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (35 loc) · 1.08 KB
/
Copy pathMakefile
File metadata and controls
50 lines (35 loc) · 1.08 KB
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
default: all
SRC = $(shell find src -name "*.ls" -type f | sort)
LIB = $(SRC:src/%.ls=lib/%.js)
LS = node_modules/livescript
LSC = node_modules/.bin/lsc
BROWSERIFY = node_modules/.bin/browserify
UGLIFYJS = node_modules/.bin/uglifyjs
MOCHA = node_modules/.bin/mocha
lib:
mkdir -p lib/
lib/%.js: src/%.ls lib
$(LSC) --output lib --bare --compile "$<"
browser:
mkdir browser/
prelude-browser.js: $(LIB) browser preroll.ls
{ $(LSC) ./preroll.ls ; $(BROWSERIFY) -r ./lib/index.js:prelude-ls ; } > browser/prelude-browser.js
prelude-browser-min.js: browser/prelude-browser.js
$(UGLIFYJS) browser/prelude-browser.js --mangle --comments "all" > browser/prelude-browser-min.js
package.json: package.json.ls
$(LSC) --compile package.json.ls
.PHONY: build build-browser test dev-install loc clean
all: build
build: $(LIB) package.json
build-browser: prelude-browser.js prelude-browser-min.js
test: build
$(MOCHA) --ui tdd --require livescript "test/**/*.ls"
dev-install: package.json
npm install .
loc:
wc --lines src/*
clean:
rm -f ./*.js
rm -rf lib
rm -rf browser
rm -f package.json