Print this page
make: translate using gettext, rather than the unmaintainable catgets
@@ -22,10 +22,13 @@
read.o
include $(SRC)/lib/Makefile.lib
include ../../Makefile.com
+POFILE = libmksh.po
+POFILES = $(OBJECTS:%.o=%.po)
+
LIBS = $(LIBRARY)
SRCDIR = ../
MAPFILES=
CPPFLAGS += -D_FILE_OFFSET_BITS=64
@@ -33,6 +36,13 @@
install: all
lint:
+$(POFILE): $(POFILES)
+ $(CAT) $(POFILES) > $@
+
+_msg: $(MSGDOMAIN) $(POFILE)
+ $(RM) $(MSGDOMAIN)/$(POFILE)
+ $(CP) $(POFILE) $(MSGDOMAIN)
+
include $(SRC)/lib/Makefile.targ