]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Makefile.in
ncurses 4.2
[ncurses.git] / Makefile.in
1 # $Id: Makefile.in,v 1.15 1998/02/11 12:13:39 tom Exp $
2 ##############################################################################
3 # Copyright (c) 1998 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
34 SHELL = /bin/sh
35
36 INSTALL_PREFIX=@INSTALL_PREFIX@
37 CF_MFLAGS = @cf_cv_makeflags@ INSTALL_PREFIX="$(INSTALL_PREFIX)"
38
39 @SET_MAKE@
40
41 NCURSES_MAJOR   = @NCURSES_MAJOR@
42 NCURSES_MINOR   = @NCURSES_MINOR@
43 NCURSES_PATCH   = @NCURSES_PATCH@
44
45 prefix          = @prefix@
46 exec_prefix     = @exec_prefix@
47
48 bindir          = @bindir@
49 datadir         = @datadir@
50 includedir      = @includedir@
51 libdir          = @libdir@
52 mandir          = @mandir@
53
54 DIRS_TO_MAKE = @DIRS_TO_MAKE@
55
56 all ::  $(DIRS_TO_MAKE)
57
58 $(DIRS_TO_MAKE) :
59         mkdir $@
60
61 preinstall :
62         @ echo ''
63         @ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):'
64         @ echo ''
65         @ echo '      bin directory: '$(bindir)
66         @ echo '      lib directory: '$(libdir)
67         @ echo '  include directory: '$(includedir)
68         @ echo '      man directory: '$(mandir)
69         @ echo ' terminfo directory: '$(datadir)/terminfo
70         @ echo ''
71         @ if test "$(includedir)" != "$(prefix)/include" ; then \
72                 echo '** Include-directory is not in a standard location'; fi
73
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 sources \
82 uninstall \
83 install ::