Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
327N/A#
327N/A# CDDL HEADER START
327N/A#
327N/A# The contents of this file are subject to the terms of the
327N/A# Common Development and Distribution License (the "License").
327N/A# You may not use this file except in compliance with the License.
327N/A#
327N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
327N/A# or http://www.opensolaris.org/os/licensing.
327N/A# See the License for the specific language governing permissions
327N/A# and limitations under the License.
327N/A#
327N/A# When distributing Covered Code, include this CDDL HEADER in each
327N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
327N/A# If applicable, add the following below this CDDL HEADER, with the
327N/A# fields enclosed by brackets "[]" replaced with your own identifying
327N/A# information: Portions Copyright [yyyy] [name of copyright owner]
327N/A#
327N/A# CDDL HEADER END
327N/A#
327N/A# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
327N/A# Use is subject to license terms.
824N/A#
327N/A# cmd/w/i386/Makefile
327N/A#
327N/A
327N/APROG= w
327N/A
824N/AOBJS= w.o
327N/A
618N/ASRCS= $(OBJS:%.o=../%.c)
327N/A
824N/Ainclude ../../Makefile.cmd
327N/A
327N/ACFLAGS += $(CCVERBOSE)
327N/ACERRWARN += -_gcc=-Wno-parentheses
327N/A
327N/Alint := LINTFLAGS = -x
327N/A
327N/AROOTLINK= $(ROOTBIN32)/uptime
327N/A
327N/AFILEMODE= 4555
327N/A
327N/A.KEEP_STATE:
327N/A
327N/A%.o: ../%.c
327N/A $(COMPILE.c) $<
327N/A
327N/Aall: $(PROG)
327N/A
327N/A$(PROG): $(OBJS)
327N/A $(LINK.c) $(OBJS) -o $@ $(LDLIBS)
327N/A $(POST_PROCESS)
327N/A
327N/Ainstall: all $(ROOTLINK)
327N/A
327N/A$(ROOTLINK): $(ROOTPROG32)
327N/A $(RM) $@
327N/A $(LN) $(ROOTPROG32) $@
327N/A
327N/Aclean:
824N/A $(RM) $(OBJS)
327N/A
327N/Alint:
327N/A $(LINT.c) $(SRCS) $(LDLIBS)
327N/A
327N/Ainclude ../../Makefile.targ
327N/A