RSSPAPER/Makefile

18 lines
500 B
Makefile
Raw Normal View History

2021-10-06 23:07:53 +02:00
.DEFAULT_GOAL := build
build: ## Check style with black
2021-10-07 07:42:59 +02:00
make build.templates
2021-10-06 23:07:53 +02:00
lein uberjar
make rm.statics
build.templates:
make rm.statics
zip -r resources/themes/dark/static.zip resources/themes/dark/static/
zip -r resources/themes/sepia/static.zip resources/themes/sepia/static/
zip -r resources/themes/light/static.zip resources/themes/light/static/
rm.statics:
rm -rf resources/themes/dark/static.zip
rm -rf resources/themes/sepia/static.zip
rm -rf resources/themes/light/static.zip