• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# $Id: Makefile.in,v 1.30 2022/12/17 23:33:33 tom Exp $
2##############################################################################
3# Copyright 2020-2021,2022 Thomas E. Dickey                                  #
4# Copyright 1998-2010,2015 Free Software Foundation, Inc.                    #
5#                                                                            #
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
34#  $Revision: 1.30 $
35#
36SHELL		= @SHELL@
37VPATH		= @srcdir@
38THIS		= Makefile
39
40srcdir		= @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
55SUBDIRS         = @ADA_SUBDIRS@
56
57INSTALL		= @INSTALL@ @INSTALL_OPT_O@
58INSTALL_SCRIPT	= @INSTALL@
59
60TOP_MFLAGS	= @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" RPATH_LIST="$(RPATH_LIST)"
61@SET_MAKE@
62
63################################################################################
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
78all \
79libs \
80sources \
81install \
82install.libs \
83uninstall \
84uninstall.libs ::
85	for d in $(SUBDIRS); do \
86		( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
87	done
88
89clean \
90mostlyclean ::
91	for d in $(SUBDIRS); do \
92		( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
93	done
94
95distclean \
96realclean ::
97	for d in $(SUBDIRS); do \
98		( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
99	done
100	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
108depend :
109	@
110
111check :
112	@echo "The test-programs are interactive"
113
114tags :
115	@
116
117preinstall :
118	@
119
120install.data :
121	@
122