annotate Makefile @ 4:6cb09daeb401 default tip

Forgot I don't know regex
author yakumo_izuru
date Sun, 08 Jun 2025 13:11:08 -0300
parents 380da6d0a7e9
children
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"
2
380da6d0a7e9 Swapped fonts, return of the webring
yakumo_izuru
parents: 0
diff changeset
3 .for i in build clean serve upload
0
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
2
380da6d0a7e9 Swapped fonts, return of the webring
yakumo_izuru
parents: 0
diff changeset
12 upload:
380da6d0a7e9 Swapped fonts, return of the webring
yakumo_izuru
parents: 0
diff changeset
13 @cd site; aya upload
0
edf035b5437a It starts with
yakumo_izuru
parents:
diff changeset
14