451942998a
Wed Jan 22 2003 Tim Powers <timp@redhat.com> - rebuilt Mon Dec 02 2002 Tim Waugh <twaugh@redhat.com> 1.58.1-1 - 1.58.1. - No longer need marker patch. Mon Nov 04 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-2 - Ship profiling directory (bug #77191). Tue Oct 22 2002 Tim Waugh <twaugh@redhat.com> 1.57.0-1 - 1.57.0. Wed Oct 16 2002 Tim Waugh <twaugh@redhat.com> 1.56.1-1 - 1.56.1. - Use value-of not copy-of for fo:marker content. - Conflict with passivetex < 1.21.
42 lines
1.2 KiB
Makefile
42 lines
1.2 KiB
Makefile
BINDIR = /usr/bin
|
|
DESTDIR = ..overridden in spec file..
|
|
|
|
all: install
|
|
|
|
install: install-xsl install-img install-extensions install-misc
|
|
|
|
install-xsl:
|
|
mkdir -p $(DESTDIR)/{common,fo,html,htmlhelp/doc,javahelp,lib,template,xhtml,manpages,profiling}
|
|
cp common/*.dtd $(DESTDIR)/common
|
|
cp common/*.xml $(DESTDIR)/common
|
|
cp common/*.xsl $(DESTDIR)/common
|
|
cp fo/*.xml $(DESTDIR)/fo
|
|
cp fo/*.xsl $(DESTDIR)/fo
|
|
cp html/*.xml $(DESTDIR)/html
|
|
cp html/*.xsl $(DESTDIR)/html
|
|
cp htmlhelp/*.xml $(DESTDIR)/htmlhelp
|
|
cp htmlhelp/*.xsl $(DESTDIR)/htmlhelp
|
|
# cp htmlhelp/doc/*.xml $(DESTDIR)/htmlhelp/doc
|
|
cp javahelp/*.xsl $(DESTDIR)/javahelp
|
|
cp lib/lib.xsl $(DESTDIR)/lib
|
|
cp template/README $(DESTDIR)/template
|
|
cp template/*.xml $(DESTDIR)/template
|
|
cp template/*.xsl $(DESTDIR)/template
|
|
cp xhtml/*.xsl $(DESTDIR)/xhtml
|
|
cp manpages/README $(DESTDIR)/manpages
|
|
cp manpages/*.xsl $(DESTDIR)/manpages
|
|
cp profiling/*.xsl $(DESTDIR)/profiling
|
|
|
|
install-img:
|
|
mkdir -p $(DESTDIR)/images/callouts
|
|
cp images/*.gif $(DESTDIR)/images
|
|
cp images/*.png $(DESTDIR)/images
|
|
cp images/callouts/*.png $(DESTDIR)/images/callouts
|
|
|
|
install-extensions:
|
|
mkdir -p $(DESTDIR)/extensions
|
|
cp -r extensions/* $(DESTDIR)/extensions
|
|
|
|
install-misc:
|
|
cp VERSION $(DESTDIR)
|