]> git.phdru.name Git - m_librarian.git/commitdiff
Fix(web): Replace compyle with `python -m compile`
authorOleg Broytman <phd@phdru.name>
Fri, 15 Jun 2018 11:55:47 +0000 (14:55 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 15 Jun 2018 11:55:47 +0000 (14:55 +0300)
m_librarian/web/views/Makefile

index fc8b7beb95f19a0c0bd12e147dbe2a3e6b3c51f1..8f6ed13abde592c0c21033db7834bedf62161ebe 100644 (file)
@@ -3,7 +3,9 @@
 
 
 %.py: %.tmpl
-       cheetah compile --nobackup $< && compyle $@
+       cheetah compile --nobackup $<
+       python    -m compile $@
+       python -O -m compile $@
 
 
 templates = $(shell echo *.tmpl)