Makefile revision 75614fd9696d97522ed7ed8009a66eb3544d61ad
2086N/A#
2086N/A# CDDL HEADER START
2086N/A#
2086N/A# The contents of this file are subject to the terms of the
2086N/A# Common Development and Distribution License (the "License").
2086N/A# You may not use this file except in compliance with the License.
2086N/A#
2086N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2086N/A# or http://www.opensolaris.org/os/licensing.
2086N/A# See the License for the specific language governing permissions
2086N/A# and limitations under the License.
2086N/A#
2086N/A# When distributing Covered Code, include this CDDL HEADER in each
2086N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2086N/A# If applicable, add the following below this CDDL HEADER, with the
2086N/A# fields enclosed by brackets "[]" replaced with your own identifying
2086N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2086N/A#
2086N/A# CDDL HEADER END
2086N/A#
2086N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
2086N/A# Use is subject to license terms.
2086N/A#
2122N/A# cmd/ssh/sftp/Makefile
2086N/A
2086N/APROG = sftp
2086N/A
2086N/AOBJS = \
2086N/A sftp.o \
2086N/A sftp-client.o \
2086N/A sftp-glob.o
2086N/A
2086N/ASRCS = $(OBJS:.o=.c)
2086N/A
2086N/Ainclude ../../Makefile.cmd
2086N/Ainclude ../Makefile.ssh-common
2086N/A
2086N/ADIRS= $(ROOTLIBSUNSSH)
2086N/A
2086N/ALDLIBS += $(SSH_COMMON_LDLIBS) -lsocket -lcrypto -ltecla
2086N/A
2086N/APOFILE_DIR = ..
2086N/A
2086N/A.KEEP_STATE:
2086N/A
2086N/A.PARALLEL: $(OBJS)
2086N/A
2086N/Aall: $(PROG)
2086N/A
2086N/A$(PROG): $(OBJS) ../libssh/$(MACH)/libssh.a ../libopenbsd-compat/$(MACH)/libopenbsd-compat.a
2086N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS) $(DYNFLAGS)
2086N/A $(POST_PROCESS)
2086N/A
2086N/A$(DIRS):
2086N/A $(INS.dir)
2086N/A
2086N/A$(ROOTBIN)/sftp: $(ROOTLIBSUNSSH)/sftp
2086N/A -$(RM) $@; $(SYMLINK) ../lib/sunssh/sftp $@
2086N/A
2086N/Ainstall: all $(DIRS) $(ROOTPROG)
2086N/A
2086N/Aclean:
2086N/A $(RM) -f $(OBJS) $(PROG)
2086N/A
2086N/Alint: lint_SRCS
2086N/A
2086N/Ainclude ../Makefile.msg.targ
2086N/Ainclude ../../Makefile.targ
2086N/A