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# 22dc0093f4Seschrock# Copyright 2006 Sun Microsystems, Inc. All rights reserved. 23dc0093f4Seschrock# Use is subject to license terms. 24dc0093f4Seschrock# 25dc0093f4Seschrock# ident "%Z%%M% %I% %E% SMI" 26*f808c858Sraf# 27dc0093f4Seschrock 28dc0093f4Seschrockinclude ../Makefile.lib 29dc0093f4Seschrock 30dc0093f4SeschrockHDRS= libdisasm.h 31dc0093f4Seschrock 32dc0093f4SeschrockHDRDIR= common 33dc0093f4Seschrock$(INTEL_BLD)SUBDIRS= $(MACH) 34dc0093f4Seschrock$(INTEL_BLD)$(BUILD64)SUBDIRS += $(MACH64) 35b8515440Seschrock$(CLOSED_BUILD)SUBDIRS += $(CLOSED)/lib/libdisasm 36dc0093f4Seschrock 37dc0093f4Seschrockall := TARGET = all 38dc0093f4Seschrockclean := TARGET = clean 39dc0093f4Seschrockclobber := TARGET = clobber 40dc0093f4Seschrockinstall := TARGET = install 41dc0093f4Seschrocklint := TARGET = lint 42dc0093f4Seschrock 43dc0093f4Seschrock.KEEP_STATE: 44dc0093f4Seschrock 45*f808c858Srafall clean clobber install lint: $(SUBDIRS) 46dc0093f4Seschrock 47dc0093f4Seschrockinstall_h: $(ROOTHDRS) 48dc0093f4Seschrock 49dc0093f4Seschrockcheck: $(CHECKHDRS) 50dc0093f4Seschrock 51*f808c858Sraf$(SUBDIRS): FRC 52dc0093f4Seschrock @cd $@; pwd; $(MAKE) $(TARGET) 53dc0093f4Seschrock 54dc0093f4SeschrockFRC: 55dc0093f4Seschrock 56dc0093f4Seschrockinclude ../Makefile.targ 57