xref: /illumos-gate/usr/src/cmd/cmd-inet/usr.bin/nc/Makefile (revision 2175ea5bc8e06a26d0789a23fb8caeb355b0e2b4)
103100a63Svk199839#
203100a63Svk199839# CDDL HEADER START
303100a63Svk199839#
403100a63Svk199839# The contents of this file are subject to the terms of the
503100a63Svk199839# Common Development and Distribution License (the "License").
603100a63Svk199839# You may not use this file except in compliance with the License.
703100a63Svk199839#
803100a63Svk199839# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
903100a63Svk199839# or http://www.opensolaris.org/os/licensing.
1003100a63Svk199839# See the License for the specific language governing permissions
1103100a63Svk199839# and limitations under the License.
1203100a63Svk199839#
1303100a63Svk199839# When distributing Covered Code, include this CDDL HEADER in each
1403100a63Svk199839# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
1503100a63Svk199839# If applicable, add the following below this CDDL HEADER, with the
1603100a63Svk199839# fields enclosed by brackets "[]" replaced with your own identifying
1703100a63Svk199839# information: Portions Copyright [yyyy] [name of copyright owner]
1803100a63Svk199839#
1903100a63Svk199839# CDDL HEADER END
2003100a63Svk199839#
2103100a63Svk199839#
2203100a63Svk199839# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
2303100a63Svk199839# Use is subject to license terms.
2403100a63Svk199839#
2503100a63Svk199839# ident	"%Z%%M%	%I%	%E% SMI"
2603100a63Svk199839#
2703100a63Svk199839
2803100a63Svk199839PROG= nc
2903100a63Svk199839OBJS= atomicio.o netcat.o socks.o strtonum.o
3003100a63Svk199839
3103100a63Svk199839SRCS= $(OBJS:%.o=%.c)
3203100a63Svk199839
3303100a63Svk199839include		../../../Makefile.cmd
3403100a63Svk199839
35*2175ea5bSvk199839LDLIBS +=	-lresolv -lsocket
3603100a63Svk199839
3703100a63Svk199839.KEEP_STATE:
3803100a63Svk199839
3903100a63Svk199839all: $(PROG)
4003100a63Svk199839
4103100a63Svk199839$(PROG): $(OBJS)
4203100a63Svk199839	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
4303100a63Svk199839	$(POST_PROCESS)
4403100a63Svk199839
4503100a63Svk199839install: all $(ROOTPROG)
4603100a63Svk199839
4703100a63Svk199839clean:
4803100a63Svk199839	$(RM) $(PROG) $(OBJS)
4903100a63Svk199839
5003100a63Svk199839lint:   lint_SRCS
5103100a63Svk199839
5203100a63Svk199839include		../../../Makefile.targ
53