]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/Makefile.in
ncurses 6.4 - patch 20240414
[ncurses.git] / Ada95 / Makefile.in
1 # $Id: Makefile.in,v 1.29 2021/10/23 16:00:22 tom Exp $
2 ##############################################################################
3 # Copyright 2020,2021 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.29 $
35 #
36 SHELL           = @SHELL@
37 VPATH           = @srcdir@
38 THIS            = Makefile
39
40 SUBDIRS         = @ADA_SUBDIRS@
41
42 TOP_MFLAGS      = @cf_cv_makeflags@ DESTDIR="$(DESTDIR)" RPATH_LIST="$(RPATH_LIST)"
43 @SET_MAKE@
44
45 ################################################################################
46
47 @MAKE_PHONY@.PHONY :    all
48 @MAKE_PHONY@.PHONY :    clean
49 @MAKE_PHONY@.PHONY :    depend
50 @MAKE_PHONY@.PHONY :    distclean
51 @MAKE_PHONY@.PHONY :    install
52 @MAKE_PHONY@.PHONY :    install.libs
53 @MAKE_PHONY@.PHONY :    libs
54 @MAKE_PHONY@.PHONY :    mostlyclean
55 @MAKE_PHONY@.PHONY :    realclean
56 @MAKE_PHONY@.PHONY :    sources
57 @MAKE_PHONY@.PHONY :    uninstall
58 @MAKE_PHONY@.PHONY :    uninstall.libs
59
60 all \
61 libs \
62 sources \
63 install \
64 install.libs \
65 uninstall \
66 uninstall.libs ::
67         for d in $(SUBDIRS); do \
68                 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
69         done
70
71 clean \
72 mostlyclean ::
73         for d in $(SUBDIRS); do \
74                 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
75         done
76
77 distclean \
78 realclean ::
79         for d in $(SUBDIRS); do \
80                 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
81         done
82         rm -rf lib
83         for lib_kind in static dynamic; do \
84                 rm -rf $${lib_kind}-ali; \
85                 rm -rf $${lib_kind}-obj; \
86         done
87         -rm -f config.cache config.log config.status include/ncurses_cfg.h
88         -rm -f Makefile
89
90 depend :
91         @
92
93 check :
94         @
95
96 tags :
97         @
98
99 preinstall :
100         @
101
102 install.data :
103         @