Makefile revision 335
519N/A###############################################################################
519N/A#
519N/A# xfd 1.x Makefile
519N/A#
519N/A# Copyright 2008 Sun Microsystems, Inc. All rights reserved.
519N/A# Use subject to license terms.
519N/A#
519N/A# Permission is hereby granted, free of charge, to any person obtaining a
519N/A# copy of this software and associated documentation files (the
519N/A# "Software"), to deal in the Software without restriction, including
519N/A# without limitation the rights to use, copy, modify, merge, publish,
519N/A# distribute, and/or sell copies of the Software, and to permit persons
519N/A# to whom the Software is furnished to do so, provided that the above
519N/A# copyright notice(s) and this permission notice appear in all copies of
519N/A# the Software and that both the above copyright notice(s) and this
519N/A# permission notice appear in supporting documentation.
519N/A#
519N/A# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
873N/A# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
519N/A# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
519N/A# OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
519N/A# HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL
519N/A# INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING
519N/A# FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
5169N/A# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
5414N/A# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
519N/A#
519N/A# Except as contained in this notice, the name of a copyright holder
519N/A# shall not be used in advertising or otherwise to promote the sale, use
5192N/A# or other dealings in this Software without prior written authorization
5192N/A# of the copyright holder.
519N/A#
1590N/A# @(#)Makefile 1.1 08/02/26
519N/A#
519N/A
519N/A# Package name used in tarballs
519N/AAPP_NAME=xfd
519N/A
519N/A# Version number (used in path names)
519N/AAPP_VERS=1.0.1
519N/A
519N/A# Patches to apply to source after unpacking, in order
519N/ASOURCE_PATCHES = xfd.patch
519N/A
519N/ALIB_ADD_LD_OPTIONS += -L$(PROTODIR)$(X11_DIR)/lib/xorgcfg
519N/A
519N/A# Man pages to apply Sun footer to & attributes to list
519N/ASUNTOUCHED_MANPAGES=*.man
519N/ASUNTOUCH_MAN_FLAGS= \
5192N/A -a '{Availability, SUNWxwplt} {Interface Stability, Committed}'
519N/A
519N/Ainclude ../Makefile.inc
5192N/A
519N/Ainstall_gen: install_po
519N/Ainstall_po:
519N/A mkdir -p $(PROTODIR)/usr/X11/share/locale/C/LC_MESSAGES
519N/A cp xfd.po $(PROTODIR)/usr/X11/share/locale/C/LC_MESSAGES
1590N/A