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

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/make/lib/vroot/Makefile
          +++ new/usr/src/cmd/make/lib/vroot/Makefile
↓ open down ↓ 31 lines elided ↑ open up ↑
  32   32                  stat.o          \
  33   33                  truncate.o      \
  34   34                  unlink.o        \
  35   35                  utimes.o        \
  36   36                  vroot.o         \
  37   37                  setenv.o
  38   38  
  39   39  include $(SRC)/lib/Makefile.lib
  40   40  include ../../Makefile.com
  41   41  
       42 +POFILE = libvroot.po
       43 +POFILES = $(OBJECTS:%.o=%.po)
       44 +
  42   45  LIBS = $(LIBRARY)
  43   46  SRCDIR = ../
  44   47  MAPFILES=
  45   48  CPPFLAGS += -D_FILE_OFFSET_BITS=64
  46   49  
  47   50  all: $(LIBS)
  48   51  
  49   52  install: all
  50   53  
  51   54  lint:
  52   55  
       56 +$(POFILE): $(POFILES)
       57 +        $(CAT) $(POFILES) > $@
       58 +
       59 +_msg: $(MSGDOMAIN) $(POFILE)
       60 +        $(RM) $(MSGDOMAIN)/$(POFILE)
       61 +        $(CP) $(POFILE) $(MSGDOMAIN)
       62 +
  53   63  include $(SRC)/lib/Makefile.targ
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX