2017-10-31 18:00:53 +00:00
|
|
|
.PHONY: init
|
|
|
|
init:
|
2020-07-09 06:54:30 +00:00
|
|
|
git rm -f *.gif logo.{png,svg} app.*.{js,css} fontawesome-webfont.* index.html styles.css vendor.*.{css,js} || echo
|
2017-10-31 18:00:53 +00:00
|
|
|
cp dist/* .
|
|
|
|
sed -i.foo 's#href="/#href="#g; s#src="/#src="#g' index.html
|
|
|
|
sed -i.foo 's#url(/font#url(font#g' *.css
|
2020-07-09 06:54:30 +00:00
|
|
|
git add *.gif logo.{png,svg} app.*.{js,css} fontawesome-webfont.* index.html styles.css vendor.*.{css,js}
|
2017-10-31 18:00:53 +00:00
|
|
|
@make clean
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
rm -f *.foo *.map
|