annotate Makefile @ 0:edf035b5437a

It starts with
author yakumo_izuru
date Fri, 30 May 2025 19:26:52 -0300
parents
children 380da6d0a7e9
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
1 all:
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
2 @echo "Available targets"
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
3 .for i in build clean serve
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
4 @echo "* ${i}"
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
5 .endfor
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
6 build:
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
7 @cd site; aya build
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
8 clean:
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
9 @cd site; aya clean
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
10 serve:
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
11 @cd site; aya serve
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
12