annotate Makefile @ 1:998d5e743163

Don't think I'm gonna be able to use SVN for this one
author yakumo_izuru
date Fri, 30 May 2025 19:41:23 -0300
parents edf035b5437a
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