2026-07-20 10:57:07 +10:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
2026-07-21 07:08:49 +10:00
|
|
|
mkdir -p server/src/generated
|
|
|
|
|
|
2026-07-20 20:31:25 +10:00
|
|
|
bin2cpp --file=client/header_top.html --output=server/src/generated
|
|
|
|
|
bin2cpp --file=client/header_bottom.html --output=server/src/generated
|
|
|
|
|
|
2026-07-21 19:50:36 +10:00
|
|
|
bin2cpp --file=client/footer.html --output=server/src/generated
|
|
|
|
|
bin2cpp --file=client/login.html --output=server/src/generated
|
|
|
|
|
bin2cpp --file=client/settings.html --output=server/src/generated
|
|
|
|
|
bin2cpp --file=client/e404.html --output=server/src/generated
|
|
|
|
|
bin2cpp --file=client/style.css --output=server/src/generated
|
|
|
|
|
bin2cpp --file=client/script.js --output=server/src/generated
|