1 #
   2 # CDDL HEADER START
   3 #
   4 # The contents of this file are subject to the terms of the
   5 # Common Development and Distribution License, Version 1.0 only
   6 # (the "License").  You may not use this file except in compliance
   7 # with the License.
   8 #
   9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
  10 # or http://www.opensolaris.org/os/licensing.
  11 # See the License for the specific language governing permissions
  12 # and limitations under the License.
  13 #
  14 # When distributing Covered Code, include this CDDL HEADER in each
  15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  16 # If applicable, add the following below this CDDL HEADER, with the
  17 # fields enclosed by brackets "[]" replaced with your own identifying
  18 # information: Portions Copyright [yyyy] [name of copyright owner]
  19 #
  20 # CDDL HEADER END
  21 #
  22 #
  23 #ident  "%Z%%M% %I%     %E% SMI"
  24 #
  25 # Copyright 2001-2002 Sun Microsystems, Inc.  All rights reserved.
  26 # Use is subject to license terms.
  27 #
  28 # cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/common/Makefile
  29 #
  30 
  31 CLASSFILES = \
  32         Console.class \
  33         DhcpCliProgram.class \
  34         DhcpCliFunction.class \
  35         DhcpCliOption.class \
  36         DhcpCliOptions.class \
  37         DhcpCliPrint.class \
  38         Format.class \
  39         GetOpt.class \
  40         GetSubOpt.class \
  41         ResourceStrings.class \
  42         Util.class
  43 
  44 include         $(SRC)/Makefile.master
  45 
  46 CLASSPATH =     $(SRC)/cmd/cmd-inet/usr.sadm/dhcpmgr
  47 
  48 JAVAFILES =     $(CLASSFILES:.class=.java)
  49 
  50 MSGDIR =        $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr/cli/common
  51 MSGDIRS =       $(ROOT)/usr/share/lib/locale \
  52                 $(ROOT)/usr/share/lib/locale/com \
  53                 $(ROOT)/usr/share/lib/locale/com/sun \
  54                 $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr \
  55                 $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr/cli \
  56                 $(MSGDIR)
  57 
  58 
  59 MSGFILES =      ResourceBundle.properties
  60 MSGS=           $(MSGFILES:%=$(MSGDIR)/%)
  61 
  62 CLEANFILES=     *.class
  63 CLOBBERFILES=
  64 
  65 .KEEP_STATE:
  66 
  67 all: $(CLASSFILES)
  68 
  69 install: all
  70 
  71 _msg: $(MSGDIRS) $(MSGS)
  72 
  73 $(MSGDIR)/%: %
  74         $(INS.file)
  75 
  76 $(MSGDIRS):
  77         $(INS.dir)
  78 
  79 lint:
  80 
  81 clean:
  82         $(RM) $(CLEANFILES)
  83 
  84 clobber: clean