Makefile revision b599bd937c305a895426e8c412ca920ce7824850
3998N/A#
3998N/A# CDDL HEADER START
3998N/A#
3998N/A# The contents of this file are subject to the terms of the
3998N/A# Common Development and Distribution License (the "License").
3998N/A# You may not use this file except in compliance with the License.
3998N/A#
3998N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3998N/A# or http://www.opensolaris.org/os/licensing.
3998N/A# See the License for the specific language governing permissions
3998N/A# and limitations under the License.
3998N/A#
3998N/A# When distributing Covered Code, include this CDDL HEADER in each
3998N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3998N/A# If applicable, add the following below this CDDL HEADER, with the
3998N/A# fields enclosed by brackets "[]" replaced with your own identifying
3998N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3998N/A#
3998N/A# CDDL HEADER END
3998N/A#
3998N/A#
3998N/A#
6402N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
3998N/A# Use is subject to license terms.
3998N/A#
3998N/A
3998N/APROG = vntsd
3998N/ASRCS = auth.c cmd.c common.c console.c listen.c queue.c read.c vntsd.c \
3998N/A vntsdvcc.c write.c
3998N/AOBJS = $(SRCS:.c=.o)
3998N/A
3998N/AMANIFEST = vntsd.xml
3998N/ASVCMETHOD = svc-vntsd
3998N/A
3998N/Ainclude ../Makefile.cmd
3998N/A
3998N/APOFILES = $(SRCS:.c=.po)
3998N/APOFILE = $(PROG)_msg.po
3998N/A
3998N/ACFLAGS += $(CCVERBOSE)
3998N/A
3998N/ALDLIBS += -lsocket -lnsl -lsecdb
3998N/A
3998N/AROOTCMDDIR = $(ROOTLIB)/ldoms
3998N/AROOTMANIFESTDIR = $(ROOTSVCPLATFORMSUN4V)
3998N/A
3998N/A.KEEP_STATE:
3998N/A
6402N/Aall: $(PROG)
3998N/A
3998N/Ainstall: all \
3998N/A $(ROOTCMD) \
3998N/A $(ROOTMANIFEST) \
3998N/A $(ROOTSVCMETHOD)
3998N/A
3998N/A$(PROG): $(OBJS)
3998N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
3998N/A $(POST_PROCESS)
4337N/A
4337N/A$(POFILE): $(POFILES)
3998N/A $(RM) $@
3998N/A $(CAT) $(POFILES) > $@
check: $(CHKMANIFEST)
lint: lint_SRCS
clean:
$(RM) $(OBJS)
include ../Makefile.targ