Makefile revision 380
5488N/A# Makefile for X Consolidation Open Source font modules
5488N/A#
5488N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
5488N/A# Use subject to license terms.
5488N/A#
5488N/A# Permission is hereby granted, free of charge, to any person obtaining a
5488N/A# copy of this software and associated documentation files (the
5488N/A# "Software"), to deal in the Software without restriction, including
5488N/A# without limitation the rights to use, copy, modify, merge, publish,
5488N/A# distribute, and/or sell copies of the Software, and to permit persons
5488N/A# to whom the Software is furnished to do so, provided that the above
5488N/A# copyright notice(s) and this permission notice appear in all copies of
5488N/A# the Software and that both the above copyright notice(s) and this
5488N/A# permission notice appear in supporting documentation.
5488N/A#
5488N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
5488N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
5488N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
5488N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
5488N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
6083N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
6083N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
5488N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
5488N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
6083N/A#
5488N/A# Except as contained in this notice, the name of a copyright holder
5488N/A# shall not be used in advertising or otherwise to promote the sale, use
5488N/A# or other dealings in this Software without prior written authorization
6083N/A# of the copyright holder.
6083N/A#
6083N/A# @(#)Makefile 1.7 08/03/25 SMI
6083N/A#
6083N/A###############################################################################
6083N/A
6083N/AOS_SUBDIRS = \
6083N/A encodings \
6083N/A sun-aliases \
6083N/A bitstream-vera \
5488N/A deja-vu \
5488N/A liberation \
5488N/A adobe-utopia-type1 \
6083N/A bh-type1 \
5488N/A bitstream-type1 \
5488N/A ibm-type1 \
5488N/A xfree86-type1
5488N/A
6083N/A# Need to install to proto area by default for inter-package dependencies to
5488N/A# work right.
6083N/Aall: install
5861N/A
5861N/AWorld: clean install
5502N/A
5502N/Aclean:
5502N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=clean
5502N/A
5502N/Ainstall:
5502N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=install
5502N/A
5502N/Adownload:
5488N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=download
5488N/A
5488N/Asource:
5488N/A $(MAKE) $(MFLAGS) subdirs OS_TARGET=source
5488N/A
5488N/Asubdirs:
5488N/A @case '${MFLAGS}' in *[ik]*) set +e;; esac; \
5488N/A for i in $(OS_SUBDIRS) ;\
5488N/A do \
5488N/A (cd $$i ; echo "## making" $(OS_TARGET) "in open-src/font/$$i..."; \
5488N/A $(MAKE) $(MFLAGS) CDEBUGFLAGS="$(CDEBUGFLAGS)" $(OS_TARGET)); \
5488N/A done
5488N/A