]> ncurses.scripts.mit.edu Git - ncurses.git/blob - misc/Makefile.in
ncurses 6.0 - patch 20170225
[ncurses.git] / misc / Makefile.in
1 # $Id: Makefile.in,v 1.66 2016/09/03 00:07:54 tom Exp $
2 ##############################################################################
3 # Copyright (c) 1998-2015,2016 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 miscellany directory
33 #
34 # This makes/installs the terminfo database
35 #
36 # The variable 'srcdir' refers to the source-distribution, and can be set with
37 # the configure script by "--srcdir=DIR".
38 #
39 # The rules are organized to produce the libraries for the configured models,
40 # and the programs with the configured default model.
41
42 # turn off _all_ suffix rules; we'll generate our own
43 .SUFFIXES :
44
45 SHELL           = @SHELL@
46 VPATH           = @srcdir@
47 THIS            = Makefile
48
49 CF_MFLAGS       = @cf_cv_makeflags@
50 @SET_MAKE@
51
52 DESTDIR         = @DESTDIR@
53 top_srcdir      = @top_srcdir@
54 srcdir          = @srcdir@
55 prefix          = @prefix@
56 exec_prefix     = @exec_prefix@
57 bindir          = @bindir@
58 libdir          = @libdir@
59 datarootdir     = @datarootdir@
60 datadir         = @datadir@
61 includesubdir   = @includesubdir@
62
63 INCLUDEDIR      = $(DESTDIR)$(includedir)$(includesubdir)
64
65 tabsetdir       = $(datadir)/tabset
66 ticdir          = @TERMINFO@
67 ticfile         = $(ticdir).db
68 source          = @TERMINFO_SRC@
69
70 INSTALL         = @INSTALL@
71 INSTALL_PROGRAM = @INSTALL_PROGRAM@
72 INSTALL_SCRIPT  = @INSTALL_SCRIPT@
73 INSTALL_DATA    = @INSTALL_DATA@
74
75 PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
76
77 ################################################################################
78 all :   terminfo.tmp
79
80 depend :
81
82 sources :: terminfo.tmp 
83
84 install : @MISC_INSTALL_DATA@ install.libs
85
86 install.data :  terminfo.tmp \
87                 $(DESTDIR)$(libdir) \
88                 $(DESTDIR)$(datadir) \
89                 $(DESTDIR)$(tabsetdir)
90         DESTDIR=${DESTDIR} \
91         prefix=${prefix} \
92         exec_prefix=${exec_prefix} \
93         bindir=${bindir} \
94         top_srcdir=${top_srcdir} \
95         srcdir=${srcdir} \
96         datadir=${datadir} \
97         ticdir=${ticdir} \
98         source=terminfo.tmp \
99         cross_compiling=@cross_compiling@ \
100         $(SHELL) ./run_tic.sh
101         @cd $(srcdir)/tabset && \
102                 $(SHELL) -c 'for i in * ; do \
103                         if test -f $$i ; then \
104                         echo installing $$i; \
105                         $(INSTALL_DATA) $$i $(DESTDIR)$(tabsetdir)/$$i; \
106                         fi; done'
107
108 NCURSES_CONFIG  = ncurses@DFT_ARG_SUFFIX@@cf_cv_abi_version@-config
109
110 install.libs :: $(DESTDIR)$(bindir) ncurses-config
111         $(INSTALL_SCRIPT) ncurses-config $(DESTDIR)$(bindir)/$(NCURSES_CONFIG)
112
113 # some packagers prefer to be able to construct pc-files on servers where
114 # pkg-config is not installed.  Work around that by creating the library
115 # directory during this rule:
116 @MAKE_PC_FILES@install.libs :: pc-files
117 @MAKE_PC_FILES@ @$(SHELL) -c 'case "x$(DESTDIR)$(PKG_CONFIG_LIBDIR)" in \
118 @MAKE_PC_FILES@         (x/*) \
119 @MAKE_PC_FILES@                 mkdir -p $(DESTDIR)$(PKG_CONFIG_LIBDIR); \
120 @MAKE_PC_FILES@                 for name in *.pc; do \
121 @MAKE_PC_FILES@                         echo installing $$name; \
122 @MAKE_PC_FILES@                         $(INSTALL_DATA) $$name $(DESTDIR)$(PKG_CONFIG_LIBDIR)/$$name; \
123 @MAKE_PC_FILES@                 done \
124 @MAKE_PC_FILES@                 ;; \
125 @MAKE_PC_FILES@         (*) \
126 @MAKE_PC_FILES@                 echo "...skip actual install: no destination was given" ; \
127 @MAKE_PC_FILES@                 ;; \
128 @MAKE_PC_FILES@         esac'
129
130 @MAKE_PC_FILES@sources :: pc-files
131 @MAKE_PC_FILES@pc-files :
132 @MAKE_PC_FILES@ $(SHELL) ./gen-pkgconfig
133 @MAKE_PC_FILES@ touch $@
134
135 terminfo.tmp : run_tic.sed $(source)
136         echo '** adjusting tabset paths'
137         sed -f run_tic.sed $(source) >terminfo.tmp
138
139 run_tic.sed :
140         WHICH_XTERM=@WHICH_XTERM@ \
141         XTERM_KBS=@XTERM_KBS@ \
142         datadir=${datadir} \
143         $(SHELL) $(srcdir)/gen_edit.sh >$@
144
145 $(DESTDIR)$(bindir) \
146 $(DESTDIR)$(libdir) \
147 $(DESTDIR)$(datadir) \
148 $(DESTDIR)$(tabsetdir) :
149         mkdir -p $@
150
151 uninstall : @MISC_UNINSTALL_DATA@ uninstall.libs
152
153 uninstall.data :
154         -test -d $(DESTDIR)$(tabsetdir) && rm -rf $(DESTDIR)$(tabsetdir)
155         -test -d $(DESTDIR)$(ticdir) && rm -rf $(DESTDIR)$(ticdir)
156         -test -f $(DESTDIR)$(ticfile) && rm -f $(DESTDIR)$(ticfile)
157
158 uninstall.libs :
159         -rm -f $(DESTDIR)$(bindir)/$(NCURSES_CONFIG)
160 @MAKE_PC_FILES@ @$(SHELL) -c 'case x$(DESTDIR)$(PKG_CONFIG_LIBDIR) in \
161         (x/*) \
162                 for name in *.pc; do \
163                         echo uninstalling $$name; \
164                         rm -f $(DESTDIR)$(PKG_CONFIG_LIBDIR)/$$name; \
165                 done \
166                 ;; \
167         esac'
168
169 tags :
170
171 @MAKE_UPPER_TAGS@TAGS :
172
173 mostlyclean :
174         -rm -f terminfo.tmp
175         -rm -f run_tic.sed
176 @MAKE_PC_FILES@ -rm -f *.pc pc-files
177         -rm -f core tags TAGS *~ *.bak *.ln *.atac trace
178
179 clean :: mostlyclean
180
181 distclean : clean
182 @MAKE_PC_FILES@ -rm -f gen-pkgconfig
183         -rm -f Makefile run_tic.sh ncurses-config
184
185 realclean : distclean
186
187 ###############################################################################
188 # The remainder of this file is automatically generated during configuration
189 ###############################################################################