]> ncurses.scripts.mit.edu Git - ncurses.git/blob - Ada95/Makefile.in
ncurses 4.1
[ncurses.git] / Ada95 / Makefile.in
1 #----------------------------------------------------------------------------
2 #                                                                          --
3 #                            GNAT ncurses Binding                          --
4 #                                  Makefile                                --
5 #                                                                          --
6 #  Version 00.92                                                           --
7 #                                                                          --
8 #  The ncurses Ada95 binding is copyrighted 1996 by                        --
9 #  Juergen Pfeifer, Email: Juergen.Pfeifer@T-Online.de                     --
10 #                                                                          --
11 #  Permission is hereby granted to reproduce and distribute this           --
12 #  binding by any means and for any fee, whether alone or as part          --
13 #  of a larger distribution, in source or in binary form, PROVIDED         --
14 #  this notice is included with any such distribution, and is not          --
15 #  removed from any of its header files. Mention of ncurses and the        --
16 #  author of this binding in any applications linked with it is            --
17 #  highly appreciated.                                                     --
18 #                                                                          --
19 #  This binding comes AS IS with no warranty, implied or expressed.        --
20 #----------------------------------------------------------------------------
21 #  Version Control
22 #  $Revision: 1.3 $
23 #
24 SHELL           = /bin/sh
25 THIS            = Makefile
26
27 SUBDIRS         = @ADA_SUBDIRS@
28
29 all ::
30         for d in $(SUBDIRS); do \
31                 (cd $$d ; $(MAKE) $@) ;\
32         done
33
34 clean ::
35         for d in $(SUBDIRS); do \
36                 (cd $$d ; $(MAKE) $@) ;\
37         done
38
39 distclean ::
40         for d in $(SUBDIRS); do \
41                 (cd $$d ; $(MAKE) $@) ;\
42         done
43         rm -f Makefile
44
45 realclean ::
46         for d in $(SUBDIRS); do \
47                 (cd $$d ; $(MAKE) $@) ;\
48         done
49         rm -f Makefile
50
51 mostlyclean ::
52         for d in $(SUBDIRS); do \
53                 (cd $$d ; $(MAKE) $@) ;\
54         done
55
56 install ::