8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / smbsrv / bind-helper / Makefile
blob1dfb40e5ba8e3d338bda8e7bae8a5c088accd3dc
2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
5 # 1.0 of the CDDL.
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2013 Nexenta Systems, Inc. All rights reserved.
16 PROG= bind-helper
17 SRCS= bind-helper.c
19 include ../../Makefile.cmd
20 include ../Makefile.smbsrv.defs
22 LDLIBS += -lsocket -lnsl
24 ROOTLIBSMBSRVDIR = $(ROOTLIB)/smbsrv
25 ROOTLIBSMBSRVPROG = $(PROG:%=$(ROOTLIBSMBSRVDIR)/%)
27 .KEEP_STATE:
29 all: $(PROG)
31 clean:
32 $(RM) $(OBJS)
34 lint: lint_SRCS
36 $(PROG): $(OBJS)
37 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
38 $(POST_PROCESS)
40 include ../../Makefile.targ
42 $(ROOTLIBSMBSRVDIR)/%: %
43 $(INS.file)
45 install: all .WAIT $(ROOTLIBSMBSRVPROG)