diff options
Diffstat (limited to 'lib/libXxf86vm/man/Makefile.in')
-rw-r--r-- | lib/libXxf86vm/man/Makefile.in | 140 |
1 files changed, 58 insertions, 82 deletions
diff --git a/lib/libXxf86vm/man/Makefile.in b/lib/libXxf86vm/man/Makefile.in index 551be3c0c..675ed131c 100644 --- a/lib/libXxf86vm/man/Makefile.in +++ b/lib/libXxf86vm/man/Makefile.in @@ -15,30 +15,27 @@ @SET_MAKE@ # -# Copyright 2005 Sun Microsystems, Inc. All rights reserved. -# -# Permission to use, copy, modify, distribute, and sell this software and its -# documentation for any purpose is hereby granted without fee, provided that -# the above copyright notice appear in all copies and that both that -# copyright notice and this permission notice appear in supporting -# documentation. -# -# The above copyright notice and this permission notice shall be included -# in all copies or substantial portions of the Software. -# -# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS -# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. -# IN NO EVENT SHALL THE OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR -# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, -# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR -# OTHER DEALINGS IN THE SOFTWARE. -# -# Except as contained in this notice, the name of the copyright holders shall -# not be used in advertising or otherwise to promote the sale, use or -# other dealings in this Software without prior written authorization -# from the copyright holders. -# +# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved. +# +# Permission is hereby granted, free of charge, to any person obtaining a +# copy of this software and associated documentation files (the "Software"), +# to deal in the Software without restriction, including without limitation +# the rights to use, copy, modify, merge, publish, distribute, sublicense, +# and/or sell copies of the Software, and to permit persons to whom the +# Software is furnished to do so, subject to the following conditions: +# +# The above copyright notice and this permission notice (including the next +# paragraph) shall be included in all copies or substantial portions of the +# Software. +# +# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER +# DEALINGS IN THE SOFTWARE. +# srcdir = @srcdir@ top_srcdir = @top_srcdir@ @@ -143,6 +140,7 @@ MAINTAINER_MODE_FALSE = @MAINTAINER_MODE_FALSE@ MAINTAINER_MODE_TRUE = @MAINTAINER_MODE_TRUE@ MAKEINFO = @MAKEINFO@ MALLOC_ZERO_CFLAGS = @MALLOC_ZERO_CFLAGS@ +MAN_SUBSTS = @MAN_SUBSTS@ MISC_MAN_DIR = @MISC_MAN_DIR@ MISC_MAN_SUFFIX = @MISC_MAN_SUFFIX@ NMEDIT = @NMEDIT@ @@ -156,12 +154,13 @@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ RANLIB = @RANLIB@ -SED = sed +SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMALLOC_ZERO_CFLAGS = @XMALLOC_ZERO_CFLAGS@ +XORG_MAN_PAGE = @XORG_MAN_PAGE@ XTMALLOC_ZERO_CFLAGS = @XTMALLOC_ZERO_CFLAGS@ XXF86VM_CFLAGS = @XXF86VM_CFLAGS@ XXF86VM_LIBS = @XXF86VM_LIBS@ @@ -213,54 +212,40 @@ sharedstatedir = @sharedstatedir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ libmandir = $(LIB_MAN_DIR) -LIB_MAN_DIR_SUFFIX = $(LIB_MAN_DIR:@mandir@/man%=%) -libman_PRE = XF86VM.man -BUILT_SOURCES = shadows.DONE +libman_PRE = \ + XF86VM.man \ + $(XF86VM_shadows:=.man) + +XF86VM_shadows = \ + XF86VidModeQueryExtension \ + XF86VidModeQueryVersion \ + XF86VidModeGetModeLine \ + XF86VidModeGetAllModeLines \ + XF86VidModeDeleteModeLine \ + XF86VidModeModModeLine \ + XF86VidModeSwitchMode \ + XF86VidModeSwitchToMode \ + XF86VidModeLockModeSwitch \ + XF86VidModeGetMonitor \ + XF86VidModeGetViewPort \ + XF86VidModeSetViewPort \ + XF86VidModeValidateModeLine \ + XF86VidModeSetClientVersion \ + XF86VidModeGetDotClocks \ + XF86VidModeGetGamma \ + XF86VidModeSetGamma \ + XF86VidModeSetGammaRamp \ + XF86VidModeGetGammaRamp \ + XF86VidModeGetGammaRampSize \ + XF86VidModeGetPermissions + EXTRA_DIST = $(libman_PRE) -CLEANFILES = $(libman_DATA) $(BUILT_SOURCES) -libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) \ - $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) - - -# Strings to replace in man pages -XORGRELSTRING = @PACKAGE_STRING@ -XORGMANNAME = X Version 11 -MAN_SUBSTS = \ - -e 's/__vendorversion__/"$(XORGRELSTRING)" "$(XORGMANNAME)"/' \ - -e 's/__xservername__/Xorg/g' \ - -e 's/__xconfigfile__/xorg.conf/g' \ - -e 's/__appmansuffix__/$(APP_MAN_SUFFIX)/g' \ - -e 's/__libmansuffix__/$(LIB_MAN_SUFFIX)/g' \ - -e 's/__filemansuffix__/$(FILE_MAN_SUFFIX)/g' +CLEANFILES = $(libman_DATA) +libman_DATA = $(libman_PRE:man=@LIB_MAN_SUFFIX@) +# String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure SUFFIXES = .$(LIB_MAN_SUFFIX) .man - -# Generate man page shadow files (Replaces InstallManPageAliases from Imake) -XF86VM_shadows = \ - XF86VidModeQueryExtension \ - XF86VidModeQueryVersion \ - XF86VidModeGetModeLine \ - XF86VidModeGetAllModeLines \ - XF86VidModeDeleteModeLine \ - XF86VidModeModModeLine \ - XF86VidModeSwitchMode \ - XF86VidModeSwitchToMode \ - XF86VidModeLockModeSwitch \ - XF86VidModeGetMonitor \ - XF86VidModeGetViewPort \ - XF86VidModeSetViewPort \ - XF86VidModeValidateModeLine \ - XF86VidModeSetClientVersion \ - XF86VidModeGetDotClocks \ - XF86VidModeGetGamma \ - XF86VidModeSetGamma \ - XF86VidModeSetGammaRamp \ - XF86VidModeGetGammaRamp \ - XF86VidModeGetGammaRampSize \ - XF86VidModeGetPermissions - -all: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) all-am +all: all-am .SUFFIXES: .SUFFIXES: .$(LIB_MAN_SUFFIX) .man @@ -355,15 +340,13 @@ distdir: $(DISTFILES) fi; \ done check-am: all-am -check: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) check-am +check: check-am all-am: Makefile $(DATA) installdirs: for dir in "$(DESTDIR)$(libmandir)"; do \ test -z "$$dir" || $(mkdir_p) "$$dir"; \ done -install: $(BUILT_SOURCES) - $(MAKE) $(AM_MAKEFLAGS) install-am +install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am @@ -388,7 +371,6 @@ distclean-generic: maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." - -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am @@ -447,13 +429,7 @@ uninstall-am: uninstall-info-am uninstall-libmanDATA .man.$(LIB_MAN_SUFFIX): - sed $(MAN_SUBSTS) < $< > $@ - -shadows.DONE: - -rm -f $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) - (for i in $(XF86VM_shadows:=.@LIB_MAN_SUFFIX@) ; do \ - echo .so man$(LIB_MAN_DIR_SUFFIX)/XF86VM.$(LIB_MAN_SUFFIX) > $$i; \ - done) + $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@ # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |