File: Makefile

package info (click to toggle)
node-strftime 0.10.3%2B~0.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 220 kB
  • sloc: javascript: 868; makefile: 13
file content (15 lines) | stat: -rw-r--r-- 364 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
minify: real-minify test-minified

real-minify: strftime.js
	rm -f strftime-min.js
	closure-compiler <strftime.js >|strftime-min.js

test:
	TZ=America/Vancouver node test.js
	TZ=Europe/Amsterdam node test.js

test-minified: minify
	TZ=America/Vancouver node test.js ./strftime-min.js
	TZ=Europe/Amsterdam node test.js ./strftime-min.js

.PHONY: test test-minified