Print this page
make: translate using gettext, rather than the unmaintainable catgets

*** 22,31 **** --- 22,34 ---- 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,38 **** --- 36,48 ---- install: all lint: + $(POFILE): $(POFILES) + $(CAT) $(POFILES) > $@ + + _msg: $(MSGDOMAIN) $(POFILE) + $(RM) $(MSGDOMAIN)/$(POFILE) + $(CP) $(POFILE) $(MSGDOMAIN) + include $(SRC)/lib/Makefile.targ