summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile33
1 files changed, 1 insertions, 32 deletions
diff --git a/Makefile b/Makefile
index 25a2a5c..e0088e7 100644
--- a/Makefile
+++ b/Makefile
@@ -4,8 +4,6 @@ install_global=false
.PHONY: all
all:
@echo "This is a python project, no compilation required"
- @echo "SCSS/SASS Initial Setup: make sass-setup"
- @echo "SCSS/SASS Build (for static files): make sass-build"
@echo "Installation: make install"
.PHONY: install
@@ -40,7 +38,7 @@ dist:
.PHONY: pretty
pretty:
- yapf -r -i talerblog/
+ black talermerchantdemos
# i18n
extract:
@@ -59,32 +57,3 @@ compile: update
update: extract
pybabel update -i translations/messages.pot -d translations/
-# SASS/SCSS
-
-.PHONY: sass-setup
-sass-setup:
- @echo "This is the initial sass-installation/setup script."
- @echo "This setup must run as root, on a machine that has NPM installed!"
- @echo "If your password is requested (for escalation), please enter it."
- npm install -g sass
-
-.PHONY: scss-setup
-scss-setup: sass-setup
-
-.PHONY: sass-build
-sass-build:
- @echo "Warning: If Sass/Scss is not installed, please run \`make sass-setup\` first!"
- @echo "This script will only convert files inside /static"
- sass --update talermerchantdemos/static:talermerchantdemos/static
-
-.PHONY: scss-build
-scss-build: sass-build
-
-.PHONY: sass-autobuild
-sass-autobuild:
- @echo "Warning: If Sass/Scss is not installed, please run \`make sass-setup\` first!"
- @echo "This script will automatically build sass/scss files in the static directory!"
- sass --watch talermerchantdemos/static:talermerchantdemos/static
-
-.PHONY: scss-autobuild
-scss-autobuild: sass-autobuild