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