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