1.PHONY: assets build local 2 3build: assets 4 hugo 5 6local: assets 7 hugo server -wD 8 9assets: 10 yarn install 11 yarn build 12 13init: 14 git config filter.dates.clean ./bin/dates.sh 15 git config filter.dates.smudge ./bin/dates.sh