site_fursona_refs/sass/Makefile

20 lines
548 B
Makefile
Raw Normal View History

2019-12-28 14:10:02 +00:00
SASSS := $(shell find . -type f | grep -E "\.sass$$" | cut -c 3- | rev | cut -c 6- | rev | sed -e "s/$$/.css/" | tee styles.txt)
sasss: $(SASSS)
@echo -ne
sass-rs:
2020-01-04 22:33:57 +00:00
CARGO_HOME=root RUSTUP_HOME=root rustup default nightly
CARGO_HOME=root RUSTUP_HOME=root cargo install --root root sass-rs
2019-12-28 14:10:02 +00:00
mv root/bin/sass-rs .
rm -rf root
%.css: %.sass sass-rs _material-colors.scss
./sass-rs --sass < $< > $@
%.sass:
@touch $@
_material-colors.scss:
2020-01-04 22:33:57 +00:00
wget https://raw.githubusercontent.com/funkybunch/SASS-Material-Palette/master/_material-colors.scss