xref: /illumos-gate/usr/src/cmd/fs.d/smbclnt/lsacl/Makefile (revision 7568150a58e78021968b6c22bc28e9787b33496a)
1*7568150aSgwr#
2*7568150aSgwr# CDDL HEADER START
3*7568150aSgwr#
4*7568150aSgwr# The contents of this file are subject to the terms of the
5*7568150aSgwr# Common Development and Distribution License (the "License").
6*7568150aSgwr# You may not use this file except in compliance with the License.
7*7568150aSgwr#
8*7568150aSgwr# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9*7568150aSgwr# or http://www.opensolaris.org/os/licensing.
10*7568150aSgwr# See the License for the specific language governing permissions
11*7568150aSgwr# and limitations under the License.
12*7568150aSgwr#
13*7568150aSgwr# When distributing Covered Code, include this CDDL HEADER in each
14*7568150aSgwr# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15*7568150aSgwr# If applicable, add the following below this CDDL HEADER, with the
16*7568150aSgwr# fields enclosed by brackets "[]" replaced with your own identifying
17*7568150aSgwr# information: Portions Copyright [yyyy] [name of copyright owner]
18*7568150aSgwr#
19*7568150aSgwr# CDDL HEADER END
20*7568150aSgwr#
21*7568150aSgwr#
22*7568150aSgwr# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23*7568150aSgwr# Use is subject to license terms.
24*7568150aSgwr#
25*7568150aSgwr# ident	"%Z%%M%	%I%	%E% SMI"
26*7568150aSgwr#
27*7568150aSgwr
28*7568150aSgwrFSTYPE=		smbfs
29*7568150aSgwrLIBPROG=	lsacl
30*7568150aSgwrROOTFS_PROG=	$(LIBPROG)
31*7568150aSgwr
32*7568150aSgwrinclude		../../Makefile.fstype
33*7568150aSgwr
34*7568150aSgwrOBJS=	$(LIBPROG).o
35*7568150aSgwrSRCS=	$(LIBPROG).c $(FSLIBSRC)
36*7568150aSgwr
37*7568150aSgwrLDLIBS += -lsmbfs -lsec
38*7568150aSgwr
39*7568150aSgwrCFLAGS += $(CCVERBOSE)
40*7568150aSgwrC99MODE= $(C99_ENABLE)
41*7568150aSgwrCPPFLAGS += -I$(SRC)/lib/libsmbfs \
42*7568150aSgwr	-I$(SRC)/uts/common/smbclnt -I$(SRC)/uts/common
43*7568150aSgwr
44*7568150aSgwrCLOBBERFILES	+= $(LIBPROG)
45*7568150aSgwr
46*7568150aSgwrall:	$(ROOTFS_PROG)
47*7568150aSgwr
48*7568150aSgwrinstall:	$(ROOTLIBFSTYPEPROG)
49*7568150aSgwr
50*7568150aSgwrlint:	lint_SRCS
51*7568150aSgwr
52*7568150aSgwrclean:
53*7568150aSgwr	$(RM) $(OBJS)
54*7568150aSgwr
55*7568150aSgwr.KEEP_STATE:
56