Makefile.am revision 72b676d7
1# $Id: Makefile.am,v 1.1.1.1 2008/08/02 05:16:35 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
28drivermandir = $(DRIVER_MAN_DIR)
29
30driverman_PRE = @DRIVER_NAME@.man
31
32driverman_DATA = $(driverman_PRE:man=@DRIVER_MAN_SUFFIX@)
33
34EXTRA_DIST = @DRIVER_NAME@.man
35
36CLEANFILES = $(driverman_DATA)
37
38SED = sed
39
40# Strings to replace in man pages
41XORGRELSTRING = @PACKAGE_STRING@
42  XORGMANNAME = X Version 11
43
44MANDEFS =  \
45	-D__vendorversion__="\"$(XORGRELSTRING)\" \"$(XORGMANNAME)\"" \
46	-D__appmansuffix__=$(APP_MAN_SUFFIX) \
47	-D__filemansuffix__=$(FILE_MAN_SUFFIX) \
48	-D__libmansuffix__=$(LIB_MAN_SUFFIX) \
49	-D__miscmansuffix__=$(MISC_MAN_SUFFIX) \
50	-D__drivermansuffix__=$(DRIVER_MAN_SUFFIX) \
51	-D__adminmansuffix__=$(ADMIN_MAN_SUFFIX) \
52	-D__xconfigfile__=xorg.conf \
53	-D__xservername__=Xorg
54
55# Translate XCOMM into pound sign with sed, rather than passing -DXCOMM=XCOMM
56# to cpp, because that trick does not work on all ANSI C preprocessors.
57# Delete line numbers from the cpp output (-P is not portable, I guess).
58# Allow XCOMM to be preceded by whitespace and provide a means of generating
59# output lines with trailing backslashes.
60# Allow XHASH to always be substituted, even in cases where XCOMM isn't.
61
62CPP_SED_MAGIC = $(SED) -e '/^\#  *[0-9][0-9]*  *.*$$/d' \
63                       -e '/^\#line  *[0-9][0-9]*  *.*$$/d' \
64                       -e '/^[         ]*XCOMM$$/s/XCOMM/\#/' \
65                       -e '/^[         ]*XCOMM[^a-zA-Z0-9_]/s/XCOMM/\#/' \
66                       -e '/^[         ]*XHASH/s/XHASH/\#/' \
67                       -e '/\@\@$$/s/\@\@$$/\\/'
68
69SUFFIXES = .$(DRIVER_MAN_SUFFIX) .man
70
71.man.$(DRIVER_MAN_SUFFIX):
72	$(RAWCPP) $(RAWCPPFLAGS) $(MANDEFS) $(EXTRAMANDEFS) < $< | $(CPP_SED_MAGIC) > $@
73
74