diff Makefile @ 0:edf035b5437a

It starts with
author yakumo_izuru
date Fri, 30 May 2025 19:26:52 -0300
parents
children 380da6d0a7e9
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Makefile	Fri May 30 19:26:52 2025 -0300
@@ -0,0 +1,12 @@
+all:
+	@echo "Available targets"
+.for i in build clean serve
+	@echo "* ${i}"
+.endfor
+build:
+	@cd site; aya build
+clean:
+	@cd site; aya clean
+serve:
+	@cd site; aya serve
+