FIXUP: HAVE_SYS_IOCTL_H
[mirror-ossqm-ncurses.git] / Makefile.in
blob2e74c6d268aaff1f1446339b789eb9d57590a536
1 # $Id: Makefile.in,v 1.30 2010/11/27 21:45:27 tom Exp $
2 ##############################################################################
3 # Copyright (c) 1998-2008,2010 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 ##############################################################################
30 # Author: Thomas E. Dickey <dickey@clark.net> 1996,1997
32 # Master Makefile for ncurses library.
34 SHELL = /bin/sh
35 VPATH = @srcdir@
37 DESTDIR=@DESTDIR@
38 CF_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)"
40 @SET_MAKE@
42 NCURSES_MAJOR = @NCURSES_MAJOR@
43 NCURSES_MINOR = @NCURSES_MINOR@
44 NCURSES_PATCH = @NCURSES_PATCH@
46 top_srcdir = @top_srcdir@
47 srcdir = @srcdir@
49 prefix = @prefix@
50 exec_prefix = @exec_prefix@
52 bindir = @bindir@
53 ticdir = @TERMINFO@
54 includedir = @includedir@
55 libdir = @libdir@
56 mandir = @mandir@
57 pkgconfigdir = @libdir@/pkgconfig
59 INSTALL = @INSTALL@
60 INSTALL_DATA = @INSTALL_DATA@
62 DIRS_TO_MAKE = @DIRS_TO_MAKE@
64 all :: $(DIRS_TO_MAKE)
66 $(DIRS_TO_MAKE) :
67 mkdir $@
69 install :: install-pkgconfig
71 install-pkgconfig:
72 mkdir -p $(DESTDIR)$(pkgconfigdir)
73 $(INSTALL_DATA) libncurses.pc $(DESTDIR)$(pkgconfigdir)
74 $(INSTALL_DATA) libmenu.pc $(DESTDIR)$(pkgconfigdir)
75 $(INSTALL_DATA) libform.pc $(DESTDIR)$(pkgconfigdir)
76 $(INSTALL_DATA) libpanel.pc $(DESTDIR)$(pkgconfigdir)
78 preinstall :
79 @ echo ''
80 @ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):'
81 @ echo ''
82 @ echo ' extended funcs: '`test @NCURSES_EXT_FUNCS@ != 0 && echo yes || echo no`
83 @ echo ' xterm terminfo: '@WHICH_XTERM@
84 @ echo ''
85 @ echo ' bin directory: '$(bindir)
86 @ echo ' lib directory: '$(libdir)
87 @ echo ' include directory: '$(includedir)
88 @ echo ' man directory: '$(mandir)
89 @MAKE_TERMINFO@ @ echo ' terminfo directory: '$(ticdir)
90 @ echo ''
91 @ test "$(includedir)" = "$(prefix)/include" || \
92 echo '** Include-directory is not in a standard location'
93 @ test ! -f $(includedir)/termcap.h || \
94 fgrep NCURSES_VERSION $(includedir)/termcap.h >/dev/null || \
95 echo '** Will overwrite non-ncurses termcap.h'
96 @ test ! -f $(includedir)/curses.h || \
97 fgrep NCURSES_VERSION $(includedir)/curses.h >/dev/null || \
98 echo '** Will overwrite non-ncurses curses.h'
100 dlls: libs
101 $(SHELL) $(srcdir)/mk-dlls.sh
103 distclean \
104 realclean ::
105 -rm -f mk-dlls.sh mingw_arch
107 # Put the common rules here so that we can easily construct the list of
108 # directories to visit.
109 all \
110 clean \
111 distclean \
112 mostlyclean \
113 realclean \
114 depend \
115 sources \
116 tags \
117 uninstall \
118 install ::