2021-11-07 08:20:43 +08:00
|
|
|
# $Id: Makefile.in,v 1.79 2021/11/06 23:36:12 tom Exp $
|
1998-03-01 12:21:12 +08:00
|
|
|
##############################################################################
|
2021-01-24 08:36:13 +08:00
|
|
|
# Copyright 2018-2020,2021 Thomas E. Dickey #
|
2020-02-12 17:50:22 +08:00
|
|
|
# Copyright 1998-2016,2017 Free Software Foundation, Inc. #
|
1998-03-01 12:21:12 +08:00
|
|
|
# #
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a #
|
|
|
|
# copy of this software and associated documentation files (the "Software"), #
|
|
|
|
# to deal in the Software without restriction, including without limitation #
|
|
|
|
# the rights to use, copy, modify, merge, publish, distribute, distribute #
|
|
|
|
# with modifications, sublicense, and/or sell copies of the Software, and to #
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to the #
|
|
|
|
# following conditions: #
|
|
|
|
# #
|
|
|
|
# The above copyright notice and this permission notice shall be included in #
|
|
|
|
# all copies or substantial portions of the Software. #
|
|
|
|
# #
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
|
|
|
|
# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
|
|
|
|
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
|
|
|
|
# DEALINGS IN THE SOFTWARE. #
|
|
|
|
# #
|
|
|
|
# Except as contained in this notice, the name(s) of the above copyright #
|
|
|
|
# holders shall not be used in advertising or otherwise to promote the sale, #
|
|
|
|
# use or other dealings in this Software without prior written #
|
|
|
|
# authorization. #
|
|
|
|
##############################################################################
|
|
|
|
#
|
2006-12-18 12:32:42 +08:00
|
|
|
# Author: Thomas E. Dickey 1996-on
|
1998-03-01 12:21:12 +08:00
|
|
|
#
|
1997-05-15 12:00:00 +08:00
|
|
|
# Makefile for ncurses miscellany directory
|
|
|
|
#
|
|
|
|
# This makes/installs the terminfo database
|
|
|
|
#
|
|
|
|
# The variable 'srcdir' refers to the source-distribution, and can be set with
|
|
|
|
# the configure script by "--srcdir=DIR".
|
|
|
|
#
|
|
|
|
# The rules are organized to produce the libraries for the configured models,
|
|
|
|
# and the programs with the configured default model.
|
|
|
|
|
|
|
|
# turn off _all_ suffix rules; we'll generate our own
|
2002-10-13 11:35:53 +08:00
|
|
|
.SUFFIXES :
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2015-08-09 08:19:07 +08:00
|
|
|
SHELL = @SHELL@
|
2010-11-28 08:33:36 +08:00
|
|
|
VPATH = @srcdir@
|
1997-05-15 12:00:00 +08:00
|
|
|
THIS = Makefile
|
|
|
|
|
1998-03-01 12:21:12 +08:00
|
|
|
CF_MFLAGS = @cf_cv_makeflags@
|
1997-05-15 12:00:00 +08:00
|
|
|
@SET_MAKE@
|
|
|
|
|
2000-10-21 12:42:11 +08:00
|
|
|
DESTDIR = @DESTDIR@
|
|
|
|
top_srcdir = @top_srcdir@
|
1997-05-15 12:00:00 +08:00
|
|
|
srcdir = @srcdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
bindir = @bindir@
|
|
|
|
libdir = @libdir@
|
2012-08-12 09:10:31 +08:00
|
|
|
datarootdir = @datarootdir@
|
1997-05-15 12:00:00 +08:00
|
|
|
datadir = @datadir@
|
2013-08-05 17:18:54 +08:00
|
|
|
includesubdir = @includesubdir@
|
|
|
|
|
|
|
|
INCLUDEDIR = $(DESTDIR)$(includedir)$(includesubdir)
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
tabsetdir = $(datadir)/tabset
|
2000-10-21 12:42:11 +08:00
|
|
|
ticdir = @TERMINFO@
|
2006-12-18 12:32:42 +08:00
|
|
|
ticfile = $(ticdir).db
|
2000-10-21 12:42:11 +08:00
|
|
|
source = @TERMINFO_SRC@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
2011-02-21 10:00:14 +08:00
|
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
|
|
INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
1997-05-15 12:00:00 +08:00
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
2009-01-04 10:08:30 +08:00
|
|
|
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
|
|
|
|
|
1997-05-15 12:00:00 +08:00
|
|
|
################################################################################
|
2021-07-04 08:00:32 +08:00
|
|
|
|
|
|
|
@MAKE_PHONY@.PHONY : all
|
|
|
|
@MAKE_PHONY@.PHONY : check
|
|
|
|
@MAKE_PHONY@.PHONY : clean
|
|
|
|
@MAKE_PHONY@.PHONY : depend
|
|
|
|
@MAKE_PHONY@.PHONY : distclean
|
|
|
|
@MAKE_PHONY@.PHONY : install
|
|
|
|
@MAKE_PHONY@.PHONY : install.data
|
|
|
|
@MAKE_PHONY@.PHONY : install.libs
|
|
|
|
@MAKE_PHONY@.PHONY : libs
|
|
|
|
@MAKE_PHONY@.PHONY : mostlyclean
|
|
|
|
@MAKE_PHONY@.PHONY : realclean
|
|
|
|
@MAKE_PHONY@.PHONY : sources
|
|
|
|
@MAKE_PHONY@.PHONY : uninstall
|
|
|
|
@MAKE_PHONY@.PHONY : uninstall.data
|
|
|
|
@MAKE_PHONY@.PHONY : uninstall.libs
|
|
|
|
|
ncurses 6.0 - patch 20180106
+ fixes for writing extended color pairs in putwin.
+ modify test/savescreen.c to add test patterns that exercise 88-,
256-, etc., colors.
+ modify configure option --with-build-cc, adding clang, c89 and c99
as possible default values.
+ modify ncurses-examples configure script to use pkg-config for the
extra form/menu/panel libraries, to be more consistent with the
handling of the curses/ncurses library.
+ modify test-packages for mingw to supply "pc" files.
+ modify gen-pkgconfig.in to list -lpthread as a private library when
configured to access it via weak symbols.
+ simplify gen-pkgconfig.in, adding -ltinfo without the special linker
checks because some versions of the linker simply hard-code the
behavior.
+ update URLs for ncurses website to use https.
+ modify CF_CURSES_LIBS to fill in $cf_nculib_root in case the
ncurses-examples are built with a system ncurses that lacks the
standard "curses" symbolic link, as done by SuSE. The symbol is
needed to make a followup check for the pthread library work, and
would be set properly using the options "--with-screen", etc.
+ generate misc/*.pc with "all" rule, as done for "sources" rule
(report by Jeffrey Walton).
2018-01-07 10:47:04 +08:00
|
|
|
all \
|
2021-07-04 08:00:32 +08:00
|
|
|
depend \
|
2019-01-22 08:49:19 +08:00
|
|
|
sources ::
|
|
|
|
|
|
|
|
@MAKE_DATABASE@all \
|
2021-06-20 08:21:42 +08:00
|
|
|
@MAKE_DATABASE@sources :: terminfo.tmp
|
2002-10-13 11:35:53 +08:00
|
|
|
|
2019-01-22 08:49:19 +08:00
|
|
|
@MAKE_DATABASE@install :: @MISC_INSTALL_DATA@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2019-02-03 09:24:46 +08:00
|
|
|
@MAKE_DATABASE@install.data :: terminfo.tmp \
|
|
|
|
@MAKE_DATABASE@ $(DESTDIR)$(libdir) \
|
|
|
|
@MAKE_DATABASE@ $(DESTDIR)$(datadir) \
|
|
|
|
@MAKE_DATABASE@ $(DESTDIR)$(tabsetdir)
|
|
|
|
@MAKE_DATABASE@ DESTDIR=${DESTDIR} \
|
|
|
|
@MAKE_DATABASE@ prefix=${prefix} \
|
|
|
|
@MAKE_DATABASE@ exec_prefix=${exec_prefix} \
|
|
|
|
@MAKE_DATABASE@ bindir=${bindir} \
|
|
|
|
@MAKE_DATABASE@ top_srcdir=${top_srcdir} \
|
|
|
|
@MAKE_DATABASE@ srcdir=${srcdir} \
|
|
|
|
@MAKE_DATABASE@ datadir=${datadir} \
|
|
|
|
@MAKE_DATABASE@ ticdir=${ticdir} \
|
|
|
|
@MAKE_DATABASE@ source=terminfo.tmp \
|
|
|
|
@MAKE_DATABASE@ cross_compiling=@cross_compiling@ \
|
|
|
|
@MAKE_DATABASE@ $(SHELL) ./run_tic.sh
|
2021-01-24 08:36:13 +08:00
|
|
|
@MAKE_DATABASE@ @( cd $(srcdir)/tabset && \
|
2019-02-03 09:24:46 +08:00
|
|
|
@MAKE_DATABASE@ $(SHELL) -c 'for i in * ; do \
|
|
|
|
@MAKE_DATABASE@ if test -f $$i ; then \
|
|
|
|
@MAKE_DATABASE@ echo installing $$i; \
|
|
|
|
@MAKE_DATABASE@ $(INSTALL_DATA) $$i $(DESTDIR)$(tabsetdir)/$$i; \
|
2021-01-24 08:36:13 +08:00
|
|
|
@MAKE_DATABASE@ fi; done' )
|
2019-02-03 09:24:46 +08:00
|
|
|
install.data ::
|
|
|
|
@echo "finished $@"
|
2000-10-21 12:42:11 +08:00
|
|
|
|
2017-12-31 09:08:31 +08:00
|
|
|
NCURSES_CONFIG = ncurses@DFT_ARG_SUFFIX@@cf_cv_abi_version@@cf_config_suffix@-config
|
2006-12-18 12:32:42 +08:00
|
|
|
|
2019-01-22 08:49:19 +08:00
|
|
|
install \
|
2009-01-04 10:08:30 +08:00
|
|
|
install.libs :: $(DESTDIR)$(bindir) ncurses-config
|
2011-02-21 10:00:14 +08:00
|
|
|
$(INSTALL_SCRIPT) ncurses-config $(DESTDIR)$(bindir)/$(NCURSES_CONFIG)
|
2006-12-18 12:32:42 +08:00
|
|
|
|
2018-02-11 08:39:07 +08:00
|
|
|
# Make a list of the files that gen-pkgconfig might create:
|
|
|
|
@MAKE_PC_FILES@PC_FILES = \
|
|
|
|
@MAKE_PC_FILES@ @LIB_NAME@@USE_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc \
|
|
|
|
@MAKE_PC_FILES@ @TINFO_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc \
|
|
|
|
@MAKE_PC_FILES@ @TICS_NAME@@USE_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc \
|
|
|
|
@MAKE_PC_FILES@ @PANEL_NAME@@USE_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc \
|
|
|
|
@MAKE_PC_FILES@ @MENU_NAME@@USE_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc \
|
|
|
|
@MAKE_PC_FILES@ @FORM_NAME@@USE_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc \
|
|
|
|
@MAKE_PC_FILES@ @CXX_NAME@@USE_ARG_SUFFIX@@PC_MODULE_SUFFIX@.pc
|
|
|
|
|
2015-11-02 08:38:02 +08:00
|
|
|
# some packagers prefer to be able to construct pc-files on servers where
|
|
|
|
# pkg-config is not installed. Work around that by creating the library
|
|
|
|
# directory during this rule:
|
2019-02-03 09:24:46 +08:00
|
|
|
@MAKE_PC_FILES@install \
|
2015-11-02 08:38:02 +08:00
|
|
|
@MAKE_PC_FILES@install.libs :: pc-files
|
2021-11-07 08:20:43 +08:00
|
|
|
@MAKE_PC_FILES@ @$(SHELL) -c 'case "x$(PKG_CONFIG_LIBDIR)" in \
|
2021-03-28 08:52:50 +08:00
|
|
|
@MAKE_PC_FILES@ x/*) \
|
2016-09-04 10:05:36 +08:00
|
|
|
@MAKE_PC_FILES@ mkdir -p $(DESTDIR)$(PKG_CONFIG_LIBDIR); \
|
2018-02-11 08:39:07 +08:00
|
|
|
@MAKE_PC_FILES@ for name in $(PC_FILES); do \
|
|
|
|
@MAKE_PC_FILES@ test -f $$name || continue; \
|
2016-09-04 10:05:36 +08:00
|
|
|
@MAKE_PC_FILES@ echo installing $$name; \
|
|
|
|
@MAKE_PC_FILES@ $(INSTALL_DATA) $$name $(DESTDIR)$(PKG_CONFIG_LIBDIR)/$$name; \
|
|
|
|
@MAKE_PC_FILES@ done \
|
|
|
|
@MAKE_PC_FILES@ ;; \
|
2021-03-28 08:52:50 +08:00
|
|
|
@MAKE_PC_FILES@ *) \
|
2016-09-04 10:05:36 +08:00
|
|
|
@MAKE_PC_FILES@ echo "...skip actual install: no destination was given" ; \
|
|
|
|
@MAKE_PC_FILES@ ;; \
|
|
|
|
@MAKE_PC_FILES@ esac'
|
2009-01-04 10:08:30 +08:00
|
|
|
|
ncurses 6.0 - patch 20180106
+ fixes for writing extended color pairs in putwin.
+ modify test/savescreen.c to add test patterns that exercise 88-,
256-, etc., colors.
+ modify configure option --with-build-cc, adding clang, c89 and c99
as possible default values.
+ modify ncurses-examples configure script to use pkg-config for the
extra form/menu/panel libraries, to be more consistent with the
handling of the curses/ncurses library.
+ modify test-packages for mingw to supply "pc" files.
+ modify gen-pkgconfig.in to list -lpthread as a private library when
configured to access it via weak symbols.
+ simplify gen-pkgconfig.in, adding -ltinfo without the special linker
checks because some versions of the linker simply hard-code the
behavior.
+ update URLs for ncurses website to use https.
+ modify CF_CURSES_LIBS to fill in $cf_nculib_root in case the
ncurses-examples are built with a system ncurses that lacks the
standard "curses" symbolic link, as done by SuSE. The symbol is
needed to make a followup check for the pthread library work, and
would be set properly using the options "--with-screen", etc.
+ generate misc/*.pc with "all" rule, as done for "sources" rule
(report by Jeffrey Walton).
2018-01-07 10:47:04 +08:00
|
|
|
@MAKE_PC_FILES@all \
|
2009-01-25 10:04:12 +08:00
|
|
|
@MAKE_PC_FILES@sources :: pc-files
|
2009-01-04 10:08:30 +08:00
|
|
|
@MAKE_PC_FILES@pc-files :
|
|
|
|
@MAKE_PC_FILES@ $(SHELL) ./gen-pkgconfig
|
2018-02-11 08:39:07 +08:00
|
|
|
@MAKE_PC_FILES@ -touch $@
|
2009-01-04 10:08:30 +08:00
|
|
|
|
2005-10-10 02:41:57 +08:00
|
|
|
terminfo.tmp : run_tic.sed $(source)
|
|
|
|
echo '** adjusting tabset paths'
|
|
|
|
sed -f run_tic.sed $(source) >terminfo.tmp
|
|
|
|
|
|
|
|
run_tic.sed :
|
|
|
|
WHICH_XTERM=@WHICH_XTERM@ \
|
2012-02-12 09:33:57 +08:00
|
|
|
XTERM_KBS=@XTERM_KBS@ \
|
2012-01-29 10:06:41 +08:00
|
|
|
datadir=${datadir} \
|
2006-12-18 12:32:42 +08:00
|
|
|
$(SHELL) $(srcdir)/gen_edit.sh >$@
|
2005-10-10 02:41:57 +08:00
|
|
|
|
2006-12-24 10:11:39 +08:00
|
|
|
$(DESTDIR)$(bindir) \
|
2000-10-21 12:42:11 +08:00
|
|
|
$(DESTDIR)$(libdir) \
|
2006-12-18 12:32:42 +08:00
|
|
|
$(DESTDIR)$(datadir) \
|
2015-11-02 08:38:02 +08:00
|
|
|
$(DESTDIR)$(tabsetdir) :
|
2010-05-16 08:56:17 +08:00
|
|
|
mkdir -p $@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2014-09-28 08:19:13 +08:00
|
|
|
uninstall : @MISC_UNINSTALL_DATA@ uninstall.libs
|
1998-03-01 12:21:12 +08:00
|
|
|
|
2002-10-13 11:35:53 +08:00
|
|
|
uninstall.data :
|
2006-12-18 12:32:42 +08:00
|
|
|
-test -d $(DESTDIR)$(tabsetdir) && rm -rf $(DESTDIR)$(tabsetdir)
|
|
|
|
-test -d $(DESTDIR)$(ticdir) && rm -rf $(DESTDIR)$(ticdir)
|
|
|
|
-test -f $(DESTDIR)$(ticfile) && rm -f $(DESTDIR)$(ticfile)
|
|
|
|
|
2006-12-24 10:11:39 +08:00
|
|
|
uninstall.libs :
|
2006-12-18 12:32:42 +08:00
|
|
|
-rm -f $(DESTDIR)$(bindir)/$(NCURSES_CONFIG)
|
2015-11-02 08:38:02 +08:00
|
|
|
@MAKE_PC_FILES@ @$(SHELL) -c 'case x$(DESTDIR)$(PKG_CONFIG_LIBDIR) in \
|
2021-03-28 08:52:50 +08:00
|
|
|
@MAKE_PC_FILES@ x/*) \
|
2018-02-11 08:39:07 +08:00
|
|
|
@MAKE_PC_FILES@ for name in $(PC_FILES); do \
|
|
|
|
@MAKE_PC_FILES@ test -f $$name || continue; \
|
|
|
|
@MAKE_PC_FILES@ echo uninstalling $$name; \
|
|
|
|
@MAKE_PC_FILES@ rm -f $(DESTDIR)$(PKG_CONFIG_LIBDIR)/$$name; \
|
|
|
|
@MAKE_PC_FILES@ done \
|
|
|
|
@MAKE_PC_FILES@ ;; \
|
|
|
|
@MAKE_PC_FILES@ esac'
|
1998-03-01 12:21:12 +08:00
|
|
|
|
2002-10-13 11:35:53 +08:00
|
|
|
tags :
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2002-10-13 11:35:53 +08:00
|
|
|
@MAKE_UPPER_TAGS@TAGS :
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2002-10-13 11:35:53 +08:00
|
|
|
mostlyclean :
|
2019-01-22 08:49:19 +08:00
|
|
|
@MAKE_DATABASE@ -rm -f terminfo.tmp
|
|
|
|
@MAKE_DATABASE@ -rm -f run_tic.sed
|
2018-02-11 08:39:07 +08:00
|
|
|
@MAKE_PC_FILES@ -rm -f pc-files $(PC_FILES)
|
2002-10-13 11:35:53 +08:00
|
|
|
-rm -f core tags TAGS *~ *.bak *.ln *.atac trace
|
1998-03-01 12:21:12 +08:00
|
|
|
|
|
|
|
clean :: mostlyclean
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2002-10-13 11:35:53 +08:00
|
|
|
distclean : clean
|
2009-01-04 10:08:30 +08:00
|
|
|
@MAKE_PC_FILES@ -rm -f gen-pkgconfig
|
2006-12-18 12:32:42 +08:00
|
|
|
-rm -f Makefile run_tic.sh ncurses-config
|
1997-05-15 12:00:00 +08:00
|
|
|
|
2002-10-13 11:35:53 +08:00
|
|
|
realclean : distclean
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
# The remainder of this file is automatically generated during configuration
|
|
|
|
###############################################################################
|