Makefile revision 672986541be54a7a471bb088e60780c37e371d7e
2605N/A#
2605N/A# CDDL HEADER START
2605N/A#
2605N/A# The contents of this file are subject to the terms of the
2605N/A# Common Development and Distribution License (the "License").
2605N/A# You may not use this file except in compliance with the License.
2605N/A#
2605N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
2605N/A# or http://www.opensolaris.org/os/licensing.
2605N/A# See the License for the specific language governing permissions
2605N/A# and limitations under the License.
2605N/A#
2605N/A# When distributing Covered Code, include this CDDL HEADER in each
2605N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
2605N/A# If applicable, add the following below this CDDL HEADER, with the
2605N/A# fields enclosed by brackets "[]" replaced with your own identifying
2605N/A# information: Portions Copyright [yyyy] [name of copyright owner]
2605N/A#
2605N/A# CDDL HEADER END
2605N/A#
2605N/A#
2605N/A#ident "%Z%%M% %I% %E% SMI"
3769N/A#
2605N/A# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
4070N/A# Use is subject to license terms.
2605N/A#
4070N/A# cmd/sgs/error/i386/Makefile
4070N/A
4070N/APROG= error
2605N/A
2605N/Ainclude ../../../Makefile.cmd
4070N/A
4070N/AOBJS= errormain.o errorinput.o errorpi.o errorsubr.o \
4070N/A errorfilter.o errortouch.o
2605N/A
2605N/ASRCS= $(OBJS:%.o=../common/%.c)
2605N/A
4070N/AINCLIST= -I../common
2605N/ADEFLIST= -DELF
2605N/ACPPFLAGS= $(INCLIST) $(DEFLIST) $(CPPFLAGS.master)
4070N/ACFLAGS += $(CCVERBOSE)
4070N/AC99MODE= $(C99_ENABLE)
4070N/A
4070N/ACLEANFILES += $(LINTOUT)
4070N/A
4070N/A%.o: ../common/%.c
4070N/A $(COMPILE.c) $<
4070N/A
4070N/A.KEEP_STATE:
4070N/A
4070N/Aall: $(PROG)
4070N/A
4070N/A$(PROG): $(OBJS)
4070N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
4070N/A $(POST_PROCESS)
4070N/A
4070N/Ainstall: all $(ROOTPROG) $(ROOTCCSBINLINK)
4070N/A
4070N/Aclean:
4070N/A $(RM) $(OBJS) $(CLEANFILES)
4070N/A
4070N/Alint: $(LINTOUT)
4070N/A
4070N/A$(LINTOUT): $(SRCS)
4070N/A $(LINT.c) $(SRCS) > $(LINTOUT) 2>&1
4070N/A
4070N/Ainclude ../../../Makefile.targ
4070N/A