1 | #
|
2 | # Licensed under the Apache License, Version 2.0 (the "License");
|
3 | # you may not use this file except in compliance with the License.
|
4 | # You may obtain a copy of the License at
|
5 | #
|
6 | # http://www.apache.org/licenses/LICENSE-2.0
|
7 | #
|
8 | # Unless required by applicable law or agreed to in writing, software
|
9 | # distributed under the License is distributed on an "AS IS" BASIS,
|
10 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
11 | # See the License for the specific language governing permissions and
|
12 | # limitations under the License.
|
13 | #
|
14 |
|
15 | #
|
16 | CP=cp
|
17 |
|
18 | ## Top
|
19 | all:
|
20 |
|
21 | ## Cleanup
|
22 | clean-npm:
|
23 | - @rm -f package-lock.json
|
24 | - @rm -rf dist
|
25 |
|
26 | cleanall-npm: clean-npm
|
27 | - @rm -rf node_modules
|
28 | - @rm -rf .nyc_output
|
29 | - @rm -rf coverage
|
30 | - @rm -rf log
|
31 |
|
32 | clean:
|
33 | - @$(MAKE) clean-npm
|
34 |
|
35 | cleanall:
|
36 | - @$(MAKE) cleanall-npm
|
37 |
|