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 (c) 2001 by Sun Microsystems, Inc.
  26 # All rights reserved.
  27 #
  28 # cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/cli/dhcpbatch/Makefile
  29 #
  30 
  31 CLASSFILES = \
  32         DhcpBatch.class \
  33         DhcpCommand.class \
  34         ResourceStrings.class
  35 
  36 include         $(SRC)/Makefile.master
  37 
  38 CLASSPATH=      $(SRC)/cmd/cmd-inet/usr.sadm/dhcpmgr
  39 
  40 JAVAFILES =     $(CLASSFILES:.class=.java)
  41 
  42 MSGDIR=         $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr/cli/dhcpbatch
  43 MSGDIRS =       $(ROOT)/usr/share/lib/locale \
  44                 $(ROOT)/usr/share/lib/locale/com \
  45                 $(ROOT)/usr/share/lib/locale/com/sun \
  46                 $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr \
  47                 $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr/cli \
  48                 $(MSGDIR)
  49 
  50 MSGFILES=       ResourceBundle.properties
  51 MSGS=           $(MSGFILES:%=$(MSGDIR)/%)
  52 
  53 CLEANFILES=     *.class
  54 CLOBBERFILES=
  55 
  56 .KEEP_STATE:
  57 
  58 all: $(CLASSFILES)
  59 
  60 install: all
  61 
  62 _msg: $(MSGDIRS) $(MSGS)
  63 
  64 $(MSGDIR)/%: %
  65         $(INS.file)
  66 
  67 $(MSGDIRS):
  68         $(INS.dir)
  69 
  70 lint:
  71 
  72 clean:
  73         $(RM) $(CLEANFILES)
  74 
  75 clobber: clean