xref: /titanic_41/usr/src/cmd/cmd-inet/etc/sock2path.d/Makefile (revision 6a634c9dca3093f3922e4b7ab826d7bdf17bf78e)
1*d2b5b2d3SAnders Persson#
2*d2b5b2d3SAnders Persson# CDDL HEADER START
3*d2b5b2d3SAnders Persson#
4*d2b5b2d3SAnders Persson# The contents of this file are subject to the terms of the
5*d2b5b2d3SAnders Persson# Common Development and Distribution License (the "License").
6*d2b5b2d3SAnders Persson# You may not use this file except in compliance with the License.
7*d2b5b2d3SAnders Persson#
8*d2b5b2d3SAnders Persson# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*d2b5b2d3SAnders Persson# or http://www.opensolaris.org/os/licensing.
10*d2b5b2d3SAnders Persson# See the License for the specific language governing permissions
11*d2b5b2d3SAnders Persson# and limitations under the License.
12*d2b5b2d3SAnders Persson#
13*d2b5b2d3SAnders Persson# When distributing Covered Code, include this CDDL HEADER in each
14*d2b5b2d3SAnders Persson# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*d2b5b2d3SAnders Persson# If applicable, add the following below this CDDL HEADER, with the
16*d2b5b2d3SAnders Persson# fields enclosed by brackets "[]" replaced with your own identifying
17*d2b5b2d3SAnders Persson# information: Portions Copyright [yyyy] [name of copyright owner]
18*d2b5b2d3SAnders Persson#
19*d2b5b2d3SAnders Persson# CDDL HEADER END
20*d2b5b2d3SAnders Persson#
21*d2b5b2d3SAnders Persson# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
22*d2b5b2d3SAnders Persson#
23*d2b5b2d3SAnders Persson# cmd/cmd-inet/etc/sock2path.d/Makefile
24*d2b5b2d3SAnders Persson#
25*d2b5b2d3SAnders Persson
26*d2b5b2d3SAnders PerssonSOCK2PATHFILES= \
27*d2b5b2d3SAnders Persson    driver%2Fnetwork%2Fbpf \
28*d2b5b2d3SAnders Persson    driver%2Fnetwork%2Frds \
29*d2b5b2d3SAnders Persson    driver%2Fnetwork%2Frdsv3 \
30*d2b5b2d3SAnders Persson    driver%2Fnetwork%2Fsdp \
31*d2b5b2d3SAnders Persson    system%2Fkernel \
32*d2b5b2d3SAnders Persson    system%2Fnetwork%2Fhttp%2Fcache%2Faccelerator
33*d2b5b2d3SAnders Persson
34*d2b5b2d3SAnders Perssoninclude ../../../Makefile.cmd
35*d2b5b2d3SAnders Persson
36*d2b5b2d3SAnders PerssonETCSOCK2PATHDIR=	$(ROOTETC)/sock2path.d
37*d2b5b2d3SAnders PerssonETCSOCK2PATHFILES=	$(SOCK2PATHFILES:%=$(ETCSOCK2PATHDIR)/%)
38*d2b5b2d3SAnders Persson
39*d2b5b2d3SAnders PerssonFILEMODE=	0644
40*d2b5b2d3SAnders Persson
41*d2b5b2d3SAnders Persson.KEEP_STATE:
42*d2b5b2d3SAnders Persson
43*d2b5b2d3SAnders Perssonall:
44*d2b5b2d3SAnders Perssoninstall:	$(ETCSOCK2PATHDIR) $(ETCSOCK2PATHFILES)
45*d2b5b2d3SAnders Persson
46*d2b5b2d3SAnders Persson$(ETCSOCK2PATHDIR)/%: %
47*d2b5b2d3SAnders Persson		$(INS.file)
48*d2b5b2d3SAnders Persson
49*d2b5b2d3SAnders Persson$(ETCSOCK2PATHDIR):
50*d2b5b2d3SAnders Persson		$(INS.dir)
51