프로젝트

일반

사용자정보

통계
| 개정판:

root / HServer / 00.Server / 00.Program / node_modules / component-inherit / Makefile

이력 | 보기 | 이력해설 | 다운로드 (218 Bytes)

1

    
2
build: components index.js
3
	@component build
4

    
5
components:
6
	@Component install
7

    
8
clean:
9
	rm -fr build components template.js
10

    
11
test:
12
	@node_modules/.bin/mocha \
13
		--require should \
14
		--reporter spec
15

    
16
.PHONY: clean test