xref: /illumos-gate/usr/src/lib/libmlrpc/Makefile.com (revision 1a065e93eee983124652c3eb0cfdcb4776cd89ab)
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 2020 Tintri by DDN, Inc. All rights reserved.
27#
28
29LIBRARY =	libmlrpc.a
30VERS =		.2
31
32OBJS_COMMON =			\
33	mlrpc_clh.o		\
34	ndr_auth.o		\
35	ndr_client.o		\
36	ndr_heap.o		\
37	ndr_marshal.o		\
38	ndr_ops.o		\
39	ndr_process.o		\
40	ndr_server.o		\
41	ndr_svc.o		\
42	ndr_wchar.o
43
44NDLLIST = rpcpdu
45
46OBJECTS=	$(OBJS_COMMON) $(NDLLIST:%=%_ndr.o)
47CLEANFILES += $(NDLLIST:%=%_ndr.c)
48
49include ../../Makefile.lib
50
51LIBS=		$(DYNLIB)
52
53LDLIBS +=	-lsmbfs -luuid -lc
54
55SRCDIR=		../common
56SRCS=   $(OBJS_COMMON:%.o=$(SRCDIR)/%.c)
57
58NDLDIR =	$(SRCDIR)
59
60CFLAGS +=	$(CCVERBOSE)
61INCS = -I. -I$(SRCDIR)
62CPPFLAGS += $(INCS) -D_REENTRANT
63
64all:	$(LIBS)
65
66
67include ../../Makefile.targ
68
69objs/%_ndr.o pics/%_ndr.o : %_ndr.c
70
71%_ndr.c : $(NDLDIR)/%.ndl
72	$(NDRGEN) -Y $(ANSI_CPP) $(CPPFLAGS) $<
73
74.KEEP_STATE:
75