diff options
Diffstat (limited to 'Makefile.example')
-rw-r--r-- | Makefile.example | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.example b/Makefile.example index 01b9363..3a93ded 100644 --- a/Makefile.example +++ b/Makefile.example @@ -1,4 +1,5 @@ SHELL := /bin/bash +CURRENT_APP="drassm_showcase" PYTHON=python3 APPS="home" "showcase" "pergamon" @@ -33,7 +34,7 @@ run: ## run local test server (port 9000) $(PYTHON) manage.py runserver 0.0.0.0:9000 sass: ## compile sass files - ./node_modules/node-sass/bin/node-sass scss/pergamon.scss --output-style compressed > pergamon/static/css/pergamon.css + ./node_modules/node-sass/bin/node-sass scss/pergamon.scss --output-style compressed > $(CURRENT_APP)/static/css/pergamon.css makemessages: ## create messages to be translated for DIR in $(APPS); do \ |