Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
3069N/A#
3069N/A# CDDL HEADER START
3069N/A#
3069N/A# The contents of this file are subject to the terms of the
3069N/A# Common Development and Distribution License, Version 1.0 only
3069N/A# (the "License"). You may not use this file except in compliance
3069N/A# with the License.
3069N/A#
3069N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
3069N/A# or http://www.opensolaris.org/os/licensing.
3069N/A# See the License for the specific language governing permissions
3069N/A# and limitations under the License.
3069N/A#
3069N/A# When distributing Covered Code, include this CDDL HEADER in each
3069N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
3069N/A# If applicable, add the following below this CDDL HEADER, with the
3069N/A# fields enclosed by brackets "[]" replaced with your own identifying
3069N/A# information: Portions Copyright [yyyy] [name of copyright owner]
3069N/A#
3069N/A# CDDL HEADER END
3069N/A#
3069N/A# Copyright 1999 Sun Microsystems, Inc. All rights reserved.
3069N/A# Use is subject to license terms.
3069N/A#
3069N/A
3069N/APROG= codereview
3069N/A
3069N/AOBJS= lwlp.o
3069N/ASRCS= $(OBJS:%.o=%.c)
3069N/ACLEANFILES += $(OBJS)
3069N/ATMPDIR= /tmp
3069N/A
3069N/Ainclude ../Makefile.tools
3069N/A
3069N/ACERRWARN += -_gcc=-Wno-parentheses
3069N/A
3069N/AMAN1FILES= codereview.1
3069N/A
3069N/A$(ROOTONBLDMAN1FILES) := FILEMODE= 644
3069N/A
3069N/ACOPTS= -O
3069N/A
3069N/A.KEEP_STATE:
3069N/A
3069N/A.PARALLEL: $(OBJS)
3069N/A
3069N/Aall: $(PROG)
3069N/A
3069N/A$(PROG): $(OBJS)
3069N/A $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
3069N/A $(POST_PROCESS)
3069N/A
3069N/Ainstall: all .WAIT $(ROOTONBLDMACHPROG) $(ROOTONBLDMAN1FILES)
3069N/A
3069N/Aclean:
3069N/A $(RM) $(CLEANFILES)
3069N/A
3069N/Alint: lint_SRCS
3069N/A
3069N/Ainclude ../Makefile.targ
3069N/A