annotate Makefile @ 2:380da6d0a7e9

Swapped fonts, return of the webring
author yakumo_izuru
date Sat, 07 Jun 2025 22:47:50 -0300
parents edf035b5437a
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