~ubuntu-branches/ubuntu/intrepid/xserver-xgl/intrepid

« back to all changes in this revision

Viewing changes to hw/xfree86/doc/sgml/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Matthew Garrett
  • Date: 2006-02-13 14:21:43 UTC
  • Revision ID: james.westby@ubuntu.com-20060213142143-mad6z9xzem7hzxz9
Tags: upstream-7.0.0
ImportĀ upstreamĀ versionĀ 7.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#  Copyright 2005 Red Hat, Inc.
 
2
#
 
3
#  Permission to use, copy, modify, distribute, and sell this software
 
4
#  and its documentation for any purpose is hereby granted without
 
5
#  fee, provided that the above copyright notice appear in all copies
 
6
#  and that both that copyright notice and this permission notice
 
7
#  appear in supporting documentation, and that the name of Red Hat
 
8
#  not be used in advertising or publicity pertaining to distribution
 
9
#  of the software without specific, written prior permission.  Red
 
10
#  Hat makes no representations about the suitability of this software
 
11
#  for any purpose.  It is provided "as is" without express or implied
 
12
#  warranty.
 
13
#
 
14
#  RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
 
15
#  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
 
16
#  NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
 
17
#  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
 
18
#  OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
 
19
#  NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
 
20
#  CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 
21
 
 
22
SGML_FILES = DESIGN.sgml
 
23
 
 
24
if BUILD_LINUXDOC
 
25
TXT_FILES  = $(SGML_FILES:%.sgml=%.txt)
 
26
PS_FILES   = $(SGML_FILES:%.sgml=%.ps)
 
27
if BUILD_PDFDOC
 
28
PDF_FILES  = $(SGML_FILES:%.sgml=%.pdf)
 
29
endif
 
30
HTML_FILES = $(SGML_FILES:%.sgml=%.html)
 
31
 
 
32
SUFFIXES = .sgml .txt .html .ps .pdf
 
33
 
 
34
.sgml.txt:
 
35
        @rm -f $@
 
36
        $(MAKE_TEXT) $<
 
37
 
 
38
.sgml.ps:
 
39
        @rm -f $@
 
40
        $(MAKE_PS) $<
 
41
 
 
42
.ps.pdf:
 
43
        @rm -f $@
 
44
        $(MAKE_PDF) $<
 
45
 
 
46
.sgml.html:
 
47
        @rm -f $@
 
48
        $(MAKE_HTML) $<
 
49
 
 
50
noinst_DATA = $(TXT_FILES) $(PS_FILES) $(PDF_FILES) $(HTML_FILES)
 
51
CLEANFILES = $(TXT_FILES) $(PS_FILES) $(PDF_FILES) $(HTML_FILES)
 
52
endif
 
53
 
 
54
EXTRA_DIST = $(SGML_FILES)