]> code.citadel.org Git - citadel.git/blobdiff - webcit/po/webcit/Makefile.in
Revert "serv_rssclient.c: style update"
[citadel.git] / webcit / po / webcit / Makefile.in
diff --git a/webcit/po/webcit/Makefile.in b/webcit/po/webcit/Makefile.in
new file mode 100644 (file)
index 0000000..801ac9c
--- /dev/null
@@ -0,0 +1,16 @@
+SRCS:=  $(wildcard *.po)
+OBJS:=  $(patsubst %.po, ../../locale/%/LC_MESSAGES/webcit.mo, $(SRCS))
+
+.SUFFIXES: .po .mo
+
+.PHONY: all
+
+all: $(OBJS)
+
+clean:
+       rm -r ../../locale/*
+
+../../locale/%/LC_MESSAGES/webcit.mo: %.po
+       mkdir -p $(patsubst %.po, ../../locale/%/LC_MESSAGES, $<)
+       msgfmt -o $@ $<
+