Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
823N/A#
823N/A# CDDL HEADER START
823N/A#
823N/A# The contents of this file are subject to the terms of the
823N/A# Common Development and Distribution License, Version 1.0 only
823N/A# (the "License"). You may not use this file except in compliance
823N/A# with the License.
823N/A#
6983N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6983N/A# or http://www.opensolaris.org/os/licensing.
823N/A# See the License for the specific language governing permissions
823N/A# and limitations under the License.
823N/A#
823N/A# When distributing Covered Code, include this CDDL HEADER in each
6983N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6983N/A# If applicable, add the following below this CDDL HEADER, with the
6983N/A# fields enclosed by brackets "[]" replaced with your own identifying
6983N/A# information: Portions Copyright [yyyy] [name of copyright owner]
823N/A#
823N/A# CDDL HEADER END
823N/A#
823N/A#
823N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
3215N/A# Use is subject to license terms.
6412N/A#
823N/A#ident "%Z%%M% %I% %E% SMI"
823N/A#
823N/A# cmd/pools/poold/libjpool/Makefile
2086N/A#
6412N/A
6412N/Ainclude $(SRC)/lib/Makefile.lib
6412N/A
6412N/ASUBDIRS = spec .WAIT $(MACH)
6412N/A
6412N/Aall := TARGET = all
6412N/Aclean := TARGET = clean
823N/Aclobber := TARGET = clobber
823N/Ainstall := TARGET = install
823N/Alint := TARGET = lint
823N/A
823N/AJNI_CLASSES = \
823N/A com.sun.solaris.service.pools.PoolInternal \
6412N/A com.sun.solaris.service.pools.Element \
6412N/A com.sun.solaris.service.pools.Value \
823N/A com.sun.solaris.service.pools.HRTime
823N/A
823N/AJNI_GENERATED_HEADERS = \
823N/A jpool.h
6412N/A
823N/ACLEANFILES += $(JNI_GENERATED_HEADERS)
823N/A
823N/Aall install lint: $(JNI_GENERATED_HEADERS) .WAIT $(SUBDIRS)
897N/A
897N/Aclean clobber: $(SUBDIRS)
6412N/A
823N/A$(JNI_GENERATED_HEADERS): $(SRC)/cmd/pools/poold/JPool.jar
897N/A $(JAVAH) -classpath $? -o $@ $(JNI_CLASSES)
823N/A
823N/A$(SUBDIRS): FRC
823N/A @cd $@; pwd; $(MAKE) $(TARGET)
823N/A
823N/AFRC:
823N/A
823N/Ainclude $(SRC)/lib/Makefile.targ
823N/Ainclude $(SRC)/Makefile.msg.targ
823N/A