forked from incrementalcode/jay
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
19 lines (15 loc) · 663 Bytes
/
Makefile
File metadata and controls
19 lines (15 loc) · 663 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: dev production
dev:
cat src/namespaces.js src/typing.js src/ecma5.js src/functions.js src/iteration.js src/misc.js src/thread.js src/publisher.js src/json.js > build/jay.js
production:
jsmin < build/jay.js > build/jay-min.js
min:
jsmin < src/namespaces.js > build/namespaces-min.js
jsmin < src/typing.js > build/typing-min.js
jsmin < src/ecma5.js > build/ecma5-min.js
jsmin < src/functions.js > build/functions-min.js
jsmin < src/iteration.js > build/iteration-min.js
jsmin < src/misc.js > build/misc-min.js
jsmin < src/thread.js > build/thread-min.js
jsmin < src/publisher.js > build/publisher-min.js
jsmin < src/json.js > build/json-min.js