19 lines
647 B
Makefile
19 lines
647 B
Makefile
# 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
|