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 26 DYNPROG = nscadm nskernd 27 28 include ../../Makefile.cmd 29 include ../Makefile.com 30 31 PROG = $(DYNPROG) 32 33 OBJS= nscadm.o nskernd.o 34 SRCS= $(OBJS:%.o=%.c) 35 POFILES= $(OBJS:%.o=%.po) 36 37 nscadm := POBJS = nscadm.o 38 nskernd := POBJS = nskernd.o 39 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 50 51 all := TARGET= all 52 install := TARGET= install 53 clean := TARGET= clean 54 clobber := TARGET= clobber 55 lint := TARGET= lint 56 57 nscadm := LDLIBS += $(NSCADM_LDLIBS) 58 nskernd := LDLIBS += $(NSKERND_LDLIBS) 59 60 .KEEP_STATE: 61 62 .PARALLEL: $(OBJS) 63 64 all: $(PROG) $(POFILES) 65 66 install: all $(ROOTPROG) $(ROOTBIN)/nskernd $(ROOTLIBLINK) $(ROOTSBINLINK) 67 68 lint: lint_SRCS 69 70 clean: 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 87 include ../../Makefile.targ