Merge illumos-gate
[unleashed.git] / usr / src / cmd / fs.d / smbclnt / smbutil / Makefile
blobfa001ebd05c1d1780e0ac732c8bfdd08ffc63847
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
23 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 # Use is subject to license terms.
26 # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
27 # Copyright (c) 2018, Joyent, Inc.
31 # cmd/fs.d/smbclnt/smbutil/Makefile
34 PROG= smbutil
36 OBJS= smbutil.o discon.o info.o login.o lookup.o print.o status.o view.o \
37 shares_rap.o shares_rpc.o srvsvc1_clnt.o srvsvc1_ndr.o
39 SRCS= $(OBJS:%.o=%.c)
41 include $(SRC)/cmd/Makefile.cmd
43 POFILE= smbutil_all.po
44 POFILES= $(OBJS:%.o=%.po)
46 CLEANFILES += srvsvc1_ndr.c
47 CLOBBERFILES+= $(POFILE) $(POFILES)
49 CSTD= $(CSTD_GNU99)
51 LDLIBS += -lmlrpc -lsmbfs
53 CPPFLAGS += -I$(SRC)/lib/libsmbfs \
54 -I$(SRC)/uts/common/smbclnt -I$(SRC)/uts/common
56 # not linted
57 SMATCH=off
59 # Debugging
60 ${NOT_RELEASE_BUILD} CPPFLAGS += -DDEBUG
62 # uncomment these for dbx debugging
63 #COPTFLAG = -g
64 #CTF_FLAGS =
65 #CTFCONVERT_O=
66 #CTFMERGE_LIB=
68 all: $(PROG)
70 $(PROG): $(OBJS)
71 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
72 $(POST_PROCESS)
74 install: all $(ROOTPROG)
76 $(ROOTPROG): $(PROG)
77 $(INS) -m $(FILEMODE) $(PROG) $@
79 catalog: $(POFILE)
81 $(POFILE): $(POFILES)
82 $(RM) $@
83 $(CAT) $(POFILES) > $@
86 clean:
87 $(RM) $(OBJS) $(CLEANFILES)
89 include ../../../Makefile.targ
91 srvsvc1_ndr.c : srvsvc1.ndl
92 $(NDRGEN) -Y $(ANSI_CPP) $(CPPFLAGS) srvsvc1.ndl
94 .KEEP_STATE: