Improve make
This commit is contained in:
parent
9f69ce26b0
commit
53256578b6
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,5 +1,6 @@
|
|||||||
.vscode/
|
.vscode/
|
||||||
build/
|
build/
|
||||||
|
dist/
|
||||||
node_modules/
|
node_modules/
|
||||||
*.wat
|
*.wat
|
||||||
|
|
||||||
|
6
Makefile
6
Makefile
@ -1,7 +1,11 @@
|
|||||||
build:
|
build:
|
||||||
|
make clean
|
||||||
mkdir -p build
|
mkdir -p build
|
||||||
cp -r ./public/* ./build
|
cp -r ./public/* ./build
|
||||||
cd ./benchmarking && npm run build
|
cd ./benchmarking && npm run build
|
||||||
cp -r ./benchmarking/dist ./build/benchmarking
|
cp -r ./benchmarking/dist ./build/benchmarking
|
||||||
cd ./compare-algorithms && npm run build
|
cd ./compare-algorithms && npm run build
|
||||||
cp -r ./compare-algorithms/dist ./build/polygon-simplification
|
cp -r ./compare-algorithms/dist ./build/polygon-simplification
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf build
|
Loading…
Reference in New Issue
Block a user