-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathMakefile
87 lines (69 loc) · 2.15 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
package = $(shell node -p -e 'require("./package.json").$(1)')
NAME = $(call package,display_name)
VERSION = $(call package,version)
LICENSE = $(call package,license)
HOMEPAGE = $(call package,homepage)
COPYRIGHT = 2012-$(shell TZ=UTC date +%Y)
define HEADER
/* $(NAME) - v$(VERSION)
* Copyright $(COPYRIGHT), Compendio <www.compendio.ch>
* Released under the $(LICENSE) license
* More Information: $(HOMEPAGE)
*/
endef
export HEADER
define USAGE
Usage instructions:
make watch watches and recompiles coffee files into lib
make serve runs a development server on port 8000
make serve PORT=[port] runs a development server on the port specified
make clean removes the pkg directory
make build creates a development build
make build MINIFY=true creates a production build
make pkg creates a production zipped build
make help displays this message
endef
export USAGE
PORT ?= 8000
PKGDIR = pkg
COFFEE = `npm bin`/coffee
UGLIFY = `npm bin`/uglifyjs
PROCESSOR = cat
PACKAGE = $(PKGDIR)/annotator.touch
OUTPUT = $(PACKAGE).js
MIN_OUTPUT = $(PACKAGE).min.js
CSS_OUTPUT = $(PACKAGE).css
ifeq ($(MINIFY), true)
OUTPUT = $(MIN_OUTPUT)
PROCESSOR = $(UGLIFY)
endif
default: help
help:
@echo "$$USAGE"
pkgdir:
@mkdir -p $(PKGDIR)
clean:
@rm -rf $(PKGDIR)
serve:
@echo "Tests are available at http://localhost:$(PORT)/test/index.html"
@python -m SimpleHTTPServer $(PORT)
watch:
@$(COFFEE) --watch --output ./lib ./src
javascript: pkgdir
@echo "$$HEADER" > $(OUTPUT)
@cat src/touch.coffee src/touch/*.coffee | \
$(COFFEE) --stdio --print | \
$(PROCESSOR) >> $(OUTPUT)
@echo "Created $(OUTPUT)"
stylesheet: pkgdir
@echo "$$HEADER" > $(CSS_OUTPUT)
@$(COFFEE) tools/inline.coffee css/annotator.touch.css >> $(CSS_OUTPUT)
@echo "Created $(CSS_OUTPUT)"
build: javascript stylesheet
pkg:
@make javascript
@make javascript MINIFY=true
@make stylesheet
@zip -qjJ $(PACKAGE).$(VERSION).zip $(OUTPUT) $(MIN_OUTPUT) $(CSS_OUTPUT) LICENSE
@echo "Created $(PACKAGE).$(VERSION).zip"
.PHONY: help pkgdir clean serve watch build stylesheet javascript pkg