Add root level makefile
This commit is contained in:
parent
e7f3fe853b
commit
9f24807239
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,4 +1,5 @@
|
|||||||
.vscode/
|
.vscode/
|
||||||
|
build/
|
||||||
node_modules/
|
node_modules/
|
||||||
*.wat
|
*.wat
|
||||||
|
|
||||||
|
7
Makefile
Normal file
7
Makefile
Normal 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
17
public/index.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user