blob: 22b922e96ff1949052cca89ae0db513adb1d629c [file] [log] [blame]
micky3879b9f5e72025-07-08 18:04:53 -04001# $Id: Makefile.in,v 1.30 2022/12/17 23:33:33 tom Exp $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05302##############################################################################
micky3879b9f5e72025-07-08 18:04:53 -04003# Copyright 2020-2021,2022 Thomas E. Dickey #
4# Copyright 1998-2010,2015 Free Software Foundation, Inc. #
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +05305# #
6# Permission is hereby granted, free of charge, to any person obtaining a #
7# copy of this software and associated documentation files (the "Software"), #
8# to deal in the Software without restriction, including without limitation #
9# the rights to use, copy, modify, merge, publish, distribute, distribute #
10# with modifications, sublicense, and/or sell copies of the Software, and to #
11# permit persons to whom the Software is furnished to do so, subject to the #
12# following conditions: #
13# #
14# The above copyright notice and this permission notice shall be included in #
15# all copies or substantial portions of the Software. #
16# #
17# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
18# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, #
19# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL #
20# THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER #
21# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING #
22# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER #
23# DEALINGS IN THE SOFTWARE. #
24# #
25# Except as contained in this notice, the name(s) of the above copyright #
26# holders shall not be used in advertising or otherwise to promote the sale, #
27# use or other dealings in this Software without prior written #
28# authorization. #
29##############################################################################
30#
31# Author: Juergen Pfeifer, 1996
32#
33# Version Control
micky3879b9f5e72025-07-08 18:04:53 -040034# $Revision: 1.30 $
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053035#
Steve Kondikae271bc2015-11-15 02:50:53 +010036SHELL = @SHELL@
37VPATH = @srcdir@
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053038THIS = Makefile
39
micky3879b9f5e72025-07-08 18:04:53 -040040srcdir = @srcdir@
41prefix = @prefix@
42exec_prefix = @exec_prefix@
43bindir = @bindir@
44datarootdir = @datarootdir@
45datadir = @datadir@
46libdir = @libdir@
47libexecdir = @libexecdir@
48includedir = @includedir@
49
50BINDIR = $(DESTDIR)$(bindir)
51DATADIR = $(DESTDIR)$(datadir)
52LIBDIR = $(DESTDIR)$(libdir)
53LIBEXECDIR = $(DESTDIR)$(libexecdir)
54
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053055SUBDIRS = @ADA_SUBDIRS@
56
micky3879b9f5e72025-07-08 18:04:53 -040057INSTALL = @INSTALL@ @INSTALL_OPT_O@
58INSTALL_SCRIPT = @INSTALL@
59
60TOP_MFLAGS = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" RPATH_LIST="$(RPATH_LIST)"
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053061@SET_MAKE@
62
micky3879b9f5e72025-07-08 18:04:53 -040063################################################################################
64
65@MAKE_PHONY@.PHONY : all
66@MAKE_PHONY@.PHONY : clean
67@MAKE_PHONY@.PHONY : depend
68@MAKE_PHONY@.PHONY : distclean
69@MAKE_PHONY@.PHONY : install
70@MAKE_PHONY@.PHONY : install.libs
71@MAKE_PHONY@.PHONY : libs
72@MAKE_PHONY@.PHONY : mostlyclean
73@MAKE_PHONY@.PHONY : realclean
74@MAKE_PHONY@.PHONY : sources
75@MAKE_PHONY@.PHONY : uninstall
76@MAKE_PHONY@.PHONY : uninstall.libs
77
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053078all \
79libs \
80sources \
81install \
82install.libs \
83uninstall \
84uninstall.libs ::
85 for d in $(SUBDIRS); do \
micky3879b9f5e72025-07-08 18:04:53 -040086 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053087 done
88
89clean \
90mostlyclean ::
91 for d in $(SUBDIRS); do \
micky3879b9f5e72025-07-08 18:04:53 -040092 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053093 done
94
95distclean \
96realclean ::
97 for d in $(SUBDIRS); do \
micky3879b9f5e72025-07-08 18:04:53 -040098 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +053099 done
Steve Kondikae271bc2015-11-15 02:50:53 +0100100 rm -rf lib
101 for lib_kind in static dynamic; do \
102 rm -rf $${lib_kind}-ali; \
103 rm -rf $${lib_kind}-obj; \
104 done
105 -rm -f config.cache config.log config.status include/ncurses_cfg.h
106 -rm -f Makefile
107
micky3879b9f5e72025-07-08 18:04:53 -0400108depend :
109 @
110
111check :
112 @echo "The test-programs are interactive"
113
Steve Kondikae271bc2015-11-15 02:50:53 +0100114tags :
115 @
116
117preinstall :
118 @
Amit Daniel Kachhape6a01f52011-07-20 11:45:59 +0530119
120install.data :
121 @