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