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


  22                 creat.o         \
  23                 execve.o        \
  24                 lock.o          \
  25                 lstat.o         \
  26                 mkdir.o         \
  27                 mount.o         \
  28                 open.o          \
  29                 readlink.o      \
  30                 report.o        \
  31                 rmdir.o         \
  32                 stat.o          \
  33                 truncate.o      \
  34                 unlink.o        \
  35                 utimes.o        \
  36                 vroot.o         \
  37                 setenv.o
  38 
  39 include $(SRC)/lib/Makefile.lib
  40 include ../../Makefile.com
  41 



  42 LIBS = $(LIBRARY)
  43 SRCDIR = ../
  44 MAPFILES=
  45 CPPFLAGS += -D_FILE_OFFSET_BITS=64
  46 
  47 all: $(LIBS)
  48 
  49 install: all
  50 
  51 lint:
  52 







  53 include $(SRC)/lib/Makefile.targ


  22                 creat.o         \
  23                 execve.o        \
  24                 lock.o          \
  25                 lstat.o         \
  26                 mkdir.o         \
  27                 mount.o         \
  28                 open.o          \
  29                 readlink.o      \
  30                 report.o        \
  31                 rmdir.o         \
  32                 stat.o          \
  33                 truncate.o      \
  34                 unlink.o        \
  35                 utimes.o        \
  36                 vroot.o         \
  37                 setenv.o
  38 
  39 include $(SRC)/lib/Makefile.lib
  40 include ../../Makefile.com
  41 
  42 POFILE = libvroot.po
  43 POFILES = $(OBJECTS:%.o=%.po)
  44 
  45 LIBS = $(LIBRARY)
  46 SRCDIR = ../
  47 MAPFILES=
  48 CPPFLAGS += -D_FILE_OFFSET_BITS=64
  49 
  50 all: $(LIBS)
  51 
  52 install: all
  53 
  54 lint:
  55 
  56 $(POFILE): $(POFILES)
  57         $(CAT) $(POFILES) > $@
  58 
  59 _msg: $(MSGDOMAIN) $(POFILE)
  60         $(RM) $(MSGDOMAIN)/$(POFILE)
  61         $(CP) $(POFILE) $(MSGDOMAIN)
  62 
  63 include $(SRC)/lib/Makefile.targ