Makefile.am revision 191cded7
1# $Id: Makefile.am,v 1.1.1.1 2008/07/30 02:58:07 mrg Exp $ 2# 3# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 4# 5# Permission to use, copy, modify, distribute, and sell this software and its 6# documentation for any purpose is hereby granted without fee, provided that 7# the above copyright notice appear in all copies and that both that 8# copyright notice and this permission notice appear in supporting 9# documentation. 10# 11# The above copyright notice and this permission notice shall be included 12# in all copies or substantial portions of the Software. 13# 14# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 15# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 16# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 17# IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR 18# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 19# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 20# OTHER DEALINGS IN THE SOFTWARE. 21# 22# Except as contained in this notice, the name of the copyright holders shall 23# not be used in advertising or otherwise to promote the sale, use or 24# other dealings in this Software without prior written authorization 25# from the copyright holders. 26# 27 28libmandir = $(LIB_MAN_DIR) 29 30LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%) 31 32libman_PRE = XF86VM.man 33 34BUILT_SOURCES = shadows.DONE 35 36EXTRA_DIST = $(libman_PRE) 37 38CLEANFILES = $(libman_DATA) $(BUILT_SOURCES) 39 40libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) \ 41 $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) 42 43SED = sed 44 45# Strings to replace in man pages 46XORGRELSTRING = @PACKAGE_STRING@ 47 XORGMANNAME = X Version 11 48 49MAN_SUBSTS = \ 50 -e 's/__vendorversion__/"$(XORGRELSTRING)" "$(XORGMANNAME)"/' \ 51 -e 's/__xservername__/Xorg/g' \ 52 -e 's/__xconfigfile__/xorg.conf/g' \ 53 -e 's/__appmansuffix__/$(APP_MAN_SUFFIX)/g' \ 54 -e 's/__libmansuffix__/$(LIB_MAN_SUFFIX)/g' \ 55 -e 's/__filemansuffix__/$(FILE_MAN_SUFFIX)/g' 56 57SUFFIXES = .$(LIB_MAN_SUFFIX) .man 58 59.man.$(LIB_MAN_SUFFIX): 60 sed $(MAN_SUBSTS) < $< > $@ 61 62# Generate man page shadow files (Replaces InstallManPageAliases from Imake) 63 64XF86VM_shadows = \ 65 XF86VidModeQueryExtension \ 66 XF86VidModeQueryVersion \ 67 XF86VidModeGetModeLine \ 68 XF86VidModeGetAllModeLines \ 69 XF86VidModeDeleteModeLine \ 70 XF86VidModeModModeLine \ 71 XF86VidModeSwitchMode \ 72 XF86VidModeSwitchToMode \ 73 XF86VidModeLockModeSwitch \ 74 XF86VidModeGetMonitor \ 75 XF86VidModeGetViewPort \ 76 XF86VidModeSetViewPort \ 77 XF86VidModeValidateModeLine \ 78 XF86VidModeSetClientVersion \ 79 XF86VidModeGetDotClocks \ 80 XF86VidModeGetGamma \ 81 XF86VidModeSetGamma \ 82 XF86VidModeSetGammaRamp \ 83 XF86VidModeGetGammaRamp \ 84 XF86VidModeGetGammaRampSize \ 85 XF86VidModeGetPermissions 86 87shadows.DONE: 88 -rm -f $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) 89 (for i in $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) ; do \ 90 echo .so man$(LIB_MAN_DIR_SUFFIX)/XF86VM.$(LIB_MAN_SUFFIX) > $$i; \ 91 done) 92