UNPKG

214 BPlain TextView Raw
1SHELL := /bin/bash
2
3test:
4 @echo "----------------- 我是分界线 -----------------"
5 @rm -Rf lib/*
6 @babel -d lib src
7 @nodeunit test/*
8 @echo "----------------- 我是分界线 -----------------"
9
10.PHONY: test