7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# CDDL HEADER START
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# The contents of this file are subject to the terms of the
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# Common Development and Distribution License (the "License").
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# You may not use this file except in compliance with the License.
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# or http://www.opensolaris.org/os/licensing.
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# See the License for the specific language governing permissions
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# and limitations under the License.
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# When distributing Covered Code, include this CDDL HEADER in each
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# If applicable, add the following below this CDDL HEADER, with the
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# fields enclosed by brackets "[]" replaced with your own identifying
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# information: Portions Copyright [yyyy] [name of copyright owner]
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# CDDL HEADER END
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# Copyright 2009 Sun Microsystems, Inc. All rights reserved.
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo# Use is subject to license terms.
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo#
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoinclude ../Makefile.lib
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai NgoHDRS= rp_plugin.h
7a286c471efbab8562f7655a82931904703fffe0Dai NgoHDRDIR= common
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai NgoSUBDIRS= $(MACH)
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo$(BUILD64)SUBDIRS += $(MACH64)
7a286c471efbab8562f7655a82931904703fffe0Dai NgoPOFILE= libreparse.po
7a286c471efbab8562f7655a82931904703fffe0Dai NgoMSGFILES= common/fs_reparse_lib.c
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoall := TARGET = all
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoclean := TARGET = clean
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoclobber := TARGET = clobber
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoinstall := TARGET = install
7a286c471efbab8562f7655a82931904703fffe0Dai Ngolint := TARGET = lint
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo.KEEP_STATE:
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoall clean clobber install lint: $(SUBDIRS)
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoinstall_h: $(ROOTHDRS)
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngocheck: $(CHECKHDRS)
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo$(POFILE): pofile_MSGFILES
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo_msg: $(MSGDOMAINPOFILE)
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo$(SUBDIRS): FRC
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo @cd $@; pwd; $(MAKE) $(TARGET)
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai NgoFRC:
7a286c471efbab8562f7655a82931904703fffe0Dai Ngo
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoinclude $(SRC)/lib/Makefile.targ
7a286c471efbab8562f7655a82931904703fffe0Dai Ngoinclude $(SRC)/Makefile.msg.targ