2000-07-09 10:46:08 +08:00
|
|
|
# $Id: Makefile.in,v 1.66 2000/05/28 01:39:56 tom Exp $
|
1998-03-01 12:21:12 +08:00
|
|
|
##############################################################################
|
2000-07-09 10:46:08 +08:00
|
|
|
# Copyright (c) 1998,1999,2000 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. #
|
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Author: Thomas E. Dickey <dickey@clark.net> 1996,1997
|
|
|
|
#
|
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
|
|
|
|
THIS = Makefile
|
|
|
|
|
1998-03-01 12:21:12 +08:00
|
|
|
x = @PROG_EXT@
|
|
|
|
|
|
|
|
CF_MFLAGS = @cf_cv_makeflags@
|
1997-05-15 12:00:00 +08:00
|
|
|
@SET_MAKE@
|
|
|
|
|
|
|
|
MODEL = @DFT_LWR_MODEL@
|
|
|
|
INSTALL_PREFIX = @INSTALL_PREFIX@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
prefix = @prefix@
|
|
|
|
exec_prefix = @exec_prefix@
|
|
|
|
libdir = @libdir@
|
|
|
|
includedir = @includedir@
|
|
|
|
datadir = @datadir@
|
|
|
|
|
|
|
|
ticdir = $(datadir)/terminfo
|
|
|
|
|
|
|
|
INSTALL = @INSTALL@
|
1998-03-01 12:21:12 +08:00
|
|
|
INSTALL_LIB = @INSTALL@ @INSTALL_LIB@
|
1997-05-15 12:00:00 +08:00
|
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
|
|
|
|
|
|
AR = @AR@
|
|
|
|
AR_OPTS = @AR_OPTS@
|
|
|
|
AWK = @AWK@
|
|
|
|
LD = @LD@
|
|
|
|
LN_S = @LN_S@
|
|
|
|
|
|
|
|
CC = @CC@
|
|
|
|
CPP = @CPP@
|
|
|
|
CFLAGS = @CFLAGS@
|
|
|
|
|
|
|
|
INCDIR = $(srcdir)/../include
|
|
|
|
CPPFLAGS = -I../ncurses -I$(srcdir) @CPPFLAGS@ \
|
|
|
|
-DHAVE_CONFIG_H -DTERMINFO=\"$(ticdir)\"
|
|
|
|
|
|
|
|
CCFLAGS = $(CPPFLAGS) $(CFLAGS)
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
HOSTCC = @BUILD_CC@
|
1998-03-01 12:21:12 +08:00
|
|
|
HOSTCCFLAGS = @CFLAGS@ $(CPPFLAGS)
|
|
|
|
HOSTLDFLAGS = @LDFLAGS@ @LIBS@
|
|
|
|
|
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@)
|
|
|
|
|
|
|
|
LINK = $(CC)
|
|
|
|
LDFLAGS = @LDFLAGS@ @LD_MODEL@ @LIBS@
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
SHLIB_DIRS = -L../lib -L$(libdir)
|
|
|
|
SHLIB_LIST = $(SHLIB_DIRS) @SHLIB_LIST@
|
|
|
|
TINFO_LIST = $(SHLIB_DIRS) @TINFO_LIST@
|
|
|
|
|
1997-05-15 12:00:00 +08:00
|
|
|
MK_SHARED_LIB = @MK_SHARED_LIB@
|
1999-10-24 12:32:42 +08:00
|
|
|
|
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
|
|
|
|
|
|
|
RANLIB = @RANLIB@
|
|
|
|
|
|
|
|
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@
|
|
|
|
|
1997-05-15 12:00:00 +08:00
|
|
|
AUTO_SRC = \
|
|
|
|
../include/nomacros.h \
|
|
|
|
./comp_captab.c \
|
|
|
|
./expanded.c \
|
|
|
|
./fallback.c \
|
1999-10-24 12:32:42 +08:00
|
|
|
init_keytry.h \
|
1997-05-15 12:00:00 +08:00
|
|
|
./lib_keyname.c \
|
|
|
|
./lib_gen.c \
|
|
|
|
./codes.c \
|
|
|
|
./names.c \
|
|
|
|
./unctrl.c
|
|
|
|
|
2000-07-09 10:46:08 +08:00
|
|
|
TEST_DEPS = ../lib/@LIB_PREFIX@ncurses@DFT_DEP_SUFFIX@
|
1999-10-24 12:32:42 +08:00
|
|
|
TEST_ARGS = -L../lib -lncurses@DFT_ARG_SUFFIX@
|
1998-03-01 12:21:12 +08:00
|
|
|
TEST_LDFLAGS = @LD_MODEL@ $(TEST_ARGS) @LIBS@ @EXTRA_LIBS@ @LOCAL_LDFLAGS@ @LDFLAGS@
|
|
|
|
|
|
|
|
TEST_PROGS = \
|
|
|
|
captoinfo$x \
|
|
|
|
hardscroll$x \
|
|
|
|
hashmap$x \
|
|
|
|
lib_mvcur$x
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
base = $(srcdir)/base
|
|
|
|
serial = $(srcdir)/tty
|
|
|
|
tinfo = $(srcdir)/tinfo
|
|
|
|
trace = $(srcdir)/trace
|
|
|
|
|
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
|
|
|
|
|
|
|
$(INSTALL_PREFIX)$(libdir) :
|
|
|
|
$(srcdir)/../mkinstalldirs $@
|
|
|
|
|
|
|
|
../lib : ; mkdir $@
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
./fallback.c : $(tinfo)/MKfallback.sh
|
|
|
|
sh $(tinfo)/MKfallback.sh $(FALLBACK_LIST) >$@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
./lib_gen.c : $(base)/MKlib_gen.sh ../include/curses.h
|
|
|
|
sh $(base)/MKlib_gen.sh "$(CPP)" "$(AWK)" <../include/curses.h >$@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
../include/nomacros.h : $(base)/MKlib_gen.sh ../include/curses.h
|
|
|
|
sh $(base)/MKlib_gen.sh "$(CPP)" "$(AWK)" <../include/curses.h | \
|
1997-05-15 12:00:00 +08:00
|
|
|
fgrep undef >$@
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
init_keytry.h: make_keys$x $(tinfo)/keys.list
|
|
|
|
./make_keys $(tinfo)/keys.list > $@
|
1998-03-01 12:21:12 +08:00
|
|
|
|
|
|
|
make_keys$x : \
|
1999-10-24 12:32:42 +08:00
|
|
|
$(tinfo)/make_keys.c \
|
1998-03-01 12:21:12 +08:00
|
|
|
./names.c
|
1999-10-24 12:32:42 +08:00
|
|
|
$(HOSTCC) -o $@ $(HOSTCCFLAGS) $(tinfo)/make_keys.c $(HOSTLDFLAGS)
|
1997-05-15 12:00:00 +08:00
|
|
|
|
1998-03-01 12:21:12 +08:00
|
|
|
make_hash$x : \
|
1999-10-24 12:32:42 +08:00
|
|
|
$(tinfo)/comp_hash.c \
|
1997-05-15 12:00:00 +08:00
|
|
|
../include/hashsize.h
|
1999-10-24 12:32:42 +08:00
|
|
|
$(HOSTCC) -o $@ $(HOSTCCFLAGS) -DMAIN_PROGRAM $(tinfo)/comp_hash.c $(HOSTLDFLAGS)
|
1997-05-15 12:00:00 +08:00
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
./expanded.c : $(serial)/MKexpanded.sh
|
|
|
|
sh $(serial)/MKexpanded.sh "$(CPP)" $(CPPFLAGS) > $@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
./comp_captab.c: \
|
1998-03-01 12:21:12 +08:00
|
|
|
make_hash$x \
|
1997-05-15 12:00:00 +08:00
|
|
|
../include/hashsize.h \
|
1999-10-24 12:32:42 +08:00
|
|
|
$(tinfo)/MKcaptab.awk
|
|
|
|
sh $(tinfo)/MKcaptab.awk $(AWK) $(srcdir)/../include/Caps > $@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
./lib_keyname.c: $(tinfo)/keys.list $(base)/MKkeyname.awk
|
|
|
|
$(AWK) -f $(base)/MKkeyname.awk $(tinfo)/keys.list > $@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
./names.c ./codes.c: $(tinfo)/MKnames.awk
|
|
|
|
$(AWK) -f $(tinfo)/MKnames.awk $(srcdir)/../include/Caps
|
1997-05-15 12:00:00 +08:00
|
|
|
cat namehdr boolnames boolfnames numnames numfnames strnames strfnames nameftr >./names.c
|
|
|
|
cat namehdr boolcodes numcodes strcodes codeftr >./codes.c
|
|
|
|
-rm -f namehdr nameftr codeftr boolnames boolfnames boolcodes numnames numfnames numcodes strnames strfnames strcodes
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
./unctrl.c: $(base)/MKunctrl.awk
|
|
|
|
echo | $(AWK) -f $(base)/MKunctrl.awk >$@
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
tags:
|
|
|
|
ctags *.[ch]
|
|
|
|
|
|
|
|
TAGS:
|
|
|
|
etags *.[ch]
|
|
|
|
|
|
|
|
mostlyclean ::
|
1998-03-01 12:21:12 +08:00
|
|
|
-rm -f core tags TAGS *~ *.ln *.atac trace
|
|
|
|
-rm -f $(TEST_PROGS)
|
1997-05-15 12:00:00 +08:00
|
|
|
|
|
|
|
clean :: mostlyclean
|
|
|
|
-rm -f $(AUTO_SRC)
|
1999-10-24 12:32:42 +08:00
|
|
|
-rm -f make_keys$x
|
|
|
|
-rm -f make_hash$x
|
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)
|
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
captoinfo$x : $(tinfo)/captoinfo.c $(TEST_DEPS)
|
|
|
|
@ECHO_LINK@ $(CC) -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)
|
|
|
|
@ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) -DSCROLLDEBUG $(serial)/hardscroll.c $(TEST_LDFLAGS)
|
1998-03-01 12:21:12 +08:00
|
|
|
|
1999-10-24 12:32:42 +08:00
|
|
|
hashmap$x : $(serial)/hashmap.c $(TEST_DEPS)
|
|
|
|
@ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) -DHASHDEBUG $(serial)/hashmap.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) \
|
1998-03-01 12:21:12 +08:00
|
|
|
../@DFT_OBJ_SUBDIR@/dump_entry.o
|
1999-10-24 12:32:42 +08:00
|
|
|
@ECHO_LINK@ $(CC) -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
|
|
|
|
|
|
|
../@DFT_OBJ_SUBDIR@/dump_entry.o:
|
1999-10-24 12:32:42 +08:00
|
|
|
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
|
|
|
|
###############################################################################
|