Add root level makefile

This commit is contained in:
Alfred Melch 2019-08-05 11:19:47 +02:00
parent e7f3fe853b
commit 9f24807239
3 changed files with 25 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,4 +1,5 @@
.vscode/ .vscode/
build/
node_modules/ node_modules/
*.wat *.wat

7
Makefile Normal file
View File

@ -0,0 +1,7 @@
build:
mkdir -p build
cp -r ./public/* ./build
cd ./benchmarking && npm run build
cp -r ./benchmarking/dist ./build/benchmarking
cd ./compare-algorithms && npm run build
cp -r ./compare-algorithms/dist ./build/polygon-simplification

17
public/index.html Normal file
View File

@ -0,0 +1,17 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Master thesis</title>
</head>
<body>
<h1>Master thesis</h1>
<ul>
<li><a href="./benchmarking/index.html">Benchmarking</a></li>
<li>
<a href="./polygon-simplification/index.html">Polygon simplification</a>
</li>
</ul>
</body>
</html>