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 1999-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/ui/Makefile
  29 #
  30 
  31 # Place high-level classes first in order to minimize build time.
  32 CLASSFILES =    ListPair.class \
  33                 Wizard.class \
  34                 TableSorter.class \
  35                 MainFrame.class \
  36                 View.class \
  37                 MnemonicAction.class \
  38                 IPAddressList.class \
  39                 ExtendedCellRenderer.class \
  40                 PreviousButton.class \
  41                 NextButton.class \
  42                 RightButton.class \
  43                 LeftButton.class \
  44                 UpButton.class \
  45                 DownButton.class \
  46                 ImageButton.class \
  47                 ButtonPanel.class \
  48                 ButtonPanelListener.class \
  49                 VerticalButtonLayout.class \
  50                 ButtonLayout.class \
  51                 ALIGNMENT.class \
  52                 AutosizingTable.class \
  53                 FieldLayout.class \
  54                 HelpIds.class \
  55                 HostnameField.class \
  56                 IntegerField.class \
  57                 IPAddressField.class \
  58                 Mnemonic.class \
  59                 NoSpaceField.class \
  60                 ProgressManager.class \
  61                 ProportionalLayout.class \
  62                 ResourceStrings.class \
  63                 SelectionListener.class \
  64                 SortedHeaderRenderer.class \
  65                 SwingWorker.class \
  66                 TableMap.class \
  67                 WizardStep.class
  68 
  69 include         $(SRC)/Makefile.master
  70 
  71 CLASSPATH=      $(SRC)/cmd/cmd-inet/usr.sadm/dhcpmgr
  72 
  73 JAVAFILES =     $(CLASSFILES:.class=.java)
  74 
  75 MSGDIR=         $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr/ui
  76 MSGDIRS =       $(ROOT)/usr/share/lib/locale \
  77                 $(ROOT)/usr/share/lib/locale/com \
  78                 $(ROOT)/usr/share/lib/locale/com/sun \
  79                 $(ROOT)/usr/share/lib/locale/com/sun/dhcpmgr \
  80                 $(MSGDIR)
  81 
  82 MSGFILES=       ResourceBundle.properties
  83 MSGS=           $(MSGFILES:%=$(MSGDIR)/%)
  84 
  85 CLEANFILES=     *.class
  86 CLOBBERFILES=
  87 
  88 .KEEP_STATE:
  89 
  90 all: $(CLASSFILES)
  91 
  92 install: all
  93 
  94 _msg: $(MSGDIRS) $(MSGS)
  95 
  96 $(MSGDIR)/%: %
  97         $(INS.file)
  98 
  99 $(MSGDIRS):
 100         $(INS.dir)
 101 
 102 lint:
 103 
 104 clean:
 105         $(RM) $(CLEANFILES)
 106 
 107 clobber: clean