Fix PROCDURE -> PROCEDURE.
[dragonfly.git] / contrib / ncurses-5.4 / Ada95 / samples / Makefile.in
1 ##############################################################################
2 # Copyright (c) 1998 Free Software Foundation, Inc.                          #
3 #                                                                            #
4 # Permission is hereby granted, free of charge, to any person obtaining a    #
5 # copy of this software and associated documentation files (the "Software"), #
6 # to deal in the Software without restriction, including without limitation  #
7 # the rights to use, copy, modify, merge, publish, distribute, distribute    #
8 # with modifications, sublicense, and/or sell copies of the Software, and to #
9 # permit persons to whom the Software is furnished to do so, subject to the  #
10 # following conditions:                                                      #
11 #                                                                            #
12 # The above copyright notice and this permission notice shall be included in #
13 # all copies or substantial portions of the Software.                        #
14 #                                                                            #
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR #
16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,   #
17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL    #
18 # THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      #
19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING    #
20 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER        #
21 # DEALINGS IN THE SOFTWARE.                                                  #
22 #                                                                            #
23 # Except as contained in this notice, the name(s) of the above copyright     #
24 # holders shall not be used in advertising or otherwise to promote the sale, #
25 # use or other dealings in this Software without prior written               #
26 # authorization.                                                             #
27 ##############################################################################
28 #
29 #  Author:  Juergen Pfeifer, 1996
30 #
31 #  Version Control
32 #  $Revision: 1.30 $
33 #
34 .SUFFIXES:
35
36 SHELL           = /bin/sh
37 THIS            = Makefile
38
39 x               = @PROG_EXT@
40
41 srcdir          = @srcdir@
42 prefix          = @prefix@
43 exec_prefix     = @exec_prefix@
44 libdir          = @libdir@
45 includedir      = @includedir@
46
47 INSTALL         = @INSTALL@
48 INSTALL_DATA    = @INSTALL_DATA@
49
50 AWK             = @AWK@
51 LN_S            = @LN_S@
52
53 CC              = @CC@
54 CFLAGS          = @CFLAGS@
55
56 CPPFLAGS        = @ACPPFLAGS@ \
57                   -DHAVE_CONFIG_H -I$(srcdir)
58
59 CCFLAGS         = $(CPPFLAGS) $(CFLAGS)
60
61 CFLAGS_NORMAL   = $(CCFLAGS)
62 CFLAGS_DEBUG    = $(CCFLAGS) @CC_G_OPT@ -DTRACE
63 CFLAGS_PROFILE  = $(CCFLAGS) -pg
64 CFLAGS_SHARED   = $(CCFLAGS) @CC_SHARED_OPTS@
65
66 CFLAGS_DEFAULT  = $(CFLAGS_@DFT_UPR_MODEL@)
67
68 LINK            = $(CC)
69 LDFLAGS         = @LDFLAGS@ @LD_MODEL@ @LIBS@
70
71 RANLIB          = @RANLIB@
72 ################################################################################
73 ada_srcdir=../src
74
75 LD_FLAGS     = @LD_MODEL@ $(LOCAL_LIBS) @LDFLAGS@ @LIBS@ @LOCAL_LDFLAGS2@ $(LDFLAGS)
76
77 ADA          = @cf_ada_compiler@
78 ADAFLAGS     = @ADAFLAGS@ -I$(srcdir)
79
80 ADAMAKE      = @cf_ada_make@
81 ADAMAKEFLAGS = -a -A$(srcdir) -A$(ada_srcdir) -A$(srcdir)/$(ada_srcdir)
82
83 ALIB         = @cf_ada_package@
84 ABASE        = $(ALIB)-curses
85
86 CARGS        =-cargs $(ADAFLAGS)
87 LARGS        =-largs -L../../lib @TEST_ARGS@ $(LD_FLAGS) -lAdaCurses @EXTRA_LIBS@
88  
89 PROGS        = tour rain ncurses 
90
91 TOUR_OBJS    =  tour.o sample.o sample-curses_demo.o sample-explanation.o       \
92                 sample-form_demo.o sample-function_key_setting.o                \
93                 sample-header_handler.o sample-helpers.o                        \
94                 sample-keyboard_handler.o sample-manifest.o sample-menu_demo.o  \
95                 sample-menu_demo-aux.o sample-text_io_demo.o                    \
96                 sample-curses_demo-attributes.o sample-curses_demo-mouse.o      \
97                 sample-form_demo-aux.o sample-my_field_type.o
98
99 RAIN_OBJS    =  rain.o status.o
100
101 NCURSES_OBJS = ncurses.o                ncurses2-getch_test.o \
102         ncurses2-acs_and_scroll.o       ncurses2-m.o \
103         ncurses2-acs_display.o          ncurses2-menu_test.o \
104         ncurses2-attr_test.o            ncurses2-overlap_test.o \
105         ncurses2-color_edit.o           ncurses2-slk_test.o \
106         ncurses2-color_test.o           ncurses2-test_sgr_attributes.o \
107         ncurses2-demo_forms.o           ncurses2-trace_set.o \
108         ncurses2-demo_pad.o             ncurses2-util.o \
109         ncurses2-demo_panels.o          ncurses2.o \
110         ncurses2-flushinp_test.o
111
112
113 all ::  tour$x rain$x ncurses$x
114         @
115
116 sources :
117         @
118
119 libs \
120 install \
121 install.libs ::
122         @
123
124 uninstall \
125 uninstall.libs ::
126         @
127
128 ncurses$x :
129         $(ADAMAKE) $(ADAMAKEFLAGS) ncurses $(CARGS) $(LARGS)
130
131 tour$x :        explain.msg
132         $(ADAMAKE) $(ADAMAKEFLAGS) tour $(CARGS) $(LARGS)
133
134 explain.msg:    $(srcdir)/explain.txt
135         cp $(srcdir)/explain.txt $@
136
137 rain$x :
138         $(ADAMAKE) $(ADAMAKEFLAGS) rain $(CARGS) $(LARGS)
139
140 mostlyclean:
141         @
142
143 clean :: mostlyclean
144         rm -f *.o *.ali b_t*.* *.s $(PROGS) a.out core b_*_test.c *.xr[bs] \
145         explain.msg trace screendump 
146
147 distclean :: clean
148         rm -f Makefile
149
150 realclean :: distclean
151         @
152
153