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 31include $(SRC)/Makefile.master 32 33SUBDIRS = \ 34 allow \ 35 authtok_get \ 36 authtok_check \ 37 authtok_store \ 38 deny \ 39 dhkeys \ 40 dial_auth \ 41 krb5 \ 42 krb5_migrate \ 43 ldap \ 44 passwd_auth \ 45 projects \ 46 rhosts_auth \ 47 roles \ 48 sample \ 49 unix_auth \ 50 unix_account \ 51 unix_cred \ 52 unix_session 53 54$(CLOSED_BUILD)SUBDIRS += \ 55 $(CLOSED)/lib/pam_modules/smartcard 56 57all := TARGET= all 58catalog := TARGET= _msg 59clean := TARGET= clean 60clobber := TARGET= clobber 61install := TARGET= install 62lint := TARGET= lint 63_msg := TARGET= _msg 64 65.KEEP_STATE: 66 67all clean clobber install lint _msg: $(SUBDIRS) 68 69$(SUBDIRS): FRC 70 @cd $@; pwd; $(MAKE) $(TARGET) 71 72FRC: 73