Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
970N/A#
970N/A# CDDL HEADER START
1356N/A#
1356N/A# The contents of this file are subject to the terms of the
1610N/A# Common Development and Distribution License, Version 1.0 only
970N/A# (the "License"). You may not use this file except in compliance
970N/A# with the License.
970N/A#
970N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
970N/A# or http://www.opensolaris.org/os/licensing.
970N/A# See the License for the specific language governing permissions
970N/A# and limitations under the License.
970N/A#
970N/A# When distributing Covered Code, include this CDDL HEADER in each
970N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
970N/A# If applicable, add the following below this CDDL HEADER, with the
970N/A# fields enclosed by brackets "[]" replaced with your own identifying
970N/A# information: Portions Copyright [yyyy] [name of copyright owner]
970N/A#
970N/A# CDDL HEADER END
970N/A#
970N/A#
970N/A# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
970N/A# Use is subject to license terms.
970N/A#
970N/A# ident "%Z%%M% %I% %E% SMI"
970N/A#
970N/A
970N/APROG= isainfo
970N/A
970N/AELFCAP = $(SRC)/common/elfcap
970N/A
970N/AOBJS= isainfo.o elfcap.o
977N/ASRCS= isainfo.c $(ELFCAP)/elfcap.c
970N/A
970N/Ainclude ../Makefile.cmd
970N/A
970N/ACPPFLAGS += -DCAP_LOWERCASE -I$(ELFCAP) -I../../uts/common
970N/ACFLAGS += $(CCVERBOSE)
970N/A
1003N/A.KEEP_STATE:
1356N/A
1003N/Aall: $(PROG)
1003N/A
1003N/A$(PROG): $(OBJS)
1356N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
1356N/A $(POST_PROCESS)
1356N/A
1356N/Ainstall: all $(ROOTPROG)
970N/A
1356N/Aelfcap.o: $(ELFCAP)/elfcap.c
970N/A $(COMPILE.c) -o $@ $(ELFCAP)/elfcap.c
970N/A $(POST_PROCESS_O)
970N/A
970N/Aclean:
970N/A $(RM) $(OBJS)
970N/A
970N/Alint: lint_SRCS
970N/A
970N/Ainclude ../Makefile.targ
970N/A