Makefile.am 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Copyright 2005 Red Hat, Inc.
  2. #
  3. # Permission to use, copy, modify, distribute, and sell this software
  4. # and its documentation for any purpose is hereby granted without fee,
  5. # provided that the above copyright notice appear in all copies and
  6. # that both that copyright notice and this permission notice appear in
  7. # supporting documentation, and that the name of Red Hat not be used in
  8. # advertising or publicity pertaining to distribution of the software
  9. # without specific, written prior permission. Red Hat makes no
  10. # representations about the suitability of this software for any
  11. # purpose. It is provided "as is" without express or implied warranty.
  12. #
  13. # RED HAT DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
  14. # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN
  15. # NO EVENT SHALL RED HAT BE LIABLE FOR ANY SPECIAL, INDIRECT OR
  16. # CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
  17. # OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  18. # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
  19. # USE OR PERFORMANCE OF THIS SOFTWARE.
  20. #
  21. # Process this file with autoconf to create configure.
  22. miscmandir = $(MISC_MAN_DIR)
  23. miscman_PRE = \
  24. Consortium.man \
  25. Xsecurity.man \
  26. Standards.man \
  27. X.man \
  28. XOrgFoundation.man \
  29. XProjectTeam.man
  30. miscman_DATA = $(miscman_PRE:man=@MISC_MAN_SUFFIX@)
  31. EXTRA_DIST = $(miscman_PRE)
  32. CLEANFILES = $(miscman_DATA)
  33. SUFFIXES = .$(MISC_MAN_SUFFIX) .man
  34. # String replacements in MAN_SUBSTS now come from xorg-macros.m4 via configure
  35. MAN_SUBSTS += -e 's|__datadir__|$(datadir)|g' \
  36. -e 's|__libdir__|$(libdir)|g' \
  37. -e 's|__sysconfdir__|$(sysconfdir)|g'
  38. .man.$(MISC_MAN_SUFFIX):
  39. $(AM_V_GEN)$(SED) $(MAN_SUBSTS) < $< > $@