Makefile.am (1575B)
1 # This program is free software; you can redistribute it and/or modify 2 # it under the terms of the GNU General Public License as published by 3 # the Free Software Foundation; either version 2 of the License, or 4 # (at your option) any later version. 5 6 # You should have received a copy of the GNU General Public License 7 # along with this program; if not, write to the Free Software 8 # Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, 9 # USA. 10 11 #-------------------------------------------------------------------------- 12 EXTRA_DIST = bincimap-manual.dvi bincimap-manual.ps bincimap-manual.tex 13 14 #-------------------------------------------------------------------------- 15 ps: dvi 16 dvips bincimap-manual.dvi -o bincimap-manual.ps 17 18 #-------------------------------------------------------------------------- 19 dvi: bincimap-manual.dvi 20 21 #-------------------------------------------------------------------------- 22 bincimap-manual.dvi: bincimap-manual.tex 23 latex bincimap-manual.tex 24 latex bincimap-manual.tex 25 26 #-------------------------------------------------------------------------- 27 install-exec-hook: 28 $(mkinstalldirs) $(DESTDIR)$(datadir)/doc/bincimap 29 $(INSTALL_DATA) $(srcdir)/bincimap-manual.ps $(DESTDIR)$(datadir)/doc/bincimap 30 $(INSTALL_DATA) $(srcdir)/bincimap-manual.dvi $(DESTDIR)$(datadir)/doc/bincimap 31 32 #-------------------------------------------------------------------------- 33 uninstall-hook: 34 rm -v $(DESTDIR)$(datadir)/doc/bincimap/bincimap-manual.ps 35 rm -v $(DESTDIR)$(datadir)/doc/bincimap/bincimap-manual.dvi 36 -rmdir $(DESTDIR)$(datadir)/doc/bincimap 37