xref: /onnv-gate/usr/src/lib/pam_modules/smbfs/Makefile (revision 6007:d57e38e8fdd1)
1*6007Sthurlow#
2*6007Sthurlow# CDDL HEADER START
3*6007Sthurlow#
4*6007Sthurlow# The contents of this file are subject to the terms of the
5*6007Sthurlow# Common Development and Distribution License (the "License").
6*6007Sthurlow# You may not use this file except in compliance with the License.
7*6007Sthurlow#
8*6007Sthurlow# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*6007Sthurlow# or http://www.opensolaris.org/os/licensing.
10*6007Sthurlow# See the License for the specific language governing permissions
11*6007Sthurlow# and limitations under the License.
12*6007Sthurlow#
13*6007Sthurlow# When distributing Covered Code, include this CDDL HEADER in each
14*6007Sthurlow# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*6007Sthurlow# If applicable, add the following below this CDDL HEADER, with the
16*6007Sthurlow# fields enclosed by brackets "[]" replaced with your own identifying
17*6007Sthurlow# information: Portions Copyright [yyyy] [name of copyright owner]
18*6007Sthurlow#
19*6007Sthurlow# CDDL HEADER END
20*6007Sthurlow#
21*6007Sthurlow
22*6007Sthurlow#
23*6007Sthurlow# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24*6007Sthurlow# Use is subject to license terms.
25*6007Sthurlow#
26*6007Sthurlow# ident	"%Z%%M%	%I%	%E% SMI"
27*6007Sthurlow#
28*6007Sthurlow
29*6007Sthurlowinclude 	../../Makefile.lib
30*6007Sthurlow
31*6007SthurlowTEXT_DOMAIN=	SUNW_OST_SYSOSPAM
32*6007SthurlowPOFILE=		smbfs_login.po
33*6007SthurlowMSGFILES=	smbfs_login.c
34*6007Sthurlow
35*6007Sthurlow# BUILDPO runs the sourcefile through the pre-processor
36*6007Sthurlow# make sure it can find what it needs.
37*6007Sthurlow$(POFILE) := CPPFLAGS += -I$(SRC)/lib/libsmbfs
38*6007Sthurlow
39*6007SthurlowSUBDIRS=	$(MACH)
40*6007Sthurlow$(BUILD64)SUBDIRS += $(MACH64)
41*6007Sthurlow
42*6007Sthurlowall	:=	TARGET= all
43*6007Sthurlowclean	:=	TARGET= clean
44*6007Sthurlowclobber	:=	TARGET= clobber
45*6007Sthurlowinstall	:=	TARGET= install
46*6007Sthurlowlint	:=	TARGET= lint
47*6007Sthurlow
48*6007Sthurlow.KEEP_STATE:
49*6007Sthurlow
50*6007Sthurlowall clean clobber install lint: $(SUBDIRS)
51*6007Sthurlow
52*6007Sthurlow_msg:		$(MSGDOMAINPOFILE)
53*6007Sthurlow
54*6007Sthurlow$(SUBDIRS):	FRC
55*6007Sthurlow	@cd $@; pwd; $(MAKE) $(TARGET)
56*6007Sthurlow
57*6007SthurlowFRC:
58*6007Sthurlow
59*6007Sthurlowinclude		$(SRC)/Makefile.msg.targ
60*6007Sthurlowinclude		../../Makefile.targ
61