xref: /titanic_41/usr/src/uts/i86xpv/cpu/scripts/Makefile (revision a0900badd8eb6bcca99411c8906b483e84f2da91)
1*a0900badSGarrett D'Amore#
2*a0900badSGarrett D'Amore# CDDL HEADER START
3*a0900badSGarrett D'Amore#
4*a0900badSGarrett D'Amore# The contents of this file are subject to the terms of the
5*a0900badSGarrett D'Amore# Common Development and Distribution License (the "License").
6*a0900badSGarrett D'Amore# You may not use this file except in compliance with the License.
7*a0900badSGarrett D'Amore#
8*a0900badSGarrett D'Amore# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*a0900badSGarrett D'Amore# or http://www.opensolaris.org/os/licensing.
10*a0900badSGarrett D'Amore# See the License for the specific language governing permissions
11*a0900badSGarrett D'Amore# and limitations under the License.
12*a0900badSGarrett D'Amore#
13*a0900badSGarrett D'Amore# When distributing Covered Code, include this CDDL HEADER in each
14*a0900badSGarrett D'Amore# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*a0900badSGarrett D'Amore# If applicable, add the following below this CDDL HEADER, with the
16*a0900badSGarrett D'Amore# fields enclosed by brackets "[]" replaced with your own identifying
17*a0900badSGarrett D'Amore# information: Portions Copyright [yyyy] [name of copyright owner]
18*a0900badSGarrett D'Amore#
19*a0900badSGarrett D'Amore# CDDL HEADER END
20*a0900badSGarrett D'Amore#
21*a0900badSGarrett D'Amore
22*a0900badSGarrett D'Amore#
23*a0900badSGarrett D'Amore# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24*a0900badSGarrett D'Amore# Use is subject to license terms.
25*a0900badSGarrett D'Amore#
26*a0900badSGarrett D'Amore# Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
27*a0900badSGarrett D'Amore#
28*a0900badSGarrett D'Amore
29*a0900badSGarrett D'AmorePERLFILES= \
30*a0900badSGarrett D'Amore	ao_gendisp
31*a0900badSGarrett D'Amore
32*a0900badSGarrett D'Amoreinclude ../../../Makefile.uts
33*a0900badSGarrett D'Amore
34*a0900badSGarrett D'Amore.KEEP_STATE:
35*a0900badSGarrett D'Amore
36*a0900badSGarrett D'Amoredef all install setup: ao_gendisp.pl $(PERLFILES)
37*a0900badSGarrett D'Amore
38*a0900badSGarrett D'Amore# We are sharing the ao_gendisp source with the i86pc
39*a0900badSGarrett D'AmoreAO_GENDISP_PL=../../../i86pc/cpu/scripts/ao_gendisp.pl
40*a0900badSGarrett D'Amoreao_gendisp.pl: $(AO_GENDISP_PL)
41*a0900badSGarrett D'Amore	$(SYMLINK) $(AO_GENDISP_PL) $@
42*a0900badSGarrett D'Amore
43*a0900badSGarrett D'Amoreclean clobber:
44*a0900badSGarrett D'Amore	$(RM) ao_gendisp.pl $(PERLFILES)
45*a0900badSGarrett D'Amore
46*a0900badSGarrett D'Amoreinclude ../../../Makefile.targ
47