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