xref: /illumos-gate/usr/src/lib/libdisasm/Makefile (revision 241c90a06e8d1708235651863df515a2d522a03a)
1dc0093f4Seschrock#
2dc0093f4Seschrock# CDDL HEADER START
3dc0093f4Seschrock#
4dc0093f4Seschrock# The contents of this file are subject to the terms of the
5dc0093f4Seschrock# Common Development and Distribution License (the "License").
6dc0093f4Seschrock# You may not use this file except in compliance with the License.
7dc0093f4Seschrock#
8dc0093f4Seschrock# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9dc0093f4Seschrock# or http://www.opensolaris.org/os/licensing.
10dc0093f4Seschrock# See the License for the specific language governing permissions
11dc0093f4Seschrock# and limitations under the License.
12dc0093f4Seschrock#
13dc0093f4Seschrock# When distributing Covered Code, include this CDDL HEADER in each
14dc0093f4Seschrock# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15dc0093f4Seschrock# If applicable, add the following below this CDDL HEADER, with the
16dc0093f4Seschrock# fields enclosed by brackets "[]" replaced with your own identifying
17dc0093f4Seschrock# information: Portions Copyright [yyyy] [name of copyright owner]
18dc0093f4Seschrock#
19dc0093f4Seschrock# CDDL HEADER END
20dc0093f4Seschrock#
21dc0093f4Seschrock#
22a2bb96e7Sjmcp# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23dc0093f4Seschrock# Use is subject to license terms.
24dc0093f4Seschrock#
25dc0093f4Seschrock
26dc0093f4Seschrockinclude ../Makefile.lib
27dc0093f4Seschrock
28dc0093f4SeschrockHDRS=		libdisasm.h
29dc0093f4Seschrock
30dc0093f4SeschrockHDRDIR=		common
31a2bb96e7SjmcpSUBDIRS= $(MACH)
32a2bb96e7Sjmcp$(BUILD64)SUBDIRS += $(MACH64)
33dc0093f4Seschrock
34dc0093f4Seschrockall :=		TARGET = all
35dc0093f4Seschrockclean :=	TARGET = clean
36dc0093f4Seschrockclobber :=	TARGET = clobber
37dc0093f4Seschrockinstall	:=	TARGET = install
38dc0093f4Seschrock
39dc0093f4Seschrock.KEEP_STATE:
40dc0093f4Seschrock
41*241c90a0SRichard Loweall clean clobber install: $(SUBDIRS)
42dc0093f4Seschrock
43dc0093f4Seschrockinstall_h:	$(ROOTHDRS)
44dc0093f4Seschrock
45dc0093f4Seschrockcheck:		$(CHECKHDRS)
46dc0093f4Seschrock
47f808c858Sraf$(SUBDIRS): FRC
48dc0093f4Seschrock	@cd $@; pwd; $(MAKE) $(TARGET)
49dc0093f4Seschrock
50dc0093f4SeschrockFRC:
51dc0093f4Seschrock
52dc0093f4Seschrockinclude ../Makefile.targ
53