Print this page
make: ship the Joyent patch to enable parallel make (originally from rm)


   5 # 1.0 of the CDDL.
   6 #
   7 # A full copy of the text of the CDDL should have accompanied this
   8 # source.  A copy of the CDDL is also available via the Internet at
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 # Copyright 2015, Richard Lowe.
  13 
  14 PROG=   make
  15 OBJS=   ar.o            \
  16         depvar.o        \
  17         dist.o          \
  18         doname.o        \
  19         dosys.o         \
  20         files.o         \
  21         globals.o       \
  22         implicit.o      \
  23         macro.o         \
  24         main.o          \
  25         make.o          \
  26         misc.o          \
  27         nse_printdep.o  \
  28         parallel.o      \
  29         pmake.o         \
  30         read.o          \
  31         read2.o         \
  32         rep.o           \
  33         state.o
  34 
  35 include ../../Makefile.cmd
  36 include ../Makefile.com
  37 
  38 LDLIBS += ../lib/mksh/libmksh.a ../lib/mksdmsi18n/libmksdmsi18n.a ../lib/vroot/libvroot.a
  39 LDLIBS += ../lib/bsd/libbsd.a -lc
  40 
  41 CPPFLAGS += -D_FILE_OFFSET_BITS=64
  42 
  43 ROOTLINKS = $(ROOTCCSBIN)/make $(ROOTXPG4BIN)/make $(ROOTBIN)/dmake $(ROOTCCSLIB)/svr4.make \
  44         $(ROOTLIB)/svr4.make
  45 
  46 ROOTRULES = $(ROOTSHLIB)/make/make.rules $(ROOTSHLIB)/make/svr4.make.rules
  47 
  48 all:    $(PROG)
  49 
  50 install: all $(ROOTPROG) $(ROOTLINKS) $(ROOTRULES)
  51 
  52 $(PROG):        $(OBJS)
  53         $(LINK.cc) $(OBJS) -o $@ $(LDLIBS)
  54         $(POST_PROCESS)
  55 
  56 $(ROOTCCSBIN)/make:
  57         -$(RM) $@; $(SYMLINK) ../../bin/make $@
  58 
  59 $(ROOTCCSLIB)/svr4.make:




   5 # 1.0 of the CDDL.
   6 #
   7 # A full copy of the text of the CDDL should have accompanied this
   8 # source.  A copy of the CDDL is also available via the Internet at
   9 # http://www.illumos.org/license/CDDL.
  10 #
  11 
  12 # Copyright 2015, Richard Lowe.
  13 
  14 PROG=   make
  15 OBJS=   ar.o            \
  16         depvar.o        \
  17         dist.o          \
  18         doname.o        \
  19         dosys.o         \
  20         files.o         \
  21         globals.o       \
  22         implicit.o      \
  23         macro.o         \
  24         main.o          \

  25         misc.o          \
  26         nse_printdep.o  \
  27         parallel.o      \
  28         pmake.o         \
  29         read.o          \
  30         read2.o         \
  31         rep.o           \
  32         state.o
  33 
  34 include ../../Makefile.cmd
  35 include ../Makefile.com
  36 
  37 LDLIBS += ../lib/mksh/libmksh.a ../lib/mksdmsi18n/libmksdmsi18n.a ../lib/vroot/libvroot.a
  38 LDLIBS += ../lib/bsd/libbsd.a -lc -lnsl -lumem
  39 
  40 CPPFLAGS += -D_FILE_OFFSET_BITS=64
  41 
  42 ROOTLINKS = $(ROOTCCSBIN)/make $(ROOTXPG4BIN)/make $(ROOTBIN)/dmake $(ROOTCCSLIB)/svr4.make \
  43         $(ROOTLIB)/svr4.make
  44 
  45 ROOTRULES = $(ROOTSHLIB)/make/make.rules $(ROOTSHLIB)/make/svr4.make.rules
  46 
  47 all:    $(PROG)
  48 
  49 install: all $(ROOTPROG) $(ROOTLINKS) $(ROOTRULES)
  50 
  51 $(PROG):        $(OBJS)
  52         $(LINK.cc) $(OBJS) -o $@ $(LDLIBS)
  53         $(POST_PROCESS)
  54 
  55 $(ROOTCCSBIN)/make:
  56         -$(RM) $@; $(SYMLINK) ../../bin/make $@
  57 
  58 $(ROOTCCSLIB)/svr4.make: