xref: /titanic_52/usr/src/lib/libkmf/mappers/Makefile (revision 269e59f9a28bf47e0f463e64fc5af4a408b73b21)
1*269e59f9SJan Pechanec#
2*269e59f9SJan Pechanec# CDDL HEADER START
3*269e59f9SJan Pechanec#
4*269e59f9SJan Pechanec# The contents of this file are subject to the terms of the
5*269e59f9SJan Pechanec# Common Development and Distribution License (the "License").
6*269e59f9SJan Pechanec# You may not use this file except in compliance with the License.
7*269e59f9SJan Pechanec#
8*269e59f9SJan Pechanec# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*269e59f9SJan Pechanec# or http://www.opensolaris.org/os/licensing.
10*269e59f9SJan Pechanec# See the License for the specific language governing permissions
11*269e59f9SJan Pechanec# and limitations under the License.
12*269e59f9SJan Pechanec#
13*269e59f9SJan Pechanec# When distributing Covered Code, include this CDDL HEADER in each
14*269e59f9SJan Pechanec# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*269e59f9SJan Pechanec# If applicable, add the following below this CDDL HEADER, with the
16*269e59f9SJan Pechanec# fields enclosed by brackets "[]" replaced with your own identifying
17*269e59f9SJan Pechanec# information: Portions Copyright [yyyy] [name of copyright owner]
18*269e59f9SJan Pechanec#
19*269e59f9SJan Pechanec# CDDL HEADER END
20*269e59f9SJan Pechanec#
21*269e59f9SJan Pechanec# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
22*269e59f9SJan Pechanec#
23*269e59f9SJan Pechanec# Makefile for KMF mappers.
24*269e59f9SJan Pechanec#
25*269e59f9SJan Pechanecinclude	../../Makefile.lib
26*269e59f9SJan Pechanec
27*269e59f9SJan PechanecSUBDIRS	=	kmf_mapper_cn
28*269e59f9SJan Pechanec
29*269e59f9SJan PechanecHDRS =
30*269e59f9SJan PechanecHDRDIR =	include
31*269e59f9SJan Pechanec
32*269e59f9SJan Pechanecall :=          TARGET= all
33*269e59f9SJan Pechanecclean :=        TARGET= clean
34*269e59f9SJan Pechanecclobber :=      TARGET= clobber
35*269e59f9SJan Pechanecinstall :=      TARGET= install
36*269e59f9SJan Pechaneclint :=         TARGET= lint
37*269e59f9SJan Pechanec
38*269e59f9SJan Pechanecall clean clobber install lint: $(SUBDIRS)
39*269e59f9SJan Pechanec
40*269e59f9SJan Pechanec$(SUBDIRS): FRC
41*269e59f9SJan Pechanec	@cd $@; pwd; $(MAKE) $(TARGET)
42*269e59f9SJan Pechanec
43*269e59f9SJan PechanecFRC:
44*269e59f9SJan Pechanec
45*269e59f9SJan Pechanecinclude $(SRC)/lib/Makefile.targ
46