1269e59f9SJan Pechanec#
2269e59f9SJan Pechanec# CDDL HEADER START
3269e59f9SJan Pechanec#
4269e59f9SJan Pechanec# The contents of this file are subject to the terms of the
5269e59f9SJan Pechanec# Common Development and Distribution License (the "License").
6269e59f9SJan Pechanec# You may not use this file except in compliance with the License.
7269e59f9SJan Pechanec#
8269e59f9SJan Pechanec# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9269e59f9SJan Pechanec# or http://www.opensolaris.org/os/licensing.
10269e59f9SJan Pechanec# See the License for the specific language governing permissions
11269e59f9SJan Pechanec# and limitations under the License.
12269e59f9SJan Pechanec#
13269e59f9SJan Pechanec# When distributing Covered Code, include this CDDL HEADER in each
14269e59f9SJan Pechanec# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15269e59f9SJan Pechanec# If applicable, add the following below this CDDL HEADER, with the
16269e59f9SJan Pechanec# fields enclosed by brackets "[]" replaced with your own identifying
17269e59f9SJan Pechanec# information: Portions Copyright [yyyy] [name of copyright owner]
18269e59f9SJan Pechanec#
19269e59f9SJan Pechanec# CDDL HEADER END
20269e59f9SJan Pechanec#
21269e59f9SJan Pechanec# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
22269e59f9SJan Pechanec#
23269e59f9SJan Pechanec# The CN KMF mapper. Maps a certificate to its Common Name value.
24269e59f9SJan Pechanec#
25269e59f9SJan Pechanecinclude         $(SRC)/lib/Makefile.lib
26269e59f9SJan Pechanec
27269e59f9SJan PechanecSUBDIRS =	$(MACH)
28269e59f9SJan Pechanec
29269e59f9SJan Pechanec$(BUILD64)SUBDIRS += $(MACH64)
30269e59f9SJan Pechanec
31269e59f9SJan Pechanecall :=          TARGET= all
32269e59f9SJan Pechaneccheck :=        TARGET= check
33269e59f9SJan Pechanecclean :=        TARGET= clean
34269e59f9SJan Pechanecclobber :=      TARGET= clobber
35269e59f9SJan Pechanecinstall :=      TARGET= install
36269e59f9SJan Pechanec
37269e59f9SJan Pechanec.KEEP_STATE:
38269e59f9SJan Pechanec
39*241c90a0SRichard Loweall clean clobber install: $(SUBDIRS)
40269e59f9SJan Pechanec
41269e59f9SJan Pechanec$(SUBDIRS): FRC
42269e59f9SJan Pechanec	@cd $@; pwd; $(MAKE) $(TARGET)
43269e59f9SJan Pechanec
44269e59f9SJan PechanecFRC:
45