forked from yui/nodejs-yui3
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (25 loc) · 701 Bytes
/
Makefile
File metadata and controls
37 lines (25 loc) · 701 Bytes
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
all: deps clean bare base full
full: deps
@./scripts/make_package.sh full
bare: deps
@./scripts/make_package.sh bare
base: deps
@./scripts/make_package.sh base
publish: deps all test
@./scripts/publish.sh
dev: deps clean full
@echo "make clean && make full DONE"
@echo "Now you can: npm install /path/to/source/yui3/build/full to install it locally"
@echo "Or you can: npm link /path/to/source/yui3/build/full to link it into your project"
test: deps
@./scripts/test.sh
tests: test
isntall: install
install: deps all
@./scripts/install.sh
deps: ./scripts/deps.sh
clean:
rm -rRf ./build/
help:
@cat ./INSTALL
.PHONY: all install test bare base full publish clean deps test help