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