Makefile.in 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. # $Id: Makefile.in,v 1.24 2005/01/29 19:30:06 tom Exp $
  2. ##############################################################################
  3. # Copyright (c) 1998-2004,2005 Free Software Foundation, Inc. #
  4. # #
  5. # Permission is hereby granted, free of charge, to any person obtaining a #
  6. # copy of this software and associated documentation files (the "Software"), #
  7. # to deal in the Software without restriction, including without limitation #
  8. # the rights to use, copy, modify, merge, publish, distribute, distribute #
  9. # with modifications, sublicense, and/or sell copies of the Software, and to #
  10. # permit persons to whom the Software is furnished to do so, subject to the #
  11. # following conditions: #
  12. # #
  13. # The above copyright notice and this permission notice shall be included in #
  14. # all copies or substantial portions of the Software. #
  15. # #
  16. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
  17. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
  18. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
  19. # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
  20. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
  21. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
  22. # DEALINGS IN THE SOFTWARE. #
  23. # #
  24. # Except as contained in this notice, the name(s) of the above copyright #
  25. # holders shall not be used in advertising or otherwise to promote the sale, #
  26. # use or other dealings in this Software without prior written #
  27. # authorization. #
  28. ##############################################################################
  29. #
  30. # Author: Thomas E. Dickey <dickey@clark.net> 1996,1997
  31. #
  32. # Master Makefile for ncurses library.
  33. SHELL = /bin/sh
  34. DESTDIR=@DESTDIR@
  35. CF_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)"
  36. @SET_MAKE@
  37. NCURSES_MAJOR = @NCURSES_MAJOR@
  38. NCURSES_MINOR = @NCURSES_MINOR@
  39. NCURSES_PATCH = @NCURSES_PATCH@
  40. prefix = @prefix@
  41. exec_prefix = @exec_prefix@
  42. bindir = @bindir@
  43. ticdir = @TERMINFO@
  44. includedir = @includedir@
  45. libdir = @libdir@
  46. mandir = @mandir@
  47. INSTALL = @INSTALL@
  48. INSTALL_DATA = @INSTALL_DATA@
  49. DIRS_TO_MAKE = @DIRS_TO_MAKE@
  50. all :: $(DIRS_TO_MAKE)
  51. $(DIRS_TO_MAKE) :
  52. mkdir $@
  53. preinstall :
  54. @ echo ''
  55. @ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):'
  56. @ echo ''
  57. @ echo ' extended funcs: '`test @NCURSES_EXT_FUNCS@ != 0 && echo yes || echo no`
  58. @ echo ' xterm terminfo: '@WHICH_XTERM@
  59. @ echo ''
  60. @ echo ' bin directory: '$(bindir)
  61. @ echo ' lib directory: '$(libdir)
  62. @ echo ' include directory: '$(includedir)
  63. @ echo ' man directory: '$(mandir)
  64. @MAKE_TERMINFO@ @ echo ' terminfo directory: '$(ticdir)
  65. @ echo ''
  66. @ test "$(includedir)" = "$(prefix)/include" || \
  67. echo '** Include-directory is not in a standard location'
  68. @ test ! -f $(includedir)/termcap.h || \
  69. fgrep NCURSES_VERSION $(includedir)/termcap.h >/dev/null || \
  70. echo '** Will overwrite non-ncurses termcap.h'
  71. @ test ! -f $(includedir)/curses.h || \
  72. fgrep NCURSES_VERSION $(includedir)/curses.h >/dev/null || \
  73. echo '** Will overwrite non-ncurses curses.h'
  74. # Put the common rules here so that we can easily construct the list of
  75. # directories to visit.
  76. all \
  77. clean \
  78. distclean \
  79. mostlyclean \
  80. realclean \
  81. depend \
  82. sources \
  83. tags \
  84. uninstall \
  85. install ::