From 632eef6424d8dc8d40c2906177892697679e7b85 Mon Sep 17 00:00:00 2001 From: Joris Date: Sat, 19 Apr 2025 12:36:38 +0200 Subject: Add ZIG server --- frontend/Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 frontend/Makefile (limited to 'frontend/Makefile') diff --git a/frontend/Makefile b/frontend/Makefile new file mode 100644 index 0000000..53c25e4 --- /dev/null +++ b/frontend/Makefile @@ -0,0 +1,16 @@ +build: ../backend/public/index.html ../backend/public/main.css ../backend/public/main.js ../backend/public/icon.png + +../backend/public/index.html: html/index.html + cp $^ $@ + +../backend/public/main.css: $(shell find styles) + bin/compile-sass + +../backend/public/main.js: $(shell find ts) + bin/compile-ts + +../backend/public/icon.png: images/icon.png + cp $^ $@ + +clean: + rm -f ../backend/public/* -- cgit v1.2.3