xref: /illumos-gate/usr/src/cmd/intrd/Makefile (revision 24fe0b3b)
1bd335c64Sesolom#
2bd335c64Sesolom# CDDL HEADER START
3bd335c64Sesolom#
4bd335c64Sesolom# The contents of this file are subject to the terms of the
5a192e900Samaguire# Common Development and Distribution License (the "License").
6a192e900Samaguire# You may not use this file except in compliance with the License.
7bd335c64Sesolom#
8bd335c64Sesolom# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9bd335c64Sesolom# or http://www.opensolaris.org/os/licensing.
10bd335c64Sesolom# See the License for the specific language governing permissions
11bd335c64Sesolom# and limitations under the License.
12bd335c64Sesolom#
13bd335c64Sesolom# When distributing Covered Code, include this CDDL HEADER in each
14bd335c64Sesolom# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15bd335c64Sesolom# If applicable, add the following below this CDDL HEADER, with the
16bd335c64Sesolom# fields enclosed by brackets "[]" replaced with your own identifying
17bd335c64Sesolom# information: Portions Copyright [yyyy] [name of copyright owner]
18bd335c64Sesolom#
19bd335c64Sesolom# CDDL HEADER END
20bd335c64Sesolom#
21bd335c64Sesolom
22bd335c64Sesolom#
23*24fe0b3bSjmcp# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
24bd335c64Sesolom# Use is subject to license terms.
25bd335c64Sesolom#
26bd335c64Sesolom# Makefile for interrupt distribution daemon
27bd335c64Sesolom#
28bd335c64Sesolom
29bd335c64SesolomPROG=		intrd
30bd335c64SesolomMANIFEST=	intrd.xml
31bd335c64SesolomSVCMETHOD=	svc-intrd
32bd335c64Sesolom
33bd335c64Sesolominclude ../Makefile.cmd
34bd335c64Sesolom
35bd335c64SesolomTARGET=	all
36bd335c64Sesolom
37bd335c64SesolomROOTMANIFESTDIR=	$(ROOTSVCSYSTEM)
38bd335c64Sesolom
39bd335c64Sesolom# install macros and rule
40bd335c64Sesolom#
41bd335c64SesolomROOTPROG=	$(ROOTLIB)/$(PROG)
42bd335c64Sesolom$(ROOTPROG)	:= FILEMODE= 555
43bd335c64Sesolom
44bd335c64Sesolom.KEEP_STATE:
45bd335c64Sesolom
46bd335c64Sesolomall: $(PROG)
47bd335c64Sesolom
48bd335c64Sesolominstall: all .WAIT $(ROOTPROG) $(ROOTMANIFEST) $(ROOTSVCMETHOD)
49bd335c64Sesolom
50bd335c64Sesolomclean:
51bd335c64Sesolom
52bd335c64Sesolomcheck:	$(CHKMANIFEST)
53bd335c64Sesolom
54bd335c64Sesolom${ROOTLIB}/%: %
55bd335c64Sesolom	${INS.file}
56bd335c64Sesolom
57bd335c64Sesolomlint:
58bd335c64Sesolom
59bd335c64Sesolominclude ../Makefile.targ
60