]> ncurses.scripts.mit.edu Git - ncurses.git/blob - ncurses/Makefile.in
ncurses 5.1
[ncurses.git] / ncurses / Makefile.in
1 # $Id: Makefile.in,v 1.66 2000/05/28 01:39:56 tom Exp $
2 ##############################################################################
3 # Copyright (c) 1998,1999,2000 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 <dickey@clark.net> 1996,1997
31 #
32 # Makefile for ncurses source code.
33 #
34 # This makes the following:
35 #       programs
36 #       includes
37 #       libraries (normal/debug/profile/shared)
38 #
39 # The variable 'srcdir' refers to the source-distribution, and can be set with
40 # the configure script by "--srcdir=DIR".
41 #
42 # The rules are organized to produce the libraries for the configured models,
43 # and the programs with the configured default model.
44
45 # turn off _all_ suffix rules; we'll generate our own
46 .SUFFIXES:
47
48 SHELL           = /bin/sh
49 THIS            = Makefile
50
51 x               = @PROG_EXT@
52
53 CF_MFLAGS       = @cf_cv_makeflags@
54 @SET_MAKE@
55
56 MODEL           = @DFT_LWR_MODEL@
57 INSTALL_PREFIX  = @INSTALL_PREFIX@
58 srcdir          = @srcdir@
59 prefix          = @prefix@
60 exec_prefix     = @exec_prefix@
61 libdir          = @libdir@
62 includedir      = @includedir@
63 datadir         = @datadir@
64
65 ticdir          = $(datadir)/terminfo
66
67 INSTALL         = @INSTALL@
68 INSTALL_LIB     = @INSTALL@ @INSTALL_LIB@
69 INSTALL_DATA    = @INSTALL_DATA@
70
71 AR              = @AR@
72 AR_OPTS         = @AR_OPTS@
73 AWK             = @AWK@
74 LD              = @LD@
75 LN_S            = @LN_S@
76
77 CC              = @CC@
78 CPP             = @CPP@
79 CFLAGS          = @CFLAGS@
80
81 INCDIR          = $(srcdir)/../include
82 CPPFLAGS        = -I../ncurses -I$(srcdir) @CPPFLAGS@ \
83                   -DHAVE_CONFIG_H -DTERMINFO=\"$(ticdir)\"
84
85 CCFLAGS         = $(CPPFLAGS) $(CFLAGS)
86
87 HOSTCC          = @BUILD_CC@
88 HOSTCCFLAGS     = @CFLAGS@ $(CPPFLAGS)
89 HOSTLDFLAGS     = @LDFLAGS@ @LIBS@
90
91 CFLAGS_NORMAL   = $(CCFLAGS)
92 CFLAGS_DEBUG    = $(CCFLAGS) @CC_G_OPT@ -DTRACE
93 CFLAGS_PROFILE  = $(CCFLAGS) -pg
94 CFLAGS_SHARED   = $(CCFLAGS) @CC_SHARED_OPTS@
95
96 CFLAGS_DEFAULT  = $(CFLAGS_@DFT_UPR_MODEL@)
97
98 LINK            = $(CC)
99 LDFLAGS         = @LDFLAGS@ @LD_MODEL@ @LIBS@
100
101 SHLIB_DIRS      = -L../lib -L$(libdir)
102 SHLIB_LIST      = $(SHLIB_DIRS) @SHLIB_LIST@
103 TINFO_LIST      = $(SHLIB_DIRS) @TINFO_LIST@
104
105 MK_SHARED_LIB   = @MK_SHARED_LIB@
106
107 REL_VERSION     = @cf_cv_rel_version@
108 ABI_VERSION     = @cf_cv_abi_version@
109
110 RANLIB          = @RANLIB@
111
112 LIBRARIES       = @LIBS_TO_MAKE@
113
114 LINT            = @LINT@
115 LINT_OPTS       = @LINT_OPTS@
116 LINT_LIBS       = -lncurses @LIBS@
117
118 FALLBACK_LIST   = @FALLBACK_LIST@
119
120 AUTO_SRC = \
121         ../include/nomacros.h \
122         ./comp_captab.c \
123         ./expanded.c \
124         ./fallback.c \
125         init_keytry.h \
126         ./lib_keyname.c \
127         ./lib_gen.c \
128         ./codes.c \
129         ./names.c \
130         ./unctrl.c
131
132 TEST_DEPS       = ../lib/@LIB_PREFIX@ncurses@DFT_DEP_SUFFIX@
133 TEST_ARGS       = -L../lib -lncurses@DFT_ARG_SUFFIX@
134 TEST_LDFLAGS    = @LD_MODEL@ $(TEST_ARGS) @LIBS@ @EXTRA_LIBS@ @LOCAL_LDFLAGS@ @LDFLAGS@
135
136 TEST_PROGS = \
137         captoinfo$x \
138         hardscroll$x \
139         hashmap$x \
140         lib_mvcur$x
141
142 base    = $(srcdir)/base
143 serial  = $(srcdir)/tty
144 tinfo   = $(srcdir)/tinfo
145 trace   = $(srcdir)/trace
146
147 ################################################################################
148 all \
149 libs ::         $(AUTO_SRC) ../lib $(LIBRARIES)
150
151 sources:        $(AUTO_SRC)
152
153 $(INSTALL_PREFIX)$(libdir) :
154         $(srcdir)/../mkinstalldirs $@
155
156 ../lib : ; mkdir $@
157
158 ./fallback.c : $(tinfo)/MKfallback.sh
159         sh $(tinfo)/MKfallback.sh $(FALLBACK_LIST) >$@
160
161 ./lib_gen.c : $(base)/MKlib_gen.sh ../include/curses.h
162         sh $(base)/MKlib_gen.sh "$(CPP)" "$(AWK)" <../include/curses.h >$@
163
164 ../include/nomacros.h : $(base)/MKlib_gen.sh ../include/curses.h
165         sh $(base)/MKlib_gen.sh "$(CPP)" "$(AWK)" <../include/curses.h | \
166                 fgrep undef >$@
167
168 init_keytry.h: make_keys$x $(tinfo)/keys.list
169         ./make_keys $(tinfo)/keys.list > $@
170
171 make_keys$x : \
172                 $(tinfo)/make_keys.c \
173                 ./names.c
174         $(HOSTCC) -o $@ $(HOSTCCFLAGS) $(tinfo)/make_keys.c $(HOSTLDFLAGS)
175
176 make_hash$x : \
177                 $(tinfo)/comp_hash.c \
178                 ../include/hashsize.h
179         $(HOSTCC) -o $@ $(HOSTCCFLAGS) -DMAIN_PROGRAM $(tinfo)/comp_hash.c $(HOSTLDFLAGS)
180
181 ./expanded.c : $(serial)/MKexpanded.sh
182         sh $(serial)/MKexpanded.sh "$(CPP)" $(CPPFLAGS) > $@
183
184 ./comp_captab.c: \
185                 make_hash$x \
186                 ../include/hashsize.h \
187                 $(tinfo)/MKcaptab.awk
188         sh $(tinfo)/MKcaptab.awk $(AWK) $(srcdir)/../include/Caps > $@
189
190 ./lib_keyname.c: $(tinfo)/keys.list $(base)/MKkeyname.awk
191         $(AWK) -f $(base)/MKkeyname.awk $(tinfo)/keys.list > $@
192
193 ./names.c ./codes.c: $(tinfo)/MKnames.awk
194         $(AWK) -f $(tinfo)/MKnames.awk $(srcdir)/../include/Caps
195         cat namehdr boolnames boolfnames numnames numfnames strnames strfnames nameftr >./names.c
196         cat namehdr boolcodes numcodes strcodes codeftr >./codes.c
197         -rm -f namehdr nameftr codeftr boolnames boolfnames boolcodes numnames numfnames numcodes strnames strfnames strcodes
198
199 ./unctrl.c: $(base)/MKunctrl.awk
200         echo | $(AWK) -f $(base)/MKunctrl.awk >$@
201
202 tags:
203         ctags *.[ch]
204
205 TAGS:
206         etags *.[ch]
207
208 mostlyclean ::
209         -rm -f core tags TAGS *~ *.ln *.atac trace
210         -rm -f $(TEST_PROGS)
211
212 clean :: mostlyclean
213         -rm -f $(AUTO_SRC)
214         -rm -f make_keys$x
215         -rm -f make_hash$x
216
217 distclean :: clean
218         -rm -f Makefile
219
220 realclean :: distclean
221
222 # These rules are used to allow "make -n" to work on a clean directory-tree
223 ../include/hashsize.h \
224 ../include/parametrized.h \
225 ../include/term.h :
226         cd ../include; $(MAKE) $(CF_MFLAGS)
227
228 # These rules build test-programs for the modules that have test-drivers
229 test_progs : $(TEST_PROGS)
230
231 captoinfo$x : $(tinfo)/captoinfo.c $(TEST_DEPS)
232         @ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) -DMAIN $(tinfo)/captoinfo.c $(TEST_LDFLAGS)
233
234 hardscroll$x : $(serial)/hardscroll.c $(TEST_DEPS)
235         @ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) -DSCROLLDEBUG $(serial)/hardscroll.c $(TEST_LDFLAGS)
236
237 hashmap$x : $(serial)/hashmap.c $(TEST_DEPS)
238         @ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) -DHASHDEBUG $(serial)/hashmap.c $(TEST_LDFLAGS)
239
240 lib_mvcur$x : $(serial)/lib_mvcur.c $(TEST_DEPS) \
241                 ../@DFT_OBJ_SUBDIR@/dump_entry.o
242         @ECHO_LINK@ $(CC) -o $@ $(CFLAGS_DEFAULT) -DNCURSES_TEST -I$(serial)/../../progs $(serial)/lib_mvcur.c ../@DFT_OBJ_SUBDIR@/dump_entry.o $(TEST_LDFLAGS)
243
244 ../@DFT_OBJ_SUBDIR@/dump_entry.o:
245         cd ../progs && $(MAKE) ../@DFT_OBJ_SUBDIR@/dump_entry.o
246
247 ###############################################################################
248 # The remainder of this file is automatically generated during configuration
249 ###############################################################################