8322 nl: misleading-indentation
[unleashed/tickless.git] / usr / src / cmd / avs / nsctl / Makefile
blobf5b19dc7b20fc84bbdf33914de17592b7b9f38fd
1 # CDDL HEADER START
3 # The contents of this file are subject to the terms of the
4 # Common Development and Distribution License (the "License").
5 # You may not use this file except in compliance with the License.
7 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
8 # or http://www.opensolaris.org/os/licensing.
9 # See the License for the specific language governing permissions
10 # and limitations under the License.
12 # When distributing Covered Code, include this CDDL HEADER in each
13 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
14 # If applicable, add the following below this CDDL HEADER, with the
15 # fields enclosed by brackets "[]" replaced with your own identifying
16 # information: Portions Copyright [yyyy] [name of copyright owner]
18 # CDDL HEADER END
21 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
22 # Use is subject to license terms.
25 # must be before include of Makefile.cmd
26 DYNPROG = nscadm nskernd
28 include ../../Makefile.cmd
29 include ../Makefile.com
31 PROG = $(DYNPROG)
33 OBJS= nscadm.o nskernd.o
34 SRCS= $(OBJS:%.o=%.c)
35 POFILES= $(OBJS:%.o=%.po)
37 nscadm := POBJS = nscadm.o
38 nskernd := POBJS = nskernd.o
40 CFLAGS += -v
41 CPPFLAGS += -DBUILD_REV_STR='"5.11"'
42 NSCADM_LDLIBS = -lnsctl
43 NSKERND_LDLIBS = -lnsctl -ldscfg
44 LINTFLAGS += -Xa -n -s -x -m -u -Dlint -errhdr=%user -DDEBUG
45 LINTDIR = $(KBASE)/lintdir
46 POFILE = nsctl_all.po
47 LFILE = $(LINTDIR)/nsctl.ln
48 ROOTLIBLINK = $(ROOTLIB)/nskernd
49 ROOTSBINLINK = $(ROOTUSRSBIN)/nscadm
51 all := TARGET= all
52 install := TARGET= install
53 clean := TARGET= clean
54 clobber := TARGET= clobber
55 lint := TARGET= lint
57 nscadm := LDLIBS += $(NSCADM_LDLIBS)
58 nskernd := LDLIBS += $(NSKERND_LDLIBS)
60 .KEEP_STATE:
62 .PARALLEL: $(OBJS)
64 all: $(PROG) $(POFILES)
66 install: all $(ROOTPROG) $(ROOTBIN)/nskernd $(ROOTLIBLINK) $(ROOTSBINLINK)
68 lint: lint_SRCS
70 clean:
71 $(RM) *.o $(POFILES)
73 $(PROG): $$(POBJS)
74 $(LINK.c) $(POBJS) -o $@ $(LDLIBS)
75 $(POST_PROCESS)
77 $(POFILE): $(POFILES)
78 $(RM) $@
79 $(CAT) $(POFILES) > $@
81 $(ROOTLIBLINK): $(ROOTLIB) $(ROOTBIN)/nskernd
82 -$(RM) $@; $(LN) $(ROOTBIN)/nskernd $@
84 $(ROOTSBINLINK): $(ROOTUSRSBIN) $(ROOTPROG)
85 -$(RM) $@; $(LN) $(ROOTBIN)/nscadm $@
87 include ../../Makefile.targ