You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
all: localecompile
|
|
LNGS:=`find pretix_poos/locale/ -mindepth 1 -maxdepth 1 -type d -printf "-l %f "`
|
|
|
|
localecompile:
|
|
django-admin compilemessages
|
|
|
|
localegen:
|
|
django-admin makemessages --keep-pot -i build -i dist -i "*egg*" $(LNGS)
|
|
|
|
.PHONY: all localecompile localegen
|