Makefile revision 7014882c6a3672fd0e5d60200af8643ae53c5928
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# CDDL HEADER START
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# The contents of this file are subject to the terms of the
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# Common Development and Distribution License (the "License").
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# You may not use this file except in compliance with the License.
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# or http://www.opensolaris.org/os/licensing.
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# See the License for the specific language governing permissions
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# and limitations under the License.
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# When distributing Covered Code, include this CDDL HEADER in each
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# If applicable, add the following below this CDDL HEADER, with the
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# fields enclosed by brackets "[]" replaced with your own identifying
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# information: Portions Copyright [yyyy] [name of copyright owner]
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# CDDL HEADER END
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence# Use is subject to license terms.
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence#
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve Lawrence
efd4c9b63ad77503c101fc6c2ed8ba96c9d52964Steve LawrencePROG= addbadsec
OBJECTS= addbadsec.o ix_altsctr.o
SRCS= $(OBJECTS:.o=.c)
include ../Makefile.cmd
CPPFLAGS += -D_EXTVTOC
CERRWARN += -_gcc=-Wno-uninitialized
.KEEP_STATE:
all: $(PROG)
$(PROG): $(OBJECTS)
$(CC) -o $@ $(OBJECTS) $(LDFLAGS) $(LDLIBS)
$(POST_PROCESS)
install: all $(ROOTPROG)
clean:
lint: lint_SRCS
include ../Makefile.targ