Skip to content
Snippets Groups Projects
Makefile 286 B
Newer Older
  • Learn to ignore specific revisions
  • all: localecompile
    LNGS:=`find pretix_public_registrations/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