mt-polygon-simplification/Makefile

12 lines
368 B
Makefile
Raw Normal View History

2019-08-05 11:19:47 +02:00
build:
2019-08-05 11:23:56 +02:00
make clean
2019-08-05 11:19:47 +02:00
mkdir -p build
cp -r ./public/* ./build
2019-08-05 13:48:22 +02:00
cp ./thesis/main.pdf ./build/mt-polygon-simplification-2019.pdf
2019-08-06 18:28:09 +02:00
cd ./benchmarking && npm install && npm run build
2019-08-05 11:19:47 +02:00
cp -r ./benchmarking/dist ./build/benchmarking
2019-08-06 18:28:09 +02:00
cd ./compare-algorithms && npm install && npm run build
2019-08-05 11:23:56 +02:00
cp -r ./compare-algorithms/dist ./build/polygon-simplification
clean:
rm -rf build