Factor out the definition of the directory the manual page is

installed into; hopefully this will fix the RPM construction.
This commit is contained in:
Fred L. Drake, Jr. 2002-05-31 15:51:21 +00:00
parent 6bbbeffb0d
commit cad79377e7

View File

@ -40,6 +40,7 @@ exec_prefix = @exec_prefix@
bindir = @bindir@
libdir = @libdir@
includedir = @includedir@
mandir = @prefix@/man/man1
top_builddir = .
@ -78,17 +79,17 @@ check: tests/runtests
tests/runtests
install: xmlwf/xmlwf lib/$(LIBRARY) lib/$(APIHEADER)
$(mkinstalldirs) $(bindir) $(libdir) $(includedir)
$(mkinstalldirs) $(bindir) $(libdir) $(includedir) $(mandir)
$(LIBTOOL) --mode=install $(INSTALL_PROGRAM) xmlwf/xmlwf $(bindir)/xmlwf
$(LIBTOOL) --mode=install $(INSTALL) lib/$(LIBRARY) $(libdir)/$(LIBRARY)
$(INSTALL_DATA) lib/$(APIHEADER) $(includedir)
$(INSTALL_DATA) doc/xmlwf.1 $(prefix)/man/man1
$(INSTALL_DATA) doc/xmlwf.1 $(mandir)
uninstall:
$(LIBTOOL) --mode=uninstall rm -f $(bindir)/xmlwf
$(LIBTOOL) --mode=uninstall rm -f $(libdir)/$(LIBRARY)
rm -f $(includedir)/$(APIHEADER)
rm -f $(prefix)/man/man1/xmlwf.1
rm -f $(mandir)/xmlwf.1
# for VPATH builds (invoked by configure)
mkdir-init: