blob: 1303e171cfa1ab97d189b39d12e8f72e8870a3fa [file] [log] [blame]
micky3879b9f5e72025-07-08 18:04:53 -04001# $Id: Makefile.in,v 1.46 2022/10/01 22:53:36 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302##############################################################################
micky3879b9f5e72025-07-08 18:04:53 -04003# Copyright 2018-2021,2022 Thomas E. Dickey #
4# Copyright 1998-2014,2015 Free Software Foundation, Inc. #
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305# #
6# Permission is hereby granted, free of charge, to any person obtaining a #
7# copy of this software and associated documentation files (the "Software"), #
8# to deal in the Software without restriction, including without limitation #
9# the rights to use, copy, modify, merge, publish, distribute, distribute #
10# with modifications, sublicense, and/or sell copies of the Software, and to #
11# permit persons to whom the Software is furnished to do so, subject to the #
12# following conditions: #
13# #
14# The above copyright notice and this permission notice shall be included in #
15# all copies or substantial portions of the Software. #
16# #
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
20# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
23# DEALINGS IN THE SOFTWARE. #
24# #
25# Except as contained in this notice, the name(s) of the above copyright #
26# holders shall not be used in advertising or otherwise to promote the sale, #
27# use or other dealings in this Software without prior written #
28# authorization. #
29##############################################################################
30#
Steve Kondikae271bc2015-11-15 02:50:53 +010031# Author: Thomas E. Dickey 1996-on
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053032#
33# Master Makefile for ncurses library.
34
Steve Kondikae271bc2015-11-15 02:50:53 +010035SHELL = @SHELL@
36VPATH = @srcdir@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053037
38DESTDIR=@DESTDIR@
Steve Kondikae271bc2015-11-15 02:50:53 +010039RPATH_LIST=@RPATH_LIST@
40TOP_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" RPATH_LIST="$(RPATH_LIST)"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053041
42@SET_MAKE@
43
44NCURSES_MAJOR = @NCURSES_MAJOR@
45NCURSES_MINOR = @NCURSES_MINOR@
46NCURSES_PATCH = @NCURSES_PATCH@
47
Steve Kondikae271bc2015-11-15 02:50:53 +010048top_srcdir = @top_srcdir@
49srcdir = @srcdir@
50
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053051prefix = @prefix@
52exec_prefix = @exec_prefix@
Steve Kondikae271bc2015-11-15 02:50:53 +010053datarootdir = @datarootdir@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053054
55bindir = @bindir@
56ticdir = @TERMINFO@
57includedir = @includedir@
Steve Kondikae271bc2015-11-15 02:50:53 +010058includesubdir = @includesubdir@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053059libdir = @libdir@
60mandir = @mandir@
Steve Kondikae271bc2015-11-15 02:50:53 +010061pkgdir = @PKG_CONFIG_LIBDIR@
62
63include_dir = ${includedir}${includesubdir}
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053064
micky3879b9f5e72025-07-08 18:04:53 -040065FGREP = @FGREP@
66
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053067INSTALL = @INSTALL@
68INSTALL_DATA = @INSTALL_DATA@
69
70DIRS_TO_MAKE = @DIRS_TO_MAKE@
71
micky3879b9f5e72025-07-08 18:04:53 -040072@MAKE_PHONY@.PHONY : all
73@MAKE_PHONY@.PHONY : check
74@MAKE_PHONY@.PHONY : clean
75@MAKE_PHONY@.PHONY : depend
76@MAKE_PHONY@.PHONY : distclean
77@MAKE_PHONY@.PHONY : install
78@MAKE_PHONY@.PHONY : mostlyclean
79@MAKE_PHONY@.PHONY : preinstall
80@MAKE_PHONY@.PHONY : realclean
81@MAKE_PHONY@.PHONY : sources
82@MAKE_PHONY@.PHONY : tags
83@MAKE_PHONY@.PHONY : uninstall
84
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053085all :: $(DIRS_TO_MAKE)
86
87$(DIRS_TO_MAKE) :
88 mkdir $@
89
90preinstall :
91 @ echo ''
92 @ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):'
93 @ echo ''
Steve Kondikae271bc2015-11-15 02:50:53 +010094 @ echo ' extended funcs: '`test @NCURSES_EXT_FUNCS@ != 0 && echo yes || echo no`
95 @ echo ' xterm terminfo: '@WHICH_XTERM@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053096 @ echo ''
Steve Kondikae271bc2015-11-15 02:50:53 +010097 @ echo ' bin directory: '$(bindir)
98 @ echo ' lib directory: '$(libdir)
99 @ echo ' include directory: '$(include_dir)
100 @ echo ' man directory: '$(mandir)
101@MAKE_TERMINFO@ @ echo ' terminfo directory: '$(ticdir)
micky3879b9f5e72025-07-08 18:04:53 -0400102@USE_FALLBACKS@ @ echo ' using fallback-list: '@FALLBACK_LIST@
Steve Kondikae271bc2015-11-15 02:50:53 +0100103@MAKE_PC_FILES@ @ echo ' pkg-config directory: '$(pkgdir)
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530104 @ echo ''
Steve Kondikae271bc2015-11-15 02:50:53 +0100105 @ test "$(include_dir)" = "$(prefix)/include" || \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530106 echo '** Include-directory is not in a standard location'
Steve Kondikae271bc2015-11-15 02:50:53 +0100107 @ test ! -f $(include_dir)/termcap.h || \
micky3879b9f5e72025-07-08 18:04:53 -0400108 $(FGREP) NCURSES_VERSION $(include_dir)/termcap.h >/dev/null || \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530109 echo '** Will overwrite non-ncurses termcap.h'
Steve Kondikae271bc2015-11-15 02:50:53 +0100110 @ test ! -f $(include_dir)/curses.h || \
micky3879b9f5e72025-07-08 18:04:53 -0400111 $(FGREP) NCURSES_VERSION $(include_dir)/curses.h >/dev/null || \
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530112 echo '** Will overwrite non-ncurses curses.h'
113
Steve Kondikae271bc2015-11-15 02:50:53 +0100114distclean \
115realclean ::
116
micky3879b9f5e72025-07-08 18:04:53 -0400117check :
118 @ echo The test-programs are interactive
119
Steve Kondikae271bc2015-11-15 02:50:53 +0100120
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530121# Put the common rules here so that we can easily construct the list of
122# directories to visit.
123all \
124clean \
125distclean \
126mostlyclean \
127realclean \
128depend \
129sources \
130tags \
131uninstall \
132install ::