]> ncurses.scripts.mit.edu Git - ncurses.git/blob - test/Makefile.in
ncurses 5.9 - patch 20130921
[ncurses.git] / test / Makefile.in
1 # $Id: Makefile.in,v 1.110 2013/08/04 20:23:20 tom Exp $
2 ##############################################################################
3 # Copyright (c) 1998-2011,2013 Free Software Foundation, Inc.                #
4 #                                                                            #
5 # Permission is hereby granted, free of charge, to any person obtaining a    #
6 # copy of this software and associated documentation files (the "Software"), #
7 # to deal in the Software without restriction, including without limitation  #
8 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
9 # with modifications, sublicense, and/or sell copies of the Software, and to #
10 # permit persons to whom the Software is furnished to do so, subject to the  #
11 # following conditions:                                                      #
12 #                                                                            #
13 # The above copyright notice and this permission notice shall be included in #
14 # all copies or substantial portions of the Software.                        #
15 #                                                                            #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
19 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
22 # DEALINGS IN THE SOFTWARE.                                                  #
23 #                                                                            #
24 # Except as contained in this notice, the name(s) of the above copyright     #
25 # holders shall not be used in advertising or otherwise to promote the sale, #
26 # use or other dealings in this Software without prior written               #
27 # authorization.                                                             #
28 ##############################################################################
29 #
30 # Author: Thomas E. Dickey 1996-on
31 #
32 # Makefile for ncurses tests.
33
34 # turn off _all_ suffix rules; we'll generate our own
35 .SUFFIXES:
36
37 SHELL           = /bin/sh
38 VPATH           = @srcdir@
39
40 @SET_MAKE@
41
42 destdir         =
43 x               = @EXEEXT@
44 o               = .@OBJEXT@
45
46 MODEL           = ../@DFT_OBJ_SUBDIR@
47 srcdir          = @srcdir@
48 prefix          = @prefix@
49 exec_prefix     = @exec_prefix@
50 bindir          = @bindir@
51 libdir          = @libdir@
52 includedir      = @includedir@
53 includesubdir   = @includesubdir@
54
55 BINDIR          = $(DESTDIR)$(bindir)
56 LIBDIR          = $(DESTDIR)$(libdir)
57 INCLUDEDIR      = $(DESTDIR)$(includedir)$(includesubdir)
58
59 LIBTOOL         = @LIBTOOL@
60 LIBTOOL_CLEAN   = @LIB_CLEAN@
61 LIBTOOL_COMPILE = @LIB_COMPILE@
62 LIBTOOL_LINK    = @LIB_LINK@
63
64 INSTALL         = @INSTALL@
65 INSTALL_PROG    = @INSTALL_PROGRAM@
66 transform       = @program_transform_name@
67 TRANSFORM       = sed 's/$x$$//'|sed '$(transform)'|sed 's/$$/$x/'
68
69 CTAGS           = @CTAGS@
70 ETAGS           = @ETAGS@
71
72 CC              = @CC@
73 CPP             = @CPP@
74
75 CFLAGS          = @CFLAGS@ @EXTRA_CFLAGS@
76 CPPFLAGS        = -I. -I$(srcdir) -I../test -DHAVE_CONFIG_H @CPPFLAGS@
77
78 CCFLAGS         = $(CPPFLAGS) $(CFLAGS)
79
80 CFLAGS_LIBTOOL  = $(CCFLAGS)
81 CFLAGS_NORMAL   = $(CCFLAGS)
82 CFLAGS_DEBUG    = $(CCFLAGS) @CC_G_OPT@ -DTRACE
83 CFLAGS_PROFILE  = $(CCFLAGS) -pg
84 CFLAGS_SHARED   = $(CCFLAGS) @CC_SHARED_OPTS@
85
86 CFLAGS_DEFAULT  = $(CFLAGS_@DFT_UPR_MODEL@)
87
88 REL_VERSION     = @cf_cv_rel_version@
89 ABI_VERSION     = @cf_cv_abi_version@
90 LOCAL_LIBDIR    = @top_builddir@/lib
91 LOCAL_LIBS      = @TEST_DEPS@
92 MATH_LIB        = @MATH_LIB@
93 TEST_LIBS       = @TEST_LIBS@
94
95 LD              = @LD@
96 LINK            = @LINK_TESTS@ $(LIBTOOL_LINK) $(CFLAGS)
97
98 LDFLAGS         = @LD_MODEL@ @LOCAL_LDFLAGS@ @LDFLAGS@
99
100 LDFLAGS_LIBTOOL = $(LDFLAGS) $(CFLAGS_LIBTOOL)
101 LDFLAGS_NORMAL  = $(LDFLAGS) $(CFLAGS_NORMAL)
102 LDFLAGS_DEBUG   = $(LDFLAGS) $(CFLAGS_DEBUG)
103 LDFLAGS_PROFILE = $(LDFLAGS) $(CFLAGS_PROFILE)
104 LDFLAGS_SHARED  = $(LDFLAGS) $(CFLAGS_SHARED) @LD_SHARED_OPTS@
105
106 TEST_ARGS       = @LDFLAGS_STATIC@ @TEST_ARGS@ @LDFLAGS_SHARED@
107
108 # use these for linking with all of the libraries
109 LIBS_DEFAULT    = $(TEST_ARGS) @LIBS@ $(TEST_LIBS) $(MATH_LIB)
110 LDFLAGS_DEFAULT = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_DEFAULT)
111
112 # use these for linking with the (n)curses library and possibly pthreads
113 LIBS_THREADS    = `echo "$(TEST_ARGS) @LIBS@" | sed -e 's/-lform.*-lpanel[^ ]*//'` $(TEST_LIBS) $(MATH_LIB) @PTHREAD@
114 LDFLAGS_THREADS = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_THREADS)
115
116 # use these for linking with the (n)curses library
117 LIBS_CURSES     = `echo "$(TEST_ARGS) @LIBS@" | sed -e 's/-lform.*-lpanel[^ ]*//'` $(TEST_LIBS) $(MATH_LIB)
118 LDFLAGS_CURSES  = $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_CURSES)
119
120 # use these for linking with the tinfo library if we have it, or curses library if not
121 LIBS_TINFO      = @LDFLAGS_STATIC@ @TINFO_LIBS@ @LDFLAGS_SHARED@ @LIBS@ $(TEST_LIBS) $(MATH_LIB)
122 LDFLAGS_TINFO   = @TINFO_LDFLAGS@ $(LDFLAGS_@DFT_UPR_MODEL@) $(LIBS_TINFO)
123
124 LINT            = @LINT@
125 LINT_OPTS       = @LINT_OPTS@
126 LINT_LIBS       = -lform -lmenu -lpanel -lncurses @LIBS@
127
128 HEADER_DEPS     = \
129         ../include/curses.h \
130         ../include/term.h
131
132 # The rest is generated from the "programs" and "modules" files...