]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/Makefile.in
ncurses 6.2 - patch 20210320
[ncurses.git] / Ada95 / Makefile.in
1 # $Id: Makefile.in,v 1.26 2021/01/23 20:34:50 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.26 $
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 all \
46 libs \
47 sources \
48 install \
49 install.libs \
50 uninstall \
51 uninstall.libs ::
52         for d in $(SUBDIRS); do \
53                 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
54         done
55
56 clean \
57 mostlyclean ::
58         for d in $(SUBDIRS); do \
59                 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
60         done
61
62 distclean \
63 realclean ::
64         for d in $(SUBDIRS); do \
65                 ( cd $$d && $(MAKE) $(TOP_MFLAGS) $@ ) ;\
66         done
67         rm -rf lib
68         for lib_kind in static dynamic; do \
69                 rm -rf $${lib_kind}-ali; \
70                 rm -rf $${lib_kind}-obj; \
71         done
72         -rm -f config.cache config.log config.status include/ncurses_cfg.h
73         -rm -f Makefile
74
75 tags :
76         @
77
78 preinstall :
79         @
80
81 install.data :
82         @