1# $Id: Makefile.in,v 1.22 2001/10/27 18:17:22 tom Exp $ 2############################################################################## 3# Copyright (c) 1998 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# Master Makefile for ncurses library. 33 34SHELL = /bin/sh 35 36DESTDIR=@DESTDIR@ 37CF_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" 38 39@SET_MAKE@ 40 41NCURSES_MAJOR = @NCURSES_MAJOR@ 42NCURSES_MINOR = @NCURSES_MINOR@ 43NCURSES_PATCH = @NCURSES_PATCH@ 44 45prefix = @prefix@ 46exec_prefix = @exec_prefix@ 47 48bindir = @bindir@ 49ticdir = @TERMINFO@ 50includedir = @includedir@ 51libdir = @libdir@ 52mandir = @mandir@ 53 54INSTALL = @INSTALL@ 55INSTALL_DATA = @INSTALL_DATA@ 56 57DIRS_TO_MAKE = @DIRS_TO_MAKE@ 58 59all :: $(DIRS_TO_MAKE) 60 61$(DIRS_TO_MAKE) : 62 mkdir $@ 63 64preinstall : 65 @ echo '' 66 @ echo '** Configuration summary for NCURSES $(NCURSES_MAJOR).$(NCURSES_MINOR) $(NCURSES_PATCH):' 67 @ echo '' 68 @ echo ' bin directory: '$(bindir) 69 @ echo ' lib directory: '$(libdir) 70 @ echo ' include directory: '$(includedir) 71 @ echo ' man directory: '$(mandir) 72@MAKE_TERMINFO@ @ echo ' terminfo directory: '$(ticdir) 73 @ echo '' 74 @ test "$(includedir)" = "$(prefix)/include" || \ 75 echo '** Include-directory is not in a standard location' 76 @ test ! -f $(includedir)/termcap.h || \ 77 fgrep NCURSES_VERSION $(includedir)/termcap.h >/dev/null || \ 78 echo '** Will overwrite non-ncurses termcap.h' 79 @ test ! -f $(includedir)/curses.h || \ 80 fgrep NCURSES_VERSION $(includedir)/curses.h >/dev/null || \ 81 echo '** Will overwrite non-ncurses curses.h' 82 83# Put the common rules here so that we can easily construct the list of 84# directories to visit. 85all \ 86clean \ 87distclean \ 88mostlyclean \ 89realclean \ 90depend \ 91sources \ 92uninstall \ 93install :: 94