Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
5023N/A#
5023N/A# CDDL HEADER START
5023N/A#
5023N/A# The contents of this file are subject to the terms of the
5023N/A# Common Development and Distribution License, Version 1.0 only
5023N/A# (the "License"). You may not use this file except in compliance
5023N/A# with the License.
5023N/A#
5023N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
5023N/A# or http://www.opensolaris.org/os/licensing.
5023N/A# See the License for the specific language governing permissions
5023N/A# and limitations under the License.
5023N/A#
5023N/A# When distributing Covered Code, include this CDDL HEADER in each
5023N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
5023N/A# If applicable, add the following below this CDDL HEADER, with the
5023N/A# fields enclosed by brackets "[]" replaced with your own identifying
5023N/A# information: Portions Copyright [yyyy] [name of copyright owner]
5023N/A#
5023N/A# CDDL HEADER END
5023N/A#
5023N/A#
5023N/A# Copyright 1994-2003 Sun Microsystems, Inc. All rights reserved.
5023N/A# Use is subject to license terms.
5023N/A#
5023N/A# ident "%Z%%M% %I% %E% SMI"
5023N/A#
5023N/A# cmd/fs.d/cachefs/mdbug
5023N/A#
5023N/A
5023N/AFSTYPE= cachefs
5023N/A
5023N/Ainclude ../../Makefile.fstype
5023N/A
5023N/APROGOBJS = flist.o dbug.o
5023N/A
5023N/Ainclude ../Makefile.cachefs
5023N/A
5023N/AARFLAGS= rc
5023N/ACLOBBERFILES += $(LIB)
5023N/ACPPFLAGS= -DDBUG_UNIX=1
5023N/ACCFLAGS += -D_REENTRANT
5023N/ALIB = libdbug.a
5023N/A
5023N/Aall : $(LIB)
5023N/A
5023N/A$(LIB) : $(OBJS)
5023N/A $(RM) -f $(LIB)
5023N/A $(AR) $(ARFLAGS) $(LIB) $(OBJS)
5023N/A