comparison Makefile @ 0:edf035b5437a

It starts with
author yakumo_izuru
date Fri, 30 May 2025 19:26:52 -0300
parents
children 380da6d0a7e9
comparison
equal deleted inserted replaced
-1:000000000000 0:edf035b5437a
1 all:
2 @echo "Available targets"
3 .for i in build clean serve
4 @echo "* ${i}"
5 .endfor
6 build:
7 @cd site; aya build
8 clean:
9 @cd site; aya clean
10 serve:
11 @cd site; aya serve
12