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