/usr/lib/X11/config/lnxdoc.rules is in xutils-dev 1:7.7+5ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | XCOMM $XFree86: xc/config/cf/lnxdoc.rules,v 3.27 2003/01/15 03:17:29 dawes Exp $
XCOMM
XCOMM Rules for formatting Linuxdoc-SGML documentation
XCOMM
#include <lnxdoc.tmpl>
#ifdef DontInstallLinuxDoc
#define LinuxDocInstall(file,dest) /* do nothing */
#define LinuxDocInstallMultiple(files,dest) /* do nothing */
#define LinuxDocInstallIfExists(file,dest) /* do nothing */
#else
#define LinuxDocInstall(file,dest) InstallNonExecFile(file,dest)
#define LinuxDocInstallMultiple(files,dest) @@\
InstallMultipleDest(install,files,dest)
#define LinuxDocInstallIfExists(file,dir) @@\
install:: @@\
MakeDir($(DESTDIR)dir) @@\
@if [ -f file ]; then set -x; \ @@\
$(INSTALL) $(INSTALLFLAGS) $(INSTDATFLAGS) \ @@\
file $(DESTDIR)dir; \ @@\
fi
#endif
/* Version for sgmlfmt */
#if BuildLinuxDocPS
#define LinuxDocSgmlToPs(sgmlfile,base) @@\
all:: base.ps PdfTarget(base) @@\
@@\
base.ps: sgmlfile $(SGMLDEPENDS) @@\
RemoveFile(_$@ $@) @@\
@(BASE=`basename sgmlfile .sgml`;\ @@\
set -x;\ @@\
RemoveFile($$BASE.ps);\ @@\
$(SGMLFMTCMD) -f ps sgmlfile && \ @@\
$(MV) $$BASE.ps _$@ && $(MV) _$@ $@) @@\
@@\
LinuxDocInstall(base.ps,$(XFREE86PSDOCDIR)) @@\
@@\
ConvertPsToPdf(base) @@\
@@\
LinuxDocInstallIfExists(base.pdf,$(XFREE86PDFDOCDIR)) @@\
@@\
clean:: @@\
RemoveFile(Concat(_,base.ps) base.ps)
#else
#define LinuxDocSgmlToPs(sgmlfile,base) /**/
#endif
#if BuildLinuxDocText
#define LinuxDocSgmlToText(sgmlfile,textfile) @@\
AllTarget(textfile) @@\
@@\
textfile: sgmlfile $(SGMLDEPENDS) @@\
RemoveFiles(_$@ $@) @@\
@(BASE=`basename sgmlfile .sgml`;\ @@\
set -x;\ @@\
RemoveFile($$BASE.latin1);\ @@\
$(SGMLFMTCMD) -f latin1 -b -n sgmlfile && \ @@\
$(CVSIDENTFIX) < $$BASE.latin1 | $(XORGIDENTFIX) | $(XFREE86IDENTFIX) > _$@ && $(MV) _$@ $@ && \ @@\
RemoveFile($$BASE.latin1)) @@\
@@\
LinuxDocInstall(textfile,$(XFREE86DOCDIR)) @@\
@@\
clean:: @@\
@(file=textfile; set -x; RemoveFiles(_$$file $$file))
#else
#define LinuxDocSgmlToText(sgmlfile,textfile) /**/
#endif
#if BuildLinuxDocHtml
#define LinuxDocSgmlToHtml(sgmlfile,base) @@\
AllTarget(base.html) @@\
@@\
base.html: sgmlfile $(SGMLDEPENDS) @@\
@if [ sgmlfile != base.sgml ]; then $(LN) sgmlfile base.sgml; fi @@\
RemoveFiles(base*.html) @@\
$(SGMLFMTCMD) -f html base.sgml || RemoveFile($@) @@\
@if [ sgmlfile != base.sgml ]; then RemoveFile(base.sgml); fi @@\
@@\
LinuxDocInstallMultiple(base*.html,$(XFREE86HTMLDOCDIR)) @@\
@@\
clean:: @@\
RemoveFiles(base*.html)
#else
#define LinuxDocSgmlToHtml(sgmlfile,base) /**/
#endif
/*
* Rule for maintainers to use to updated formatted copies of docs in the
* source tree. Use with care.
*/
#ifndef UpdateFormattedDocLong
#define UpdateFormattedDocLong(textfile,dstdir,dstfile) @@\
update.docs:: textfile @@\
-@if [ -f dstdir/dstfile ]; then \ @@\
if [ "$(FORCEUPDATE)" = yes ]; then set -x; \ @@\
if [ "$(FOLLOWLINK)" = no ]; then \ @@\
$(RM) dstdir/dstfile; \ @@\
fi; \ @@\
cp textfile dstdir/dstfile; \ @@\
echo "" >> dstdir/dstfile; \ @@\
echo "\$$XdotOrg\$$" >> dstdir/dstfile; \ @@\
else \ @@\
$(RM) __tmp1__ __tmp2__; \ @@\
fgrep -v "\$$XdotOrg:" textfile > __tmp1__; \ @@\
fgrep -v "\$$XdotOrg:" dstdir/dstfile > __tmp2__; \ @@\
if diff -B __tmp1__ __tmp2__ > /dev/null 2>&1; then :; \ @@\
else set -x; \ @@\
if [ "$(FOLLOWLINK)" = no ]; then \ @@\
$(RM) dstdir/dstfile; \ @@\
fi; \ @@\
cp textfile dstdir/dstfile ; \ @@\
echo "" >> dstdir/dstfile; \ @@\
echo "\$$XdotOrg"": \$$" >> dstdir/dstfile; \ @@\
fi; \ @@\
fi; \ @@\
fi @@\
@$(RM) __tmp1__ __tmp2__
#endif
#ifndef UpdateFormattedDoc
#define UpdateFormattedDoc(textfile,dstdir) @@\
UpdateFormattedDocLong(textfile,dstdir,textfile)
#endif
/*
* Avoid using LinuxDocTargetLong with base != sgmlfile because HTML
* index generation assumes that base == sgmlfile.
*/
#define LinuxDocTargetLong(sgmlfile,textfile,base) @@\
LinuxDocSgmlToText(sgmlfile,textfile) @@\
LinuxDocSgmlToHtml(sgmlfile,base) @@\
LinuxDocSgmlToPs(sgmlfile,base) @@\
UpdateFormattedDoc(textfile,$(FORMATTEDDIR))
#define LinuxDocReadmeTarget(base) @@\
LinuxDocTargetLong(base.sgml,ReadmeFile(base),base)
#define LinuxDocTarget(base) @@\
LinuxDocTargetLong(base.sgml,base,base)
|