ayerh.art/Makefile

19 lines
647 B
Makefile
Raw Permalink Normal View History

2020-11-23 21:50:53 -05:00
# most of my sites are super simple static html with some styles
# just compile the sass and copy content over
all: ayerh.art steve.ayerh.art music.ayerh.art
ayerh.art:
@echo "Building ayerh.art"
@mkdir -p public/sites/ayerh.art/style
@sassc style/scss/waves.scss public/ayerh.art/style/waves.css
steve.ayerh.art:
@echo "Building steve.ayerh.art"
@mkdir -p public/sites/steve.ayerh.art/style
@sassc style/scss/perspective.scss public/steve.ayerh.art/style/perspective.css
music.ayerh.art:
@echo "Building music.ayerh.art"
@mkdir -p public/sites/music.ayerh.art/style
@sassc style/scss/music.scss public/steve.ayerh.art/style/music.css