ncursesw-morphos/ncurses/Makefile.in

307 lines
9.6 KiB
Makefile
Raw Normal View History

# $Id: Makefile.in,v 1.130 2010/11/27 21:45:27 tom Exp $
1998-03-01 12:21:12 +08:00
##############################################################################
# Copyright (c) 1998-2009,2010 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 source code.
#
# This makes the following:
# programs
# includes
# libraries (normal/debug/profile/shared)
#
# 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
.SUFFIXES:
SHELL = /bin/sh
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@
2004-02-09 10:15:26 +08:00
x = @EXEEXT@
o = .@OBJEXT@
1997-05-15 12:00:00 +08:00
MODEL = @DFT_LWR_MODEL@
2000-10-21 12:42:11 +08:00
DESTDIR = @DESTDIR@
2002-10-13 11:35:53 +08:00
top_srcdir = @top_srcdir@
1997-05-15 12:00:00 +08:00
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
2002-10-13 11:35:53 +08:00
bindir = @bindir@
1997-05-15 12:00:00 +08:00
libdir = @libdir@
includedir = @includedir@
datadir = @datadir@
2000-10-21 12:42:11 +08:00
LIBTOOL = @LIBTOOL@
2004-02-09 10:15:26 +08:00
LIBTOOL_CLEAN = @LIB_CLEAN@
LIBTOOL_COMPILE = @LIB_COMPILE@
LIBTOOL_LINK = @LIB_LINK@
LIBTOOL_INSTALL = @LIB_INSTALL@
LIBTOOL_UNINSTALL = @LIB_UNINSTALL@
ncurses 5.7 - patch 20090328 + extend ansi.sys pfkey capability from kf1-kf10 to kf1-kf48, moving function key definitions from emx-base for consistency -TD + correct missing final 'p' in pfkey capability of ansi.sys-old (report by Kalle Olavi Niemitalo). + improve test/ncurses.c 'F' test, show combining characters in color. + quiet a false report by cppcheck in c++/cursesw.cc by eliminating a temporary variable. + use _nc_doalloc() rather than realloc() in a few places in ncurses library to avoid leak in out-of-memory condition (reports by William Egert and Martin Ettl based on cppcheck tool). + add --with-ncurses-wrap-prefix option to test/configure (discussion with Charles Wilson). + use ncurses*-config scripts if available for test/configure. + update test/aclocal.m4 and test/configure > patches by Charles Wilson: + modify CF_WITH_LIBTOOL configure check to allow unreleased libtool version numbers (e.g. which include alphabetic chars, as well as digits, after the final '.'). + improve use of -no-undefined option for libtool by setting an intermediate variable LT_UNDEF in the configure script, and then using that in the libtool link-commands. + fix an missing use of NCURSES_PUBLIC_VAR() in tinfo/MKcodes.awk from 2009031 changes. + improve mk-1st.awk script by writing separate cases for the LIBTOOL_LINK command, depending on which library (ncurses, ticlib, termlib) is to be linked. + modify configure.in to allow broken-linker configurations, not just enable-reentrant, to set public wrap prefix.
2009-03-29 08:06:57 +08:00
LT_UNDEF = @LT_UNDEF@
1997-05-15 12:00:00 +08:00
INSTALL = @INSTALL@
1998-03-01 12:21:12 +08:00
INSTALL_LIB = @INSTALL@ @INSTALL_LIB@
2006-12-18 12:32:42 +08:00
INSTALL_PROG = @INSTALL_PROGRAM@
1997-05-15 12:00:00 +08:00
INSTALL_DATA = @INSTALL_DATA@
AR = @AR@
ARFLAGS = @ARFLAGS@
1997-05-15 12:00:00 +08:00
AWK = @AWK@
LD = @LD@
LN_S = @LN_S@
CTAGS = @CTAGS@
ETAGS = @ETAGS@
1997-05-15 12:00:00 +08:00
CC = @CC@
CPP = @CPP@
CFLAGS = @CFLAGS@
INCDIR = $(srcdir)/../include
2002-10-13 11:35:53 +08:00
CPPFLAGS = -DHAVE_CONFIG_H -I../ncurses -I$(srcdir) @CPPFLAGS@
1997-05-15 12:00:00 +08:00
CCFLAGS = $(CPPFLAGS) $(CFLAGS)
BUILD_CPPFLAGS = -I../include -DUSE_BUILD_CC @BUILD_CPPFLAGS@
2004-02-09 10:15:26 +08:00
BUILD_CC = @BUILD_CC@
2005-10-10 02:41:57 +08:00
BUILD_CCFLAGS = -DHAVE_CONFIG_H -I../ncurses -I$(srcdir) -I$(INCDIR) $(BUILD_CPPFLAGS) @BUILD_CFLAGS@
2004-02-09 10:15:26 +08:00
BUILD_LDFLAGS = @BUILD_LDFLAGS@
BUILD_LIBS = @BUILD_LIBS@
# The executables built in this directory are used for generating source that
# is compiled into the build, or are test-programs that are not installed.
BUILD_EXEEXT = @BUILD_EXEEXT@
x = @PROG_EXT@
1998-03-01 12:21:12 +08:00
2000-10-21 12:42:11 +08:00
CFLAGS_LIBTOOL = $(CCFLAGS)
1997-05-15 12:00:00 +08:00
CFLAGS_NORMAL = $(CCFLAGS)
CFLAGS_DEBUG = $(CCFLAGS) @CC_G_OPT@ -DTRACE
CFLAGS_PROFILE = $(CCFLAGS) -pg
CFLAGS_SHARED = $(CCFLAGS) @CC_SHARED_OPTS@
CFLAGS_DEFAULT = $(CFLAGS_@DFT_UPR_MODEL@)
2007-04-22 08:57:08 +08:00
LINK = $(LIBTOOL)
1997-05-15 12:00:00 +08:00
LDFLAGS = @LDFLAGS@ @LD_MODEL@ @LIBS@
2002-10-13 11:35:53 +08:00
SHLIB_DIRS = -L../lib
1999-10-24 12:32:42 +08:00
SHLIB_LIST = $(SHLIB_DIRS) @SHLIB_LIST@
TINFO_LIST = $(SHLIB_DIRS) @TINFO_LIST@
TICS_LIST = $(SHLIB_DIRS) @TICS_LIST@
1999-10-24 12:32:42 +08:00
1997-05-15 12:00:00 +08:00
MK_SHARED_LIB = @MK_SHARED_LIB@
1999-10-24 12:32:42 +08:00
2000-10-21 12:42:11 +08:00
NCURSES_MAJOR = @NCURSES_MAJOR@
NCURSES_MINOR = @NCURSES_MINOR@
1998-03-01 12:21:12 +08:00
REL_VERSION = @cf_cv_rel_version@
ABI_VERSION = @cf_cv_abi_version@
1997-05-15 12:00:00 +08:00
2004-02-09 10:15:26 +08:00
RANLIB = @LIB_PREP@
1997-05-15 12:00:00 +08:00
LIBRARIES = @LIBS_TO_MAKE@
LINT = @LINT@
LINT_OPTS = @LINT_OPTS@
LINT_LIBS = -lncurses @LIBS@
1998-03-01 12:21:12 +08:00
FALLBACK_LIST = @FALLBACK_LIST@
USE_BIG_STRINGS = @USE_BIG_STRINGS@
2002-10-13 11:35:53 +08:00
TERMINFO_CAPS = $(top_srcdir)/include/@TERMINFO_CAPS@
TERMINFO = @TERMINFO@
TERMINFO_SRC = @TERMINFO_SRC@
TIC_PATH = @TIC_PATH@
1997-05-15 12:00:00 +08:00
AUTO_SRC = \
2006-12-18 12:32:42 +08:00
./codes.c \
./comp_captab.c \
./expanded.c \
./fallback.c \
./lib_gen.c \
./lib_keyname.c \
./link_test.c \
./names.c \
./unctrl.c \
1999-10-24 12:32:42 +08:00
init_keytry.h \
keys.list
1997-05-15 12:00:00 +08:00
HEADER_DEPS = \
$(srcdir)/curses.priv.h \
../include/ncurses_dll.h \
../include/ncurses_cfg.h \
../include/curses.h \
$(INCDIR)/nc_panel.h \
../include/term.h \
$(INCDIR)/term_entry.h \
$(INCDIR)/nc_tparm.h \
$(INCDIR)/nc_alloc.h \
$(INCDIR)/nc_mingw.h
2000-07-09 10:46:08 +08:00
TEST_DEPS = ../lib/@LIB_PREFIX@ncurses@DFT_DEP_SUFFIX@
TEST_ARGS = @LDFLAGS_STATIC@ @TEST_ARGS@ @LDFLAGS_SHARED@
2005-10-10 02:41:57 +08:00
TEST_LDFLAGS = @LD_MODEL@ $(TEST_ARGS) @LIBS@ @LOCAL_LDFLAGS@ @LDFLAGS@
1998-03-01 12:21:12 +08:00
TEST_PROGS = \
captoinfo$x \
hardscroll$x \
2002-10-13 11:35:53 +08:00
link_test$x \
1998-03-01 12:21:12 +08:00
hashmap$x \
lib_mvcur$x
base = $(srcdir)/base
serial = $(srcdir)/tty
tinfo = $(srcdir)/tinfo
trace = $(srcdir)/trace
wide = $(srcdir)/widechar
win32con = $(srcdir)/win32con
1999-10-24 12:32:42 +08:00
1997-05-15 12:00:00 +08:00
################################################################################
2000-07-09 10:46:08 +08:00
all \
libs :: $(AUTO_SRC) ../lib $(LIBRARIES)
1998-03-01 12:21:12 +08:00
sources: $(AUTO_SRC)
1997-05-15 12:00:00 +08:00
2002-10-13 11:35:53 +08:00
$(DESTDIR)$(bindir) \
2000-10-21 12:42:11 +08:00
$(DESTDIR)$(libdir) :
mkdir -p $@
1997-05-15 12:00:00 +08:00
../lib : ; mkdir $@
2006-12-18 12:32:42 +08:00
./fallback.c : $(tinfo)/MKfallback.sh
sh -e $(tinfo)/MKfallback.sh $(TERMINFO) $(TERMINFO_SRC) $(TIC_PATH) $(FALLBACK_LIST) >$@
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
./lib_gen.c : $(base)/MKlib_gen.sh ../include/curses.h
sh -e $(base)/MKlib_gen.sh "$(CPP) $(CPPFLAGS)" "$(AWK)" generated <../include/curses.h >$@
1997-05-15 12:00:00 +08:00
2004-02-09 10:15:26 +08:00
init_keytry.h: make_keys$(BUILD_EXEEXT) keys.list
2005-10-10 02:41:57 +08:00
./make_keys$(BUILD_EXEEXT) keys.list > $@
2002-10-13 11:35:53 +08:00
keys.list : $(tinfo)/MKkeys_list.sh
AWK=$(AWK) sh $(tinfo)/MKkeys_list.sh $(TERMINFO_CAPS) | sort >$@
1998-03-01 12:21:12 +08:00
2004-02-09 10:15:26 +08:00
make_keys$(BUILD_EXEEXT) : \
1999-10-24 12:32:42 +08:00
$(tinfo)/make_keys.c \
names.c
2004-02-09 10:15:26 +08:00
$(BUILD_CC) -o $@ $(BUILD_CCFLAGS) $(tinfo)/make_keys.c $(BUILD_LDFLAGS) $(BUILD_LIBS)
1997-05-15 12:00:00 +08:00
2004-02-09 10:15:26 +08:00
make_hash$(BUILD_EXEEXT) : \
$(tinfo)/make_hash.c \
1997-05-15 12:00:00 +08:00
../include/hashsize.h
$(BUILD_CC) -o $@ $(BUILD_CCFLAGS) $(tinfo)/make_hash.c $(BUILD_LDFLAGS) $(BUILD_LIBS)
1997-05-15 12:00:00 +08:00
./expanded.c : $(srcdir)/curses.priv.h $(serial)/MKexpanded.sh
sh -e $(serial)/MKexpanded.sh "$(CPP)" $(CPPFLAGS) > $@
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
./comp_captab.c: \
2004-02-09 10:15:26 +08:00
make_hash$(BUILD_EXEEXT) \
1997-05-15 12:00:00 +08:00
../include/hashsize.h \
$(tinfo)/MKcaptab.sh \
1999-10-24 12:32:42 +08:00
$(tinfo)/MKcaptab.awk
sh -e $(tinfo)/MKcaptab.sh $(AWK) $(USE_BIG_STRINGS) $(tinfo)/MKcaptab.awk $(srcdir)/../include/@TERMINFO_CAPS@ > $@
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
./lib_keyname.c: keys.list $(base)/MKkeyname.awk
$(AWK) -f $(base)/MKkeyname.awk bigstrings=$(USE_BIG_STRINGS) keys.list > $@
1997-05-15 12:00:00 +08:00
./codes.c: $(tinfo)/MKcodes.awk
$(AWK) -f $(tinfo)/MKcodes.awk bigstrings=$(USE_BIG_STRINGS) $(srcdir)/../include/@TERMINFO_CAPS@ >$@
2006-12-18 12:32:42 +08:00
./names.c: $(tinfo)/MKnames.awk
$(AWK) -f $(tinfo)/MKnames.awk bigstrings=$(USE_BIG_STRINGS) $(srcdir)/../include/@TERMINFO_CAPS@ >$@
1997-05-15 12:00:00 +08:00
2006-12-18 12:32:42 +08:00
./unctrl.c: $(base)/MKunctrl.awk
echo | $(AWK) -f $(base)/MKunctrl.awk bigstrings=$(USE_BIG_STRINGS) >$@
1997-05-15 12:00:00 +08:00
tags:
$(CTAGS) *.[ch] */*.[ch]
1997-05-15 12:00:00 +08:00
2000-10-21 12:42:11 +08:00
@MAKE_UPPER_TAGS@TAGS:
@MAKE_UPPER_TAGS@ $(ETAGS) *.[ch] */*.[ch]
1997-05-15 12:00:00 +08:00
mostlyclean ::
2002-10-13 11:35:53 +08:00
-rm -f core tags TAGS *~ *.bak *.i *.ln *.atac trace
1998-03-01 12:21:12 +08:00
-rm -f $(TEST_PROGS)
1997-05-15 12:00:00 +08:00
clean :: mostlyclean
-rm -f $(AUTO_SRC)
2004-02-09 10:15:26 +08:00
-rm -f make_keys$(BUILD_EXEEXT)
-rm -f make_hash$(BUILD_EXEEXT)
2000-10-21 12:42:11 +08:00
-rm -rf .libs
1997-05-15 12:00:00 +08:00
distclean :: clean
-rm -f Makefile
realclean :: distclean
# These rules are used to allow "make -n" to work on a clean directory-tree
../include/hashsize.h \
../include/parametrized.h \
../include/term.h :
1998-03-01 12:21:12 +08:00
cd ../include; $(MAKE) $(CF_MFLAGS)
# These rules build test-programs for the modules that have test-drivers
test_progs : $(TEST_PROGS)
2006-12-18 12:32:42 +08:00
./link_test.c : $(base)/MKlib_gen.sh ../include/curses.h
sh -e $(base)/MKlib_gen.sh "$(CPP) $(CPPFLAGS)" "$(AWK)" implemented <../include/curses.h >$@
2002-10-13 11:35:53 +08:00
1999-10-24 12:32:42 +08:00
captoinfo$x : $(tinfo)/captoinfo.c $(TEST_DEPS)
2007-04-22 08:57:08 +08:00
@ECHO_LINK@ $(LIBTOOL_LINK) -o $@ $(CFLAGS_DEFAULT) -DMAIN $(tinfo)/captoinfo.c $(TEST_LDFLAGS)
1998-03-01 12:21:12 +08:00
1999-10-24 12:32:42 +08:00
hardscroll$x : $(serial)/hardscroll.c $(TEST_DEPS)
2007-04-22 08:57:08 +08:00
@ECHO_LINK@ $(LIBTOOL_LINK) -o $@ $(CFLAGS_DEFAULT) -DSCROLLDEBUG $(serial)/hardscroll.c $(TEST_LDFLAGS)
1998-03-01 12:21:12 +08:00
hashmap$x : $(serial)/hashmap.c $(serial)/hardscroll.c $(TEST_DEPS)
@ECHO_LINK@ $(LIBTOOL_LINK) -o $@ $(CFLAGS_DEFAULT) -DHASHDEBUG $(serial)/hashmap.c $(serial)/hardscroll.c $(TEST_LDFLAGS)
1998-03-01 12:21:12 +08:00
1999-10-24 12:32:42 +08:00
lib_mvcur$x : $(serial)/lib_mvcur.c $(TEST_DEPS) \
2004-02-09 10:15:26 +08:00
../@DFT_OBJ_SUBDIR@/dump_entry$o
2007-04-22 08:57:08 +08:00
@ECHO_LINK@ $(LIBTOOL_LINK) -o $@ $(CFLAGS_DEFAULT) -DNCURSES_TEST -I$(serial)/../../progs $(serial)/lib_mvcur.c ../@DFT_OBJ_SUBDIR@/dump_entry$o $(TEST_LDFLAGS)
1998-03-01 12:21:12 +08:00
2006-12-18 12:32:42 +08:00
link_test$x : ./link_test.c $(TEST_DEPS) \
2004-02-09 10:15:26 +08:00
../@DFT_OBJ_SUBDIR@/link_test$o
@ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) ../@DFT_OBJ_SUBDIR@/link_test$o $(TEST_LDFLAGS)
2002-10-13 11:35:53 +08:00
2004-02-09 10:15:26 +08:00
../@DFT_OBJ_SUBDIR@/dump_entry$o:
cd ../progs && $(MAKE) ../@DFT_OBJ_SUBDIR@/dump_entry$o
1997-05-15 12:00:00 +08:00
###############################################################################
# The remainder of this file is automatically generated during configuration
###############################################################################