RSSPAPER/Makefile

20 lines
650 B
Makefile
Raw Normal View History

2021-10-06 17:07:53 -04:00
.DEFAULT_GOAL := build
2021-10-25 12:38:01 -04:00
build:
2021-10-07 01:42:59 -04:00
make build.templates
2021-10-06 17:07:53 -04:00
lein uberjar
2021-10-25 12:38:01 -04:00
echo "Finish!"
2021-10-06 17:07:53 -04:00
build.templates:
make rm.statics
2021-10-25 12:38:01 -04:00
tar cf resources/themes/light/static.tar --directory=./resources/themes/light/ static
tar cf resources/themes/dark/static.tar --directory=./resources/themes/dark/ static
tar cf resources/themes/sepia/static.tar --directory=./resources/themes/sepia/ static
tar cf resources/themes/clojure/static.tar --directory=./resources/themes/clojure/ static
2021-10-06 17:07:53 -04:00
rm.statics:
2021-10-25 12:38:01 -04:00
rm -rf resources/themes/dark/static.tar
rm -rf resources/themes/sepia/static.tar
rm -rf resources/themes/light/static.tar
rm -rf resources/themes/clojure/static.tar