OSDN Git Service

* configure.in: Update to autoconf 2.59, rename to...
[pf3gnuchains/pf3gnuchains3x.git] / utils / Makefile.in
1
2 #
3 # Makefile.tpl, Makefile.in, Makefile
4 #   Copyright 2002 Free Software Foundation
5 #
6 # This file is part of GDB.
7 #
8 # This file is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
12
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 # GNU General Public License for more details.
17
18 # You should have received a copy of the GNU General Public License
19 # along with this program; if not, write to the Free Software
20 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22 SHELL = /bin/sh
23
24 prefix = @prefix@
25 exec_prefix = @exec_prefix@
26 bindir = @bindir@
27 libdir = @libdir@
28 datadir = @datadir@
29 mandir = @mandir@
30 infodir = @infodir@
31 includedir = @includedir@
32 srcdir = @srcdir@
33 this_srcdir = @this_srcdir@
34
35 man1dir = $(mandir)/man1
36 man2dir = $(mandir)/man2
37 man3dir = $(mandir)/man3
38 man4dir = $(mandir)/man4
39 man5dir = $(mandir)/man5
40 man6dir = $(mandir)/man6
41 man7dir = $(mandir)/man7
42 man8dir = $(mandir)/man8
43 man9dir = $(mandir)/man9
44 tooldir = $(exec_prefix)
45
46 subconfigure_args = @subconfigure_args@
47
48 # Should it be INSTALL = @INSTALL@ -c ?
49 # The old makefile passed the -c argument.
50 INSTALL = @INSTALL@
51 INSTALL_PROGRAM = $(INSTALL)
52 INSTALL_DATA = $(INSTALL)
53
54 # public targets
55 all: @all_subdirs@
56 install: @install_subdirs@
57
58 mostlyclean: @mostlyclean_subdirs@
59 clean: @clean_subdirs@
60
61 # These should always clean all sudirectories...
62 distclean: distclean-spu distclean-wince 
63 maintainer-clean: maintainer-clean-spu maintainer-clean-wince 
64 clean mostlyclean:
65         -rm -f *~ core *.o a.out 
66 maintainer-clean distclean:
67         -rm -f Makefile config.status config.log config.cache *~ core *.o a.out 
68
69 info:
70 install-info:
71 clean-info:
72 dvi:
73
74 .PHONY: all install clean mostlyclean distclean maintainer-clean
75 .PHONY: info install-info clean-info dvi
76 .NOEXPORT:
77
78 # Rules for regenerating this Makefile
79 Makefile: $(srcdir)/Makefile.in config.status
80         ./config.status
81
82 $(srcdir)/Makefile.in: $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
83         cd $(srcdir) && autogen Makefile.def
84
85 config.status: $(srcdir)/configure
86         ./config.status --recheck
87
88 $(srcdir)/configure: $(srcdir)/configure.in
89         cd $(srcdir) && autoconf
90
91 # Miscellaneous variable setting
92 AR_FLAGS = qv
93 FLAGS_TO_PASS = \
94         "CC=$(CC)" \
95         "CFLAGS=$(CFLAGS)" \
96         "AR=$(AR)" \
97         "AR_FLAGS=$(AR_FLAGS)" \
98         "AS=$(AS)" \
99         "CROSS_CFLAGS=$(CROSS_CFLAGS)" \
100         "TARGET_CFLAGS=$(TARGET_CFLAGS)" \
101         "INCLUDES=$(INCLUDES)"
102
103 # Everything from here on down is generated by FOR loops in autogen.
104
105 # Glue for all.
106
107 all-spu: configure-spu
108         cd spu && $(MAKE) $(FLAGS_TO_PASS) all
109 .PHONY: all-spu
110
111 all-wince: configure-wince
112         cd wince && $(MAKE) $(FLAGS_TO_PASS) all
113 .PHONY: all-wince
114
115 # Glue for install.
116
117 install-spu: configure-spu
118         cd spu && $(MAKE)  install
119 .PHONY: install-spu
120
121 install-wince: configure-wince
122         cd wince && $(MAKE)  install
123 .PHONY: install-wince
124
125 # Glue for mostlyclean.
126
127 mostlyclean-spu: configure-spu
128         cd spu && $(MAKE)  mostlyclean
129 .PHONY: mostlyclean-spu
130
131 mostlyclean-wince: configure-wince
132         cd wince && $(MAKE)  mostlyclean
133 .PHONY: mostlyclean-wince
134
135 # Glue for clean.
136
137 clean-spu: configure-spu
138         cd spu && $(MAKE)  clean
139 .PHONY: clean-spu
140
141 clean-wince: configure-wince
142         cd wince && $(MAKE)  clean
143 .PHONY: clean-wince
144
145 # Glue for distclean.
146
147 distclean-spu: configure-spu
148         -cd spu && $(MAKE)  distclean
149 .PHONY: distclean-spu
150
151 distclean-wince: configure-wince
152         -cd wince && $(MAKE)  distclean
153 .PHONY: distclean-wince
154
155 # Glue for maintainer-clean.
156
157 maintainer-clean-spu: configure-spu
158         -cd spu && $(MAKE)  maintainer-clean
159 .PHONY: maintainer-clean-spu
160
161 maintainer-clean-wince: configure-wince
162         -cd wince && $(MAKE)  maintainer-clean
163 .PHONY: maintainer-clean-wince
164
165 # Glue for configure.
166
167 configure-spu: spu/Makefile
168 spu/Makefile: config.status
169         test -d spu || mkdir spu ; \
170         cd spu && $(this_srcdir)/spu/configure $(subconfigure_args)/spu
171 .PHONY: configure-spu
172
173 configure-wince: wince/Makefile
174 wince/Makefile: config.status
175         test -d wince || mkdir wince ; \
176         cd wince && $(this_srcdir)/wince/configure $(subconfigure_args)/wince
177 .PHONY: configure-wince
178