# $Id: Makefile.in,v 1.13 1996/06/23 00:54:27 tom Exp $ ################################################################################ # Copyright 1996 by Thomas E. Dickey # # All Rights Reserved. # # # # Permission to use, copy, modify, and distribute this software and its # # documentation for any purpose and without fee is hereby granted, provided # # that the above copyright notice appear in all copies and that both that # # copyright notice and this permission notice appear in supporting # # documentation, and that the name of the above listed copyright holder(s) not # # be used in advertising or publicity pertaining to distribution of the # # software without specific, written prior permission. THE ABOVE LISTED # # COPYRIGHT HOLDER(S) DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, # # INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT # # SHALL THE ABOVE LISTED COPYRIGHT HOLDER(S) BE LIABLE FOR ANY SPECIAL, # # INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM # # LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE # # OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR # # PERFORMANCE OF THIS SOFTWARE. # ################################################################################ # Makefile for ncurses miscellany directory # # This makes/installs the terminfo database # # The variable 'srcdir' refers to the source-distribution, and can be set with # the configure script by "--srcdir=DIR". # # The rules are organized to produce the libraries for the configured models, # and the programs with the configured default model. # turn off _all_ suffix rules; we'll generate our own .SUFFIXES: SHELL = /bin/sh THIS = Makefile NC_MFLAGS = @nc_cv_makeflags@ @SET_MAKE@ INSTALL_PREFIX = @INSTALL_PREFIX@ srcdir = @srcdir@ prefix = @prefix@ exec_prefix = @exec_prefix@ bindir = @bindir@ libdir = @libdir@ datadir = @datadir@ tabsetdir = $(datadir)/tabset ticdir = $(datadir)/terminfo INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ ################################################################################ all: install: install.data install.data: $(INSTALL_PREFIX)$(libdir) \ $(INSTALL_PREFIX)$(ticdir) \ $(INSTALL_PREFIX)$(tabsetdir) sh $(srcdir)/run_tic.sh $(bindir) $(srcdir) $(ticdir) $(INSTALL_PREFIX) @cd $(srcdir)/tabset && \ sh -c 'for i in *; do \ echo installing $$i; \ $(INSTALL_DATA) $$i $(INSTALL_PREFIX)$(tabsetdir); done' $(INSTALL_PREFIX)$(libdir) \ $(INSTALL_PREFIX)$(tabsetdir) \ $(INSTALL_PREFIX)$(ticdir) : $(srcdir)/../mkinstalldirs $@ tags: TAGS: clean :: -rm -f tags TAGS *~ distclean: clean -rm -f Makefile mostlyclean: clean realclean: distclean ############################################################################### # The remainder of this file is automatically generated during configuration ###############################################################################