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 # Copyright 2002 Sun Microsystems, Inc.  All rights reserved.
  24 # Use is subject to license terms.
  25 #
  26 # ident "%Z%%M% %I%     %E% SMI"
  27 #
  28 # cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/Makefile
  29 #
  30 
  31 CLASSFILES =    QualifierType.class \
  32                 QualifierTypeImpl.class \
  33                 Qualifier.class \
  34                 QualifierEnum.class \
  35                 QualifierRange.class \
  36                 QualifierImpl.class \
  37                 QualifierBoolean.class \
  38                 QualifierString.class \
  39                 QualifierStringEnum.class \
  40                 QualifierInteger.class \
  41                 QualifierIntegerEnum.class \
  42                 QualifierIntegerRange.class \
  43                 QualifierArray.class \
  44                 QualifierAnd.class \
  45                 QualifierOr.class \
  46                 QualifierFQDN.class \
  47                 QualifierIPv4.class \
  48                 QualifierIPv6.class
  49 
  50 all     :=      TARGET= all
  51 install :=      TARGET= install
  52 clean   :=      TARGET= clean
  53 clobber :=      TARGET= clobber
  54 lint    :=      TARGET= lint
  55 _msg    :=      TARGET= _msg
  56 
  57 include         $(SRC)/Makefile.master
  58 
  59 CLASSPATH=      $(SRC)/cmd/cmd-inet/usr.sadm/dhcpmgr
  60 
  61 JAVAFILES =     $(CLASSFILES:.class=.java)
  62 
  63 CLEANFILES=     *.class
  64 CLOBBERFILES=
  65 
  66 .KEEP_STATE:
  67 
  68 all: $(CLASSFILES)
  69 
  70 install: all
  71 
  72 _msg:
  73 
  74 lint:
  75 
  76 clean:
  77         $(RM) $(CLEANFILES)
  78 
  79 clobber: clean
  80