diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-27 11:13:55 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-10-27 11:13:55 +0000 |
commit | 85ab9da07bcb6b2336d03e311a55f2e0c90bbd46 (patch) | |
tree | 55ff6206dce4696964842786156f1382a1a8e36b /doc/hackersguide | |
parent | dc2c0374e09f2d79b50f24bd30c63508e947d966 (diff) | |
download | xine-lib-85ab9da07bcb6b2336d03e311a55f2e0c90bbd46.tar.gz xine-lib-85ab9da07bcb6b2336d03e311a55f2e0c90bbd46.tar.bz2 |
* removing README.dxr3_pl (it was the only translated file of the READMEs
and was more than half a year old - translators already have enough to do)
* simplifying Makefiles
* small README reorg
CVS patchset: 5613
CVS date: 2003/10/27 11:13:55
Diffstat (limited to 'doc/hackersguide')
-rw-r--r-- | doc/hackersguide/Makefile.am | 31 |
1 files changed, 5 insertions, 26 deletions
diff --git a/doc/hackersguide/Makefile.am b/doc/hackersguide/Makefile.am index b4cfa2228..9a07e8e68 100644 --- a/doc/hackersguide/Makefile.am +++ b/doc/hackersguide/Makefile.am @@ -8,38 +8,17 @@ hackersguide_sgml = hackersguide.sgml \ stream.sgml \ output.sgml -docs_DOCS = hackersguide.html architecture.png library.png overlays.png +docs_DATA = hackersguide.html architecture.png library.png overlays.png EXTRA_DIST = README $(hackersguide_sgml) architecture.fig library.fig overlays.fig -docdir = $(prefix)/share/doc/xine/hackersguide - -install-data-local: - @documentations='$(docs_DOCS)'; \ - for doc in $$documentations; do \ - destdir=$(DESTDIR)$(docdir); \ - name=`echo $$doc` \ - dir=$$destdir; \ - $(mkinstalldirs) $$dir; \ - $(INSTALL_DATA) $$doc $$dir/$$name; \ - echo "installing $$doc as $$dir/$$name"; \ - done - -uninstall-local: - @documentations='$(docs_DOCS)'; \ - for doc in $$documentations; do \ - destdir=$(DESTDIR)$(docdir); \ - name=`echo $$doc` \ - dir=$$destdir; \ - rm -f $$dir/$$name; \ - echo "removing $$dir/$$name" ; \ - done - -docs: $(docs_DOCS) +docsdir = $(prefix)/share/doc/xine/hackersguide + +docs: $(docs_DATA) dist-hook: @make fail_if_missing=yes docs - cp $(docs_DOCS) $(distdir) + cp $(docs_DATA) $(distdir) hackersguide.html: $(hackersguide_sgml) @if test "$(SGMLTOOLS)" != "no"; then \ |