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