1# CDDL HEADER START
2#
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.
6#
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.
11#
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]
17#
18# CDDL HEADER END
19#
20#
21# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
22# Use is subject to license terms.
23#
24
25# must be before include of Makefile.cmd
26DYNPROG = nscadm nskernd
27
28include ../../Makefile.cmd
29include ../Makefile.com
30
31PROG = $(DYNPROG)
32
33OBJS=	nscadm.o nskernd.o
34SRCS=	$(OBJS:%.o=%.c)
35POFILES= $(OBJS:%.o=%.po)
36
37nscadm	:= POBJS = nscadm.o
38nskernd	:= POBJS = nskernd.o
39
40CFLAGS += -v
41CPPFLAGS += -DBUILD_REV_STR='"5.11"'
42NSCADM_LDLIBS = -lnsctl
43NSKERND_LDLIBS = -lnsctl -ldscfg
44LINTFLAGS += -Xa -n -s -x -m -u -Dlint -errhdr=%user -DDEBUG
45LINTDIR = $(KBASE)/lintdir
46POFILE = nsctl_all.po
47LFILE = $(LINTDIR)/nsctl.ln
48ROOTLIBLINK = $(ROOTLIB)/nskernd
49ROOTSBINLINK = $(ROOTUSRSBIN)/nscadm
50
51all	:=	TARGET= all
52install	:=	TARGET= install
53clean	:=	TARGET= clean
54clobber	:=	TARGET= clobber
55lint	:=	TARGET= lint
56
57nscadm	:=	LDLIBS += $(NSCADM_LDLIBS)
58nskernd	:=	LDLIBS += $(NSKERND_LDLIBS)
59
60.KEEP_STATE:
61
62.PARALLEL: $(OBJS)
63
64all: $(PROG) $(POFILES)
65
66install: all $(ROOTPROG) $(ROOTBIN)/nskernd $(ROOTLIBLINK) $(ROOTSBINLINK)
67
68lint:	lint_SRCS
69
70clean:
71	$(RM) *.o $(POFILES)
72
73$(PROG): $$(POBJS)
74	$(LINK.c) $(POBJS) -o $@ $(LDLIBS)
75	$(POST_PROCESS)
76
77$(POFILE): $(POFILES)
78	$(RM) $@
79	$(CAT) $(POFILES) > $@
80
81$(ROOTLIBLINK): $(ROOTLIB) $(ROOTBIN)/nskernd
82	-$(RM) $@; $(LN) $(ROOTBIN)/nskernd $@
83
84$(ROOTSBINLINK): $(ROOTUSRSBIN) $(ROOTPROG)
85	-$(RM) $@; $(LN) $(ROOTBIN)/nscadm $@
86
87include	../../Makefile.targ
88