projects
/
ncurses.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
ncurses 5.9 - patch 20140831
[ncurses.git]
/
test
/
Makefile.in
diff --git
a/test/Makefile.in
b/test/Makefile.in
index 600954f8e125c74a2898f0f9bf27baaeaef65714..5e8bd42a6e93a080cbf31308a009a1eb96447fd7 100644
(file)
--- a/
test/Makefile.in
+++ b/
test/Makefile.in
@@
-1,6
+1,6
@@
-# $Id: Makefile.in,v 1.
97 2007/04/28 15:28:28
tom Exp $
+# $Id: Makefile.in,v 1.
113 2014/08/02 15:45:05
tom Exp $
##############################################################################
##############################################################################
-# Copyright (c) 1998-20
06,2007
Free Software Foundation, Inc. #
+# Copyright (c) 1998-20
13,2014
Free Software Foundation, Inc. #
# #
# Permission is hereby granted, free of charge, to any person obtaining a #
# copy of this software and associated documentation files (the "Software"), #
# #
# Permission is hereby granted, free of charge, to any person obtaining a #
# copy of this software and associated documentation files (the "Software"), #
@@
-35,6
+35,7
@@
.SUFFIXES:
SHELL = /bin/sh
.SUFFIXES:
SHELL = /bin/sh
+VPATH = @srcdir@
@SET_MAKE@
@SET_MAKE@
@@
-46,19
+47,35
@@
MODEL = ../@DFT_OBJ_SUBDIR@
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
srcdir = @srcdir@
prefix = @prefix@
exec_prefix = @exec_prefix@
+datarootdir = @datarootdir@
+
+bindir = @bindir@
libdir = @libdir@
includedir = @includedir@
libdir = @libdir@
includedir = @includedir@
+includesubdir = @includesubdir@
+
+BINDIR = $(DESTDIR)$(bindir)
+LIBDIR = $(DESTDIR)$(libdir)
+INCLUDEDIR = $(DESTDIR)$(includedir)$(includesubdir)
LIBTOOL = @LIBTOOL@
LIBTOOL_CLEAN = @LIB_CLEAN@
LIBTOOL_COMPILE = @LIB_COMPILE@
LIBTOOL_LINK = @LIB_LINK@
LIBTOOL = @LIBTOOL@
LIBTOOL_CLEAN = @LIB_CLEAN@
LIBTOOL_COMPILE = @LIB_COMPILE@
LIBTOOL_LINK = @LIB_LINK@
+INSTALL = @INSTALL@
+INSTALL_PROG = @INSTALL_PROGRAM@
+transform = @program_transform_name@
+TRANSFORM = sed 's/$x$$//'|sed '$(transform)'|sed 's/$$/$x/'
+
+CTAGS = @CTAGS@
+ETAGS = @ETAGS@
+
CC = @CC@
CPP = @CPP@
CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@
CC = @CC@
CPP = @CPP@
CFLAGS = @CFLAGS@ @EXTRA_CFLAGS@
-CPPFLAGS =
-I../test -I$(srcdir)
-DHAVE_CONFIG_H @CPPFLAGS@
+CPPFLAGS =
-I. -I$(srcdir) -I../test
-DHAVE_CONFIG_H @CPPFLAGS@
CCFLAGS = $(CPPFLAGS) $(CFLAGS)
CCFLAGS = $(CPPFLAGS) $(CFLAGS)
@@
-75,6
+92,7
@@
ABI_VERSION = @cf_cv_abi_version@
LOCAL_LIBDIR = @top_builddir@/lib
LOCAL_LIBS = @TEST_DEPS@
MATH_LIB = @MATH_LIB@
LOCAL_LIBDIR = @top_builddir@/lib
LOCAL_LIBS = @TEST_DEPS@
MATH_LIB = @MATH_LIB@
+TEST_LIBS = @TEST_LIBS@
LD = @LD@
LINK = @LINK_TESTS@ $(LIBTOOL_LINK) $(CFLAGS)
LD = @LD@
LINK = @LINK_TESTS@ $(LIBTOOL_LINK) $(CFLAGS)
@@
-87,19
+105,23
@@
LDFLAGS_DEBUG = $(LDFLAGS) $(CFLAGS_DEBUG)
LDFLAGS_PROFILE = $(LDFLAGS) $(CFLAGS_PROFILE)
LDFLAGS_SHARED = $(LDFLAGS) $(CFLAGS_SHARED) @LD_SHARED_OPTS@
LDFLAGS_PROFILE = $(LDFLAGS) $(CFLAGS_PROFILE)
LDFLAGS_SHARED = $(LDFLAGS) $(CFLAGS_SHARED) @LD_SHARED_OPTS@
-TEST_ARGS = @LDFLAGS_STATIC@ @TEST_ARGS@ @LDFLAGS_SHARED@
+TEST_ARGS = @LDFLAGS_STATIC@ @TEST_ARGS@ @LDFLAGS_SHARED@
# use these for linking with all of the libraries
# use these for linking with all of the libraries
-LIBS_DEFAULT = $(TEST_ARGS) @LIBS@ $(MATH_LIB)
+LIBS_DEFAULT = $(TEST_ARGS) @LIBS@ $(
TEST_LIBS) $(
MATH_LIB)
LDFLAGS_DEFAULT = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_DEFAULT)
LDFLAGS_DEFAULT = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_DEFAULT)
+# use these for linking with the (n)curses library and possibly pthreads
+LIBS_THREADS = `echo "$(TEST_ARGS) @LIBS@" | sed -e 's/-lform.*-lpanel[^ ]*//'` $(TEST_LIBS) $(MATH_LIB) @PTHREAD@
+LDFLAGS_THREADS = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_THREADS)
+
# use these for linking with the (n)curses library
# use these for linking with the (n)curses library
-LIBS_CURSES = `echo "$(TEST_ARGS) @LIBS@" | sed -e 's/-lform.*-lpanel[^ ]*//'` $(MATH_LIB)
+LIBS_CURSES = `echo "$(TEST_ARGS) @LIBS@" | sed -e 's/-lform.*-lpanel[^ ]*//'` $(
TEST_LIBS) $(
MATH_LIB)
LDFLAGS_CURSES = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_CURSES)
# use these for linking with the tinfo library if we have it, or curses library if not
LDFLAGS_CURSES = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_CURSES)
# use these for linking with the tinfo library if we have it, or curses library if not
-LIBS_TINFO = @LDFLAGS_STATIC@ @TINFO_
ARGS@ @LDFLAGS_SHARED@ @LIBS@
$(MATH_LIB)
-LDFLAGS_TINFO = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_TINFO)
+LIBS_TINFO = @LDFLAGS_STATIC@ @TINFO_
LIBS@ @LDFLAGS_SHARED@ @LIBS@ $(TEST_LIBS)
$(MATH_LIB)
+LDFLAGS_TINFO =
@TINFO_LDFLAGS@
$(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_TINFO)
LINT = @LINT@
LINT_OPTS = @LINT_OPTS@
LINT = @LINT@
LINT_OPTS = @LINT_OPTS@