xref: /onnv-gate/usr/src/lib/libkmf/plugins/Makefile (revision 3089:8ddeb2ace8aa)
1*3089Swyllys#
2*3089Swyllys# CDDL HEADER START
3*3089Swyllys#
4*3089Swyllys# The contents of this file are subject to the terms of the
5*3089Swyllys# Common Development and Distribution License (the "License").
6*3089Swyllys# You may not use this file except in compliance with the License.
7*3089Swyllys#
8*3089Swyllys# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*3089Swyllys# or http://www.opensolaris.org/os/licensing.
10*3089Swyllys# See the License for the specific language governing permissions
11*3089Swyllys# and limitations under the License.
12*3089Swyllys#
13*3089Swyllys# When distributing Covered Code, include this CDDL HEADER in each
14*3089Swyllys# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*3089Swyllys# If applicable, add the following below this CDDL HEADER, with the
16*3089Swyllys# fields enclosed by brackets "[]" replaced with your own identifying
17*3089Swyllys# information: Portions Copyright [yyyy] [name of copyright owner]
18*3089Swyllys#
19*3089Swyllys# CDDL HEADER END
20*3089Swyllys#
21*3089Swyllys# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
22*3089Swyllys# Use is subject to license terms.
23*3089Swyllys#
24*3089Swyllys# ident	"%Z%%M%	%I%	%E% SMI"
25*3089Swyllys#
26*3089Swyllys# KMF Prototype Makefile
27*3089Swyllys#
28*3089Swyllysinclude	../../Makefile.lib
29*3089Swyllys
30*3089SwyllysSUBDIRS		=	kmf_nss kmf_openssl kmf_pkcs11
31*3089Swyllys
32*3089SwyllysHDRS=
33*3089SwyllysHDRDIR= include
34*3089Swyllys
35*3089Swyllysall :=          TARGET= all
36*3089Swyllysclean :=        TARGET= clean
37*3089Swyllysclobber :=      TARGET= clobber
38*3089Swyllysinstall :=      TARGET= install
39*3089Swyllyslint :=         TARGET= lint
40*3089Swyllys
41*3089Swyllysall clean clobber install lint: $(SUBDIRS)
42*3089Swyllys
43*3089Swyllys$(SUBDIRS): FRC
44*3089Swyllys	@cd $@; pwd; $(MAKE) $(TARGET)
45*3089Swyllys
46*3089SwyllysFRC:
47*3089Swyllys
48*3089Swyllysinclude $(SRC)/lib/Makefile.targ
49