Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
4909N/A#
4909N/A# CDDL HEADER START
4909N/A#
4909N/A# The contents of this file are subject to the terms of the
4909N/A# Common Development and Distribution License, Version 1.0 only
4909N/A# (the "License"). You may not use this file except in compliance
4909N/A# with the License.
4909N/A#
4909N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
4909N/A# or http://www.opensolaris.org/os/licensing.
4909N/A# See the License for the specific language governing permissions
4909N/A# and limitations under the License.
4909N/A#
4909N/A# When distributing Covered Code, include this CDDL HEADER in each
4909N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
4909N/A# If applicable, add the following below this CDDL HEADER, with the
4909N/A# fields enclosed by brackets "[]" replaced with your own identifying
4909N/A# information: Portions Copyright [yyyy] [name of copyright owner]
4909N/A#
4909N/A# CDDL HEADER END
4909N/A#
4909N/A#
5693N/A#ident "%Z%%M% %I% %E% SMI"
4909N/A#
4909N/A# Copyright (c) 1989 by Sun Microsystems, Inc.
4909N/A#
4909N/A# cmd/cmd-inet/usr.sbin/htable/Makefile
4909N/A
5693N/APROG= htable
4909N/AOBJS= htable.o parse.o scan.o
4909N/ASRCS= htable.c parse.y scan.l
4909N/A
5693N/Ainclude ../../../Makefile.cmd
4909N/A
4909N/ACPPFLAGS += -DSYSV -DSTRNET -DBSD_COMP
4909N/ALDLIBS += -lsocket -lnsl
4909N/AYFLAGS += -d
5693N/A
4909N/A.KEEP_STATE:
4909N/A
4909N/Aall: $(PROG)
4909N/A
4909N/A$(PROG): $(OBJS)
4909N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
4909N/A $(POST_PROCESS)
4909N/A
4909N/Ainstall: all $(ROOTUSRSBINPROG)
4909N/A
4909N/Aclean:
4909N/A $(RM) $(OBJS) y.tab.h y.tab.c parse.c scan.c
4909N/A
4909N/Alint: lint_PROG
4909N/A
include ../../../Makefile.targ
# explicit target for the NSE
y.tab.h: parse.y
$(YACC.y) $?