xref: /illumos-gate/usr/src/lib/libmlrpc/Makefile.com (revision 300fdee27f8b59b381c1a0316bdee52fdfdb9213)
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 (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
27#
28
29LIBRARY =	libmlrpc.a
30VERS =		.2
31
32OBJS_COMMON =			\
33	mlrpc_clh.o		\
34	ndr_client.o		\
35	ndr_heap.o		\
36	ndr_marshal.o		\
37	ndr_ops.o		\
38	ndr_process.o		\
39	ndr_server.o		\
40	ndr_svc.o		\
41	ndr_wchar.o
42
43NDLLIST = rpcpdu
44
45OBJECTS=	$(OBJS_COMMON) $(NDLLIST:%=%_ndr.o)
46CLEANFILES += $(NDLLIST:%=%_ndr.c)
47
48include ../../Makefile.lib
49
50LIBS=		$(DYNLIB) $(LINTLIB)
51
52LDLIBS +=	-lsmbfs -luuid -lc
53
54SRCDIR=		../common
55SRCS=   $(OBJS_COMMON:%.o=$(SRCDIR)/%.c)
56$(LINTLIB) := SRCS = $(SRCDIR)/$(LINTSRC)
57
58NDLDIR =	$(SRCDIR)
59
60CFLAGS +=	$(CCVERBOSE)
61INCS = -I. -I$(SRCDIR)
62CPPFLAGS += $(INCS) -D_REENTRANT
63
64all:	$(LIBS)
65
66lint:	lintcheck
67
68include ../../Makefile.targ
69
70objs/%_ndr.o pics/%_ndr.o : %_ndr.c
71
72%_ndr.c : $(NDLDIR)/%.ndl
73	$(NDRGEN) -Y $(ANSI_CPP) $(CPPFLAGS) $<
74
75.KEEP_STATE:
76