xref: /titanic_52/usr/src/lib/libdtrace_jni/Makefile (revision f808c858fa61e7769218966759510a8b1190dfcf)
1fb3fb4f3Stomee#
2fb3fb4f3Stomee# CDDL HEADER START
3fb3fb4f3Stomee#
4fb3fb4f3Stomee# The contents of this file are subject to the terms of the
5fb3fb4f3Stomee# Common Development and Distribution License (the "License").
6fb3fb4f3Stomee# You may not use this file except in compliance with the License.
7fb3fb4f3Stomee#
8fb3fb4f3Stomee# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9fb3fb4f3Stomee# or http://www.opensolaris.org/os/licensing.
10fb3fb4f3Stomee# See the License for the specific language governing permissions
11fb3fb4f3Stomee# and limitations under the License.
12fb3fb4f3Stomee#
13fb3fb4f3Stomee# When distributing Covered Code, include this CDDL HEADER in each
14fb3fb4f3Stomee# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15fb3fb4f3Stomee# If applicable, add the following below this CDDL HEADER, with the
16fb3fb4f3Stomee# fields enclosed by brackets "[]" replaced with your own identifying
17fb3fb4f3Stomee# information: Portions Copyright [yyyy] [name of copyright owner]
18fb3fb4f3Stomee#
19fb3fb4f3Stomee# CDDL HEADER END
20fb3fb4f3Stomee#
21fb3fb4f3Stomee#
22fb3fb4f3Stomee# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
23fb3fb4f3Stomee# Use is subject to license terms.
24fb3fb4f3Stomee#
25fb3fb4f3Stomee# ident	"%Z%%M%	%I%	%E% SMI"
26fb3fb4f3Stomee#
27fb3fb4f3Stomee
28fb3fb4f3Stomeeinclude ../Makefile.lib
29fb3fb4f3Stomee
30fb3fb4f3StomeeSUBDIRS = $(MACH)
31fb3fb4f3Stomee$(BUILD64)SUBDIRS += $(MACH64)
32fb3fb4f3Stomee
33fb3fb4f3Stomeeall := TARGET = all
34fb3fb4f3Stomeeclean := TARGET = clean
35fb3fb4f3Stomeeclobber := TARGET = clobber
36fb3fb4f3Stomeeinstall := TARGET = install
37fb3fb4f3Stomeelint := TARGET = lint
38fb3fb4f3Stomee
39fb3fb4f3Stomee.KEEP_STATE:
40fb3fb4f3Stomee
41*f808c858Srafall clean clobber install: java .WAIT $(SUBDIRS)
42fb3fb4f3Stomee
43fb3fb4f3Stomeelint: $(SUBDIRS)
44fb3fb4f3Stomee
45fb3fb4f3Stomeeinstall_h:
46fb3fb4f3Stomee
47fb3fb4f3Stomeecheck: $(CHECKHDRS)
48fb3fb4f3Stomee
49*f808c858Srafjava $(SUBDIRS): FRC
50fb3fb4f3Stomee	@cd $@; pwd; $(MAKE) $(TARGET)
51fb3fb4f3Stomee
52fb3fb4f3Stomeedoc:
53fb3fb4f3Stomee	@cd java; pwd; make doc
54fb3fb4f3Stomee
55fb3fb4f3StomeeFRC:
56fb3fb4f3Stomee
57fb3fb4f3Stomeeinclude ../Makefile.targ
58fb3fb4f3Stomee
59fb3fb4f3Stomee#
60fb3fb4f3Stomee# Cross-reference customization: build the cross-reference only over the
61fb3fb4f3Stomee# source directories, and ignore Makefiles and machine-generated source.
62fb3fb4f3Stomee#
63fb3fb4f3StomeeXRDIRS = common i386 sparc sparcv9
64fb3fb4f3StomeeXRDEL = Makefile*
65