Guest User

Untitled

a guest
May 21st, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. MSGLANGS = $(wildcard */locale/*/LC_MESSAGES/*.po)
  2. MSGOBJS = $(MSGLANGS:.po=.mo)
  3.  
  4. gettext: $(MSGOBJS)
  5.  
  6. gettext-clean:
  7. -rm ${MSGOBJS}
  8.  
  9. %.mo: %.po
  10. msgfmt -c -o $@ $*.po
Add Comment
Please, Sign In to add comment