1# $Id: Makefile.in,v 1.38 2014/01/18 20:19:45 tom Exp $
2##############################################################################
3# Copyright (c) 1998-2013,2014 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		1996-on
31#
32# Master Makefile for ncurses library.
33
34SHELL = /bin/sh
35VPATH		= @srcdir@
36
37DESTDIR=@DESTDIR@
38RPATH_LIST=@RPATH_LIST@
39TOP_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" RPATH_LIST="$(RPATH_LIST)"
40
41@SET_MAKE@
42
43NCURSES_MAJOR	= @NCURSES_MAJOR@
44NCURSES_MINOR	= @NCURSES_MINOR@
45NCURSES_PATCH	= @NCURSES_PATCH@
46
47top_srcdir	= @top_srcdir@
48srcdir		= @srcdir@
49
50prefix		= @prefix@
51exec_prefix	= @exec_prefix@
52datarootdir	= @datarootdir@
53
54bindir		= @bindir@
55ticdir		= @TERMINFO@
56includedir	= @includedir@
57includesubdir	= @includesubdir@
58libdir		= @libdir@
59mandir		= @mandir@
60
61include_dir	= ${includedir}${includesubdir}
62
63INSTALL		= @INSTALL@
64INSTALL_DATA	= @INSTALL_DATA@
65
66DIRS_TO_MAKE	= @DIRS_TO_MAKE@
67
68all ::	$(DIRS_TO_MAKE)
69
70$(DIRS_TO_MAKE) :
71	mkdir $@
72
73preinstall :
74	@ echo ''
75	@ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):'
76	@ echo ''
77	@ echo '     extended funcs: '`test @NCURSES_EXT_FUNCS@ != 0 && echo yes || echo no`
78	@ echo '     xterm terminfo: '@WHICH_XTERM@
79	@ echo ''
80	@ echo '      bin directory: '$(bindir)
81	@ echo '      lib directory: '$(libdir)
82	@ echo '  include directory: '$(include_dir)
83	@ echo '      man directory: '$(mandir)
84@MAKE_TERMINFO@	@ echo ' terminfo directory: '$(ticdir)
85	@ echo ''
86	@ test "$(include_dir)" = "$(prefix)/include" || \
87		echo '** Include-directory is not in a standard location'
88	@ test ! -f $(include_dir)/termcap.h || \
89		fgrep NCURSES_VERSION $(include_dir)/termcap.h >/dev/null || \
90		echo '** Will overwrite non-ncurses termcap.h'
91	@ test ! -f $(include_dir)/curses.h || \
92		fgrep NCURSES_VERSION $(include_dir)/curses.h >/dev/null || \
93		echo '** Will overwrite non-ncurses curses.h'
94
95distclean \
96realclean ::
97
98
99# Put the common rules here so that we can easily construct the list of
100# directories to visit.
101all \
102clean \
103distclean \
104mostlyclean \
105realclean \
106depend \
107sources \
108tags \
109uninstall \
110install ::
111