xref: /illumos-gate/usr/src/cmd/acpihpd/Makefile (revision a31148363f598def767ac48c5d82e1572e44b935)
1*a3114836SGerry Liu#
2*a3114836SGerry Liu# CDDL HEADER START
3*a3114836SGerry Liu#
4*a3114836SGerry Liu# The contents of this file are subject to the terms of the
5*a3114836SGerry Liu# Common Development and Distribution License (the "License").
6*a3114836SGerry Liu# You may not use this file except in compliance with the License.
7*a3114836SGerry Liu#
8*a3114836SGerry Liu# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*a3114836SGerry Liu# or http://www.opensolaris.org/os/licensing.
10*a3114836SGerry Liu# See the License for the specific language governing permissions
11*a3114836SGerry Liu# and limitations under the License.
12*a3114836SGerry Liu#
13*a3114836SGerry Liu# When distributing Covered Code, include this CDDL HEADER in each
14*a3114836SGerry Liu# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*a3114836SGerry Liu# If applicable, add the following below this CDDL HEADER, with the
16*a3114836SGerry Liu# fields enclosed by brackets "[]" replaced with your own identifying
17*a3114836SGerry Liu# information: Portions Copyright [yyyy] [name of copyright owner]
18*a3114836SGerry Liu#
19*a3114836SGerry Liu# CDDL HEADER END
20*a3114836SGerry Liu#
21*a3114836SGerry Liu#
22*a3114836SGerry Liu# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23*a3114836SGerry Liu# Use is subject to license terms.
24*a3114836SGerry Liu#
25*a3114836SGerry Liu# Copyright (c) 2010, Intel Corporation.
26*a3114836SGerry Liu# All rights reserved.
27*a3114836SGerry Liu#
28*a3114836SGerry Liu# cmd/acpihpd/Makefile
29*a3114836SGerry Liu#
30*a3114836SGerry Liu
31*a3114836SGerry LiuPLATFORM = i86pc
32*a3114836SGerry LiuMANIFEST = acpihpd.xml
33*a3114836SGerry LiuSVCMETHOD = svc-acpihpd
34*a3114836SGerry Liu
35*a3114836SGerry Liuinclude ../Makefile.cmd
36*a3114836SGerry Liu
37*a3114836SGerry Liu$(64ONLY)SUBDIRS= $(MACH)
38*a3114836SGerry Liu
39*a3114836SGerry LiuROOTMANIFESTDIR = $(ROOTSVCPLATFORM)/${PLATFORM}
40*a3114836SGerry Liu
41*a3114836SGerry Liuall	:=	TARGET = all
42*a3114836SGerry Liuinstall	:=	TARGET = install
43*a3114836SGerry Liuclean	:=	TARGET = clean
44*a3114836SGerry Liuclobber	:=	TARGET = clobber
45*a3114836SGerry Liulint	:=	TARGET = lint
46*a3114836SGerry Liu
47*a3114836SGerry Liu.KEEP_STATE:
48*a3114836SGerry Liu
49*a3114836SGerry Liuall:	$(SUBDIRS)
50*a3114836SGerry Liu
51*a3114836SGerry Liuinstall:	$(SUBDIRS) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
52*a3114836SGerry Liu
53*a3114836SGerry Liuclean clobber lint:	$(SUBDIRS)
54*a3114836SGerry Liu
55*a3114836SGerry Liucheck:	$(CHKMANIFEST)
56*a3114836SGerry Liu
57*a3114836SGerry Liu$(SUBDIRS):	FRC
58*a3114836SGerry Liu	@cd $@; pwd; $(MAKE) $(TARGET)
59*a3114836SGerry Liu
60*a3114836SGerry LiuFRC:
61*a3114836SGerry Liu
62*a3114836SGerry Liuinclude ../Makefile.targ
63