Print this page
*** NO COMMENTS ***

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/ypcmd/revnetgroup/Makefile
          +++ new/usr/src/cmd/ypcmd/revnetgroup/Makefile
↓ open down ↓ 15 lines elided ↑ open up ↑
  16   16  # If applicable, add the following below this CDDL HEADER, with the
  17   17  # fields enclosed by brackets "[]" replaced with your own identifying
  18   18  # information: Portions Copyright [yyyy] [name of copyright owner]
  19   19  #
  20   20  # CDDL HEADER END
  21   21  #
  22   22  #
  23   23  # Copyright 1996, 2002 Sun Microsystems, Inc.  All rights reserved.
  24   24  # Use is subject to license terms.
  25   25  #
  26      -# ident "%Z%%M% %I%     %E% SMI"
       26 +# Copyright 2012 Nexenta Systems, Inc.  All rights reserved.
  27   27  #
  28   28  
  29   29  PROG = revnetgroup
  30   30  
  31   31  include ../../Makefile.cmd
  32   32  
  33   33  OBJS = revnetgroup.o getgroup.o table.o util.o
  34   34  SRCS = $(OBJS:.o=.c)
  35      -HDRS = getgroup.h table.h util.h
       35 +HDRS = getgroup.h table.h util.h revnetgroup.h
  36   36  
       37 +OBJS_PROG = main.o
       38 +SRCS_PROG = $(OBJS_PROG:.o=.c)
       39 +
  37   40  .KEEP_STATE:
  38   41  
  39   42  all: $(PROG)
  40   43  
  41      -$(PROG): $(OBJS)
  42      -        $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
       44 +LDLIBS +=       -lrevnetgroup
       45 +
       46 +$(PROG): $(OBJS_PROG) $(HDRS)
       47 +        $(LINK.c) $(OBJS_PROG) -o $@ $(LDLIBS)
  43   48          $(POST_PROCESS)
  44   49  
  45   50  install: all $(ROOTUSRSBINPROG)
  46   51  
  47   52  clean: 
  48   53          $(RM) $(OBJS)
  49   54  
  50   55  lint:
  51   56          ${LINT.c} ${SRCS}
  52   57  
  53   58  cstyle:
  54   59          ${CSTYLE} ${SRCS}
  55   60  
  56   61  clobber: clean
  57   62          $(RM) $(PROG)
  58   63  
  59   64  FRC:
    
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX