Makefile.in revision 34729dbcb3526974cf98ee03ec20a107d9458417
1008N/A# $Id: Makefile.in,v 1.2 2001/03/28 02:12:35 m-kasahr Exp $
1008N/A# Copyright (c) 2000 Japan Network Information Center. All rights reserved.
1008N/A#
1008N/A# By using this file, you agree to the terms and conditions set forth bellow.
1008N/A#
1008N/A# LICENSE TERMS AND CONDITIONS
1008N/A#
1008N/A# The following License Terms and Conditions apply, unless a different
1008N/A# license is obtained from Japan Network Information Center ("JPNIC"),
1008N/A# a Japanese association, Fuundo Bldg., 1-2 Kanda Ogawamachi, Chiyoda-ku,
1008N/A# Tokyo, Japan.
1008N/A#
1008N/A# 1. Use, Modification and Redistribution (including distribution of any
1008N/A# modified or derived work) in source and/or binary forms is permitted
1008N/A# under this License Terms and Conditions.
1008N/A#
1008N/A# 2. Redistribution of source code must retain the copyright notices as they
1008N/A# appear in each source code file, this License Terms and Conditions.
1008N/A#
1008N/A# 3. Redistribution in binary form must reproduce the Copyright Notice,
1008N/A# this License Terms and Conditions, in the documentation and/or other
1008N/A# materials provided with the distribution. For the purposes of binary
1008N/A# distribution the "Copyright Notice" refers to the following language:
1008N/A# "Copyright (c) Japan Network Information Center. All rights reserved."
1008N/A#
1008N/A# 4. Neither the name of JPNIC may be used to endorse or promote products
1008N/A# derived from this Software without specific prior written approval of
1008N/A# JPNIC.
1008N/A#
1008N/A# 5. Disclaimer/Limitation of Liability: THIS SOFTWARE IS PROVIDED BY JPNIC
1008N/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1008N/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
1008N/A# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JPNIC BE LIABLE
1008N/A# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
1008N/A# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
1008N/A# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
1008N/A# BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
1008N/A# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
1008N/A# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
1008N/A# ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
1008N/A#
1008N/A# 6. Indemnification by Licensee
1008N/A# Any person or entities using and/or redistributing this Software under
1008N/A# this License Terms and Conditions shall defend indemnify and hold
1008N/A# harmless JPNIC from and against any and all judgements damages,
1008N/A# expenses, settlement liabilities, cost and other liabilities of any
1008N/A# kind as a result of use and redistribution of this Software or any
1008N/A# claim, suite, action, litigation or proceeding by any third party
1008N/A# arising out of or relates to this License Terms and Conditions.
1008N/A#
1008N/A# 7. Governing Law, Jurisdiction and Venue
1008N/A# This License Terms and Conditions shall be governed by and and
1008N/A# construed in accordance with the law of Japan. Any person or entities
1008N/A# using and/or redistributing this Software under this License Terms and
1008N/A# Conditions hereby agrees and consent to the personal and exclusive
1008N/A# jurisdiction and venue of Tokyo District Court of Japan.
1008N/A
1008N/Asrcdir = @srcdir@
1008N/AVPATH = @srcdir@
1008N/A
1008N/Aprefix = @prefix@
1008N/Aexec_prefix = @exec_prefix@
1008N/A
1008N/ASHELL = @SHELL@
1008N/A
1008N/ASUBDIRS = mdn
1008N/A
1008N/Aall:
1008N/A for d in $(SUBDIRS); do (cd $$d; $(MAKE) all); done
1008N/A
1008N/Ainstall:
1008N/A for d in $(SUBDIRS); do (cd $$d; $(MAKE) install); done
1008N/A
1008N/Aclean:
1008N/A for d in $(SUBDIRS); do (cd $$d; $(MAKE) clean); done
1008N/A