13 lines
236 B
Makefile
13 lines
236 B
Makefile
alias b := build
|
|
alias c := clean
|
|
|
|
|
|
build:
|
|
mkdir -p build
|
|
tsc --outFile build/rechner.js src/rechner.ts
|
|
cat src/data/* | toml2json > build/gewichtungen.json
|
|
cp src/index.html build/index.html
|
|
|
|
clean:
|
|
rm -rf ./build
|
|
|