xref: /illumos-gate/usr/src/lib/pam_modules/Makefile (revision 032624d56c174c5c55126582b32e314a6af15522)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#ident	"%Z%%M%	%I%	%E% SMI"
27#
28# lib/pam_modules/Makefile
29#
30
31SUBDIRS = \
32	allow	\
33	authtok_get	\
34	authtok_check	\
35	authtok_store	\
36	deny		\
37	dhkeys		\
38	dial_auth	\
39	krb5		\
40	krb5_migrate	\
41	ldap		\
42	passwd_auth	\
43	projects	\
44	rhosts_auth	\
45	roles		\
46	sample		\
47	smartcard	\
48	unix_auth	\
49	unix_account	\
50	unix_cred	\
51	unix_session
52
53all :=		TARGET= all
54catalog :=	TARGET= _msg
55clean :=	TARGET= clean
56clobber :=	TARGET= clobber
57install :=	TARGET= install
58lint :=		TARGET= lint
59_msg :=		TARGET= _msg
60
61.KEEP_STATE:
62
63all clean clobber install lint _msg: $(SUBDIRS)
64
65$(SUBDIRS): FRC
66	@cd $@; pwd; $(MAKE) $(TARGET)
67
68FRC:
69