re PR ada/6852 (gnatlib fails to build with newlib because it doesn't set up the...
[platform/upstream/gcc.git] / gcc / ada / Makefile.in
1 # Makefile for GNU Ada Compiler (GNAT).
2 #   Copyright (C) 1994-2005 Free Software Foundation, Inc.
3
4 #This file is part of GCC.
5
6 #GCC is free software; you can redistribute it and/or modify
7 #it under the terms of the GNU General Public License as published by
8 #the Free Software Foundation; either version 2, or (at your option)
9 #any later version.
10
11 #GCC is distributed in the hope that it will be useful,
12 #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #GNU General Public License for more details.
15
16 #You should have received a copy of the GNU General Public License
17 #along with GCC; see the file COPYING.  If not, write to
18 #the Free Software Foundation, 59 Temple Place - Suite 330,
19 #Boston, MA 02111-1307, USA.
20
21 # The makefile built from this file lives in the language subdirectory.
22 # Its purpose is to provide support for:
23 #
24 # 1) recursion where necessary, and only then (building .o's), and
25 # 2) building and debugging cc1 from the language subdirectory, and
26 # 3) nothing else.
27 #
28 # The parent makefile handles all other chores, with help from the
29 # language makefile fragment, of course.
30 #
31 # The targets for external use are:
32 # all, TAGS, ???mostlyclean, ???clean.
33
34 # This makefile will only work with Gnu make.
35 # The rules are written assuming a minimum subset of tools are available:
36 #
37 # Required:
38 #      MAKE:    Only Gnu make will work.
39 #      MV:      Must accept (at least) one, maybe wildcard, source argument,
40 #               a file or directory destination, and support creation/
41 #               modification date preservation.  Gnu mv -f works.
42 #      RM:      Must accept an arbitrary number of space separated file
43 #               arguments, or one wildcard argument. Gnu rm works.
44 #      RMDIR:   Must delete a directory and all its contents. Gnu rm -rf works.
45 #      ECHO:    Must support command line redirection. Any Unix-like
46 #               shell will typically provide this, otherwise a custom version
47 #               is trivial to write.
48 #      AR:      Gnu ar works.
49 #      MKDIR:   Gnu mkdir works.
50 #      CHMOD:   Gnu chmod works.
51 #      true:    Does nothing and returns a normal successful return code.
52 #      pwd:     Prints the current directory on stdout.
53 #      cd:      Change directory.
54 #
55 # Optional:
56 #      BISON:   Gnu bison works.
57 #      FLEX:    Gnu flex works.
58 #      Other miscellaneous tools for obscure targets.
59
60 # Tell GNU make 3.79 not to run this directory in parallel.
61 # Not all of the required dependencies are present.
62 .NOTPARALLEL:
63
64 # Suppress smart makes who think they know how to automake Yacc files
65 .y.c:
66
67 # Variables that exist for you to override.
68 # See below for how to change them for certain systems.
69
70 # Various ways of specifying flags for compilations:  
71 # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
72 # BOOT_CFLAGS is the value of CFLAGS to pass
73 # to the stage2 and stage3 compilations
74 # XCFLAGS is used for most compilations but not when using the GCC just built.
75 XCFLAGS =
76 CFLAGS = -g
77 BOOT_CFLAGS = -O $(CFLAGS)
78 # These exists to be overridden by the x-* and t-* files, respectively.
79 X_CFLAGS =
80 T_CFLAGS =
81
82 X_CPPFLAGS =
83 T_CPPFLAGS =
84
85 X_ADA_CFLAGS =
86 T_ADA_CFLAGS =
87
88 X_ADAFLAGS =
89 T_ADAFLAGS =
90
91 CC = cc
92 BISON = bison
93 BISONFLAGS =
94 ECHO = echo
95 LEX = flex
96 LEXFLAGS =
97 CHMOD = chmod
98 LN = ln
99 LN_S = ln -s
100 CP = cp -p
101 MV = mv -f
102 RM = rm -f
103 RMDIR = rm -rf
104 MKDIR = mkdir -p
105 AR = ar
106 AR_FLAGS = rc
107 LS = ls
108 RANLIB = @RANLIB@
109 RANLIB_FLAGS = @ranlib_flags@
110
111 SHELL = @SHELL@
112 PWD_COMMAND = $${PWDCMD-pwd}
113 # How to copy preserving the date
114 INSTALL_DATA_DATE = cp -p
115 MAKEINFO = makeinfo
116 TEXI2DVI = texi2dvi
117 GNATBIND = $(STAGE_PREFIX)gnatbind
118 GNATBIND_FLAGS = -static -x
119 ADA_CFLAGS =
120 ADAFLAGS = -W -Wall -gnatpg -gnata
121 SOME_ADAFLAGS =-gnata
122 FORCE_DEBUG_ADAFLAGS = -g
123 GNATLIBFLAGS = -gnatpg -nostdinc
124 GNATLIBCFLAGS = -g -O2
125 GNATLIBCFLAGS_FOR_C = $(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS) -fexceptions \
126         -DIN_RTS
127 ALL_ADA_CFLAGS = $(X_ADA_CFLAGS) $(T_ADA_CFLAGS) $(ADA_CFLAGS)
128 ALL_ADAFLAGS = $(CFLAGS) $(ALL_ADA_CFLAGS) $(X_ADAFLAGS) $(T_ADAFLAGS) \
129         $(ADAFLAGS)
130 MOST_ADAFLAGS = $(CFLAGS) $(ALL_ADA_CFLAGS) $(X_ADAFLAGS) $(T_ADAFLAGS) \
131         $(SOME_ADAFLAGS)
132 THREAD_KIND = native
133 THREADSLIB =
134 GMEM_LIB =
135 MISCLIB =
136 SYMDEPS = $(LIBINTL_DEP)
137 OUTPUT_OPTION = @OUTPUT_OPTION@
138
139 objext = .o
140 exeext =
141 arext  = .a
142 soext  = .so
143 shext  =
144 hyphen = -
145
146 # Define this as & to perform parallel make on a Sequent.
147 # Note that this has some bugs, and it seems currently necessary 
148 # to compile all the gen* files first by hand to avoid erroneous results.
149 P =
150
151 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
152 # It omits XCFLAGS, and specifies -B./.
153 # It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
154 GCC_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)
155
156 # Tools to use when building a cross-compiler.
157 # These are used because `configure' appends `cross-make'
158 # to the makefile when making a cross-compiler.
159
160 # We don't use cross-make.  Instead we use the tools from the build tree,
161 # if they are available.
162 # program_transform_name and objdir are set by configure.in.
163 program_transform_name =
164 objdir = .
165
166 target_alias=@target_alias@
167 target=@target@
168 xmake_file = @xmake_file@
169 tmake_file = @tmake_file@
170 host_canonical=@host@
171 #version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
172 #mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c`
173
174 # Directory where sources are, from where we are.
175 srcdir = @srcdir@
176 VPATH = $(srcdir)
177
178 fsrcdir := $(shell cd $(srcdir);${PWD_COMMAND})
179 fsrcpfx := $(shell cd $(srcdir);${PWD_COMMAND})/
180 fcurdir := $(shell ${PWD_COMMAND})
181 fcurpfx := $(shell ${PWD_COMMAND})/
182
183 # Top build directory, relative to here.
184 top_builddir = ../..
185
186 # Internationalization library.
187 LIBINTL = @LIBINTL@
188 LIBINTL_DEP = @LIBINTL_DEP@
189
190 # Any system libraries needed just for GNAT.
191 SYSLIBS = @GNAT_LIBEXC@
192
193 # List of extra object files linked in with various programs.
194 EXTRA_GNATTOOLS_OBJS = ../../prefix.o ../../version.o
195
196 # List of target dependent sources, overridden below as necessary
197 TARGET_ADA_SRCS =
198
199 # Type of tools build we are doing; default is not compiling tools.
200 TOOLSCASE =
201
202 # End of variables for you to override.
203
204 all: all.indirect
205
206 # This tells GNU Make version 3 not to put all variables in the environment.
207 .NOEXPORT:
208
209 # tmake_file and xmake_file expand to lists with entries of the form
210 # $(srcdir)/config/...  but here $(srcdir) is the ada subdirectory so we
211 # need to adjust the paths.  There can't be spaces in the subst arguments
212 # or we get spurious spaces in the actual list of files to include.
213
214 # target overrides
215 ifneq ($(tmake_file),)
216 include $(subst /config,/../config,$(tmake_file))
217 endif
218
219 # host overrides
220 ifneq ($(xmake_file),)
221 include $(subst /config,/../config,$(xmake_file))
222 endif
223 \f
224 # Now figure out from those variables how to compile and link.
225
226 all.indirect: Makefile ../gnat1$(exeext)
227
228 # IN_GCC distinguishes between code compiled into GCC itself and other
229 # programs built during a bootstrap.
230 # autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
231 INTERNAL_CFLAGS = @CROSS@ -DIN_GCC
232
233 # This is the variable actually used when we compile.
234 LOOSE_CFLAGS = `echo $(CFLAGS) $(WARN2_CFLAGS)|sed -e 's/-pedantic//g' -e 's/-Wtraditional//g'`
235 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_CFLAGS) \
236         $(XCFLAGS)
237
238 # Likewise.
239 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
240
241 # This is where we get libiberty.a from.
242 LIBIBERTY = ../../libiberty/libiberty.a
243
244 # How to link with both our special library facilities
245 # and the system's installed libraries.
246 LIBS = $(LIBINTL) $(LIBIBERTY) $(SYSLIBS)
247 LIBDEPS = $(LIBINTL_DEP) $(LIBIBERTY)
248 TOOLS_LIBS = $(LIBGNAT) $(EXTRA_GNATTOOLS_OBJS) link.o ../../../libiberty/libiberty.a $(SYSLIBS)
249
250 # Specify the directories to be searched for header files.
251 # Both . and srcdir are used, in that order,
252 # so that tm.h and config.h will be found in the compilation
253 # subdirectory rather than in the source directory.
254 INCLUDES = -I- -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config \
255         -I$(srcdir)/../../include
256
257 ADA_INCLUDES = -I- -I. -I$(srcdir)
258
259 INCLUDES_FOR_SUBDIR = -I. -I.. -I../.. -I$(fsrcdir) -I$(fsrcdir)/../config \
260         -I$(fsrcdir)/../../include -I$(fsrcdir)/..
261 ADA_INCLUDES_FOR_SUBDIR = -I. -I$(fsrcdir)
262
263 # Avoid a lot of time thinking about remaking Makefile.in and *.def.
264 .SUFFIXES: .in .def
265
266 # Say how to compile Ada programs.
267 .SUFFIXES: .ada .adb .ads .asm
268
269 # Always use -I$(srcdir)/config when compiling.
270 .asm.o:
271         $(CC) -c -x assembler $< $(OUTPUT_OPTION)
272
273 .c.o:
274         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
275           $(OUTPUT_OPTION)
276
277 .adb.o:
278         $(CC) -c $(ALL_ADAFLAGS) $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
279
280 .ads.o:
281         $(CC) -c $(ALL_ADAFLAGS) $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
282
283 # how to regenerate this file
284 Makefile: ../config.status $(srcdir)/Makefile.in $(srcdir)/../version.c
285         cd ..; \
286         LANGUAGES="$(CONFIG_LANGUAGES)" \
287         CONFIG_HEADERS= \
288         CONFIG_FILES=ada/Makefile $(SHELL) config.status
289
290 # This tells GNU make version 3 not to export all the variables
291 # defined in this file into the environment.
292 .NOEXPORT:
293 \f
294 # Lists of files for various purposes.
295
296 GNATLINK_OBJS = gnatlink.o \
297  a-except.o ali.o alloc.o butil.o casing.o csets.o debug.o fmap.o fname.o gnatvsn.o \
298  hostparm.o indepsw.o interfac.o i-c.o i-cstrin.o namet.o opt.o osint.o output.o rident.o \
299  s-exctab.o s-secsta.o s-stalib.o s-stoele.o sdefault.o stylesw.o switch.o system.o \
300  table.o tree_io.o types.o validsw.o widechar.o
301
302 GNATMAKE_OBJS = a-except.o ctrl_c.o ali.o ali-util.o s-casuti.o \
303  alloc.o atree.o binderr.o butil.o casing.o csets.o debug.o elists.o einfo.o\
304  erroutc.o errutil.o err_vars.o fmap.o fname.o fname-uf.o fname-sf.o \
305  gnatmake.o gnatvsn.o hostparm.o interfac.o i-c.o i-cstrin.o krunch.o lib.o \
306  make.o makeusg.o makeutl.o mlib.o mlib-fil.o mlib-prj.o mlib-tgt.o mlib-utl.o \
307  namet.o nlists.o opt.o osint.o osint-m.o output.o \
308  prj.o prj-attr.o prj-attr-pm.o prj-com.o prj-dect.o prj-env.o prj-err.o prj-ext.o prj-nmsc.o \
309  prj-pars.o prj-part.o prj-proc.o prj-strt.o prj-tree.o prj-util.o \
310  rident.o s-exctab.o s-secsta.o s-stalib.o s-stoele.o \
311  scans.o scng.o sdefault.o sfn_scan.o s-purexc.o s-htable.o \
312  sinfo.o sinput.o sinput-c.o sinput-p.o \
313  snames.o stand.o stringt.o styleg.o stylesw.o system.o validsw.o switch.o switch-m.o \
314  table.o targparm.o tempdir.o tree_io.o types.o \
315  uintp.o  uname.o urealp.o usage.o widechar.o \
316  $(EXTRA_GNATMAKE_OBJS)
317
318 # Convert the target variable into a space separated list of architecture,
319 # manufacturer, and operating system and assign each of those to its own
320 # variable.
321
322 host:=$(subst -, ,$(host_canonical))
323 targ:=$(subst -, ,$(target))
324 arch:=$(word 1,$(targ))
325 ifeq ($(words $(targ)),2)
326   manu:=
327   osys:=$(word 2,$(targ))
328 else
329   manu:=$(word 2,$(targ))
330   osys:=$(word 3,$(targ))
331 endif
332
333 # LIBGNAT_TARGET_PAIRS is a list of pairs of filenames.
334 # The members of each pair must be separated by a '<' and no whitespace.
335 # Each pair must be separated by some amount of whitespace from the following
336 # pair.
337
338 # Non-tasking case:
339
340 LIBGNAT_TARGET_PAIRS = \
341 a-intnam.ads<a-intnam-dummy.ads \
342 s-inmaop.adb<s-inmaop-dummy.adb \
343 s-intman.adb<s-intman-dummy.adb \
344 s-osinte.ads<s-osinte-dummy.ads \
345 s-osprim.adb<s-osprim-posix.adb \
346 s-taprop.adb<s-taprop-dummy.adb \
347 s-taspri.ads<s-taspri-dummy.ads
348
349 # Default shared object option. Note that we rely on the fact that the "soname"
350 # option will always be present and last in this flag, so that we can have
351 # $(SO_OPTS)libgnat-x.xx
352
353 SO_OPTS = -Wl,-soname,
354
355 # Default gnatlib-shared target.
356 # By default, equivalent to gnatlib.
357 # Set to gnatlib-shared-default, gnatlib-shared-dual, or a platform specific
358 # target when supported.
359 GNATLIB_SHARED = gnatlib
360
361 # default value for gnatmake's target dependent file
362 MLIB_TGT = mlib-tgt
363
364 # By default, do not distribute prefix.o (in libgccprefix), since it is only
365 # needed by external GNAT tools such as gnatdist and Glide.
366 # Override this variable on native platforms when needed.
367 PREFIX_OBJS =
368
369 # To avoid duplicate code, use this variable to set PREFIX_OBJS when needed:
370 PREFIX_REAL_OBJS = ../prefix.o \
371   ../../libiberty/concat.o     \
372   ../../libiberty/xmalloc.o    \
373   ../../libiberty/xstrdup.o    \
374   ../../libiberty/xexit.o
375
376 LIB_VERSION = $(strip $(shell grep ' Library_Version :' $(fsrcpfx)gnatvsn.ads | sed -e 's/.*"\(.*\)".*/\1/'))
377
378 # $(filter-out PATTERN...,TEXT) removes all PATTERN words from TEXT.
379 # $(strip STRING) removes leading and trailing spaces from STRING.
380 # If what's left is null then it's a match.
381
382 ifeq ($(strip $(filter-out %86 os2 OS2 os2_emx,$(arch) $(osys))),)
383   LIBGNAT_TARGET_PAIRS = \
384   a-excpol.adb<a-excpol-abort.adb \
385   a-intnam.ads<a-intnam-dummy.ads \
386   a-numaux.adb<a-numaux-x86.adb \
387   a-numaux.ads<a-numaux-x86.ads \
388   s-inmaop.adb<s-inmaop-dummy.adb \
389   s-interr.adb<s-interr-dummy.adb \
390   s-intman.adb<s-intman-dummy.adb \
391   s-mastop.adb<s-mastop-x86.adb \
392   s-osinte.adb<s-osinte-os2.adb \
393   s-osinte.ads<s-osinte-os2.ads \
394   s-osprim.adb<s-osprim-os2.adb \
395   s-parame.adb<s-parame-os2.adb \
396   system.ads<system-os2.ads \
397   s-taprop.adb<s-taprop-os2.adb \
398   s-taspri.ads<s-taspri-os2.ads
399
400   EXTRA_GNATRTL_NONTASKING_OBJS = \
401   i-os2err.o \
402   i-os2lib.o \
403   i-os2syn.o \
404   i-os2thr.o
405 endif
406
407 ifeq ($(strip $(filter-out %86 interix%,$(arch) $(osys))),)
408   LIBGNAT_TARGET_PAIRS = \
409   a-excpol.adb<a-excpol-interix.adb \
410   a-intnam.ads<a-intnam-interix.ads \
411   a-numaux.adb<a-numaux-x86.adb \
412   a-numaux.ads<a-numaux-x86.ads \
413   g-soccon.ads<g-soccon-interix.ads \
414   s-inmaop.adb<s-inmaop-posix.adb \
415   s-intman.adb<s-intman-posix.adb \
416   s-mastop.adb<s-mastop-x86.adb \
417   s-osinte.adb<s-osinte-fsu.adb \
418   s-osinte.ads<s-osinte-interix.ads \
419   s-osprim.adb<s-osprim-unix.adb \
420   s-taprop.adb<s-taprop-posix.adb \
421   system.ads<system-interix.ads \
422   s-taspri.ads<s-taspri-posix.ads \
423   s-tpopsp.adb<s-tpopsp-posix.adb
424
425   THREADSLIB = -lgthreads -lmalloc
426   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
427 endif
428
429 # sysv5uw is SCO UnixWare 7
430 ifeq ($(strip $(filter-out %86 sysv5uw%,$(arch) $(osys))),)
431   LIBGNAT_TARGET_PAIRS = \
432   a-excpol.adb<a-excpol-abort.adb \
433   a-intnam.ads<a-intnam-unixware.ads \
434   a-numaux.adb<a-numaux-x86.adb \
435   a-numaux.ads<a-numaux-x86.ads \
436   s-inmaop.adb<s-inmaop-posix.adb \
437   s-intman.adb<s-intman-posix.adb \
438   s-mastop.adb<s-mastop-x86.adb \
439   s-osinte.ads<s-osinte-unixware.ads \
440   s-osinte.adb<s-osinte-unixware.adb \
441   s-osprim.adb<s-osprim-unix.adb \
442   s-taprop.adb<s-taprop-posix.adb \
443   s-taspri.ads<s-taspri-posix.ads \
444   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
445   system.ads<system-unixware.ads \
446   g-soccon.ads<g-soccon-unixware.ads \
447   g-soliop.ads<g-soliop-unixware.ads
448
449   THREADSLIB = -lthread
450   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
451   SO_OPTS = -Wl,-h,
452   GNATLIB_SHARED = gnatlib-shared-dual
453   LIBRARY_VERSION := $(LIB_VERSION)
454 endif
455
456 ifeq ($(strip $(filter-out alpha% dec vx%,$(targ))),)
457   LIBGNAT_TARGET_PAIRS = \
458   a-sytaco.ads<a-sytaco-vxworks.ads \
459   a-sytaco.adb<a-sytaco-vxworks.adb \
460   a-intnam.ads<a-intnam-vxworks.ads \
461   a-numaux.ads<a-numaux-vxworks.ads \
462   s-inmaop.adb<s-inmaop-posix.adb \
463   s-interr.adb<s-interr-vxworks.adb \
464   s-intman.ads<s-intman-vxworks.ads \
465   s-intman.adb<s-intman-vxworks.adb \
466   s-osinte.adb<s-osinte-vxworks.adb \
467   s-osinte.ads<s-osinte-vxworks.ads \
468   s-osprim.adb<s-osprim-vxworks.adb \
469   s-parame.ads<s-parame-vxworks.ads \
470   s-stchop.adb<s-stchop-vxworks.adb \
471   s-taprop.adb<s-taprop-vxworks.adb \
472   s-tpopsp.adb<s-tpopsp-vxworks.adb \
473   s-taspri.ads<s-taspri-vxworks.ads \
474   s-vxwork.ads<s-vxwork-alpha.ads \
475   g-soccon.ads<g-soccon-vxworks.ads \
476   g-socthi.ads<g-socthi-vxworks.ads \
477   g-socthi.adb<g-socthi-vxworks.adb \
478   system.ads<system-vxworks-alpha.ads
479
480   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
481   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
482 endif
483
484 ifeq ($(strip $(filter-out m68k% wrs vx%,$(targ))),)
485   LIBGNAT_TARGET_PAIRS = \
486   a-sytaco.ads<a-sytaco-vxworks.ads \
487   a-sytaco.adb<a-sytaco-vxworks.adb \
488   a-intnam.ads<a-intnam-vxworks.ads \
489   a-numaux.ads<a-numaux-vxworks.ads \
490   s-inmaop.adb<s-inmaop-posix.adb \
491   s-interr.adb<s-interr-vxworks.adb \
492   s-intman.ads<s-intman-vxworks.ads \
493   s-intman.adb<s-intman-vxworks.adb \
494   s-osinte.adb<s-osinte-vxworks.adb \
495   s-osinte.ads<s-osinte-vxworks.ads \
496   s-osprim.adb<s-osprim-vxworks.adb \
497   s-parame.ads<s-parame-vxworks.ads \
498   s-stchop.adb<s-stchop-vxworks.adb \
499   s-taprop.adb<s-taprop-vxworks.adb \
500   s-taspri.ads<s-taspri-vxworks.ads \
501   s-tpopsp.adb<s-tpopsp-vxworks.adb \
502   s-vxwork.ads<s-vxwork-m68k.ads \
503   g-soccon.ads<g-soccon-vxworks.ads \
504   g-socthi.ads<g-socthi-vxworks.ads \
505   g-socthi.adb<g-socthi-vxworks.adb \
506   system.ads<system-vxworks-m68k.ads
507
508   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
509
510   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
511   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
512
513   ifeq ($(strip $(filter-out yes,$(TRACE))),)
514     LIBGNAT_TARGET_PAIRS += \
515     s-traces.adb<s-traces-default.adb \
516     s-tratas.adb<s-tratas-default.adb \
517     s-trafor.adb<s-trafor-default.adb \
518     s-trafor.ads<s-trafor-default.ads \
519     s-tfsetr.adb<s-tfsetr-vxworks.adb 
520   endif
521 endif
522
523 ifeq ($(strip $(filter-out powerpc% wrs vxworks,$(targ))),)
524   LIBGNAT_TARGET_PAIRS = \
525   a-sytaco.ads<a-sytaco-vxworks.ads \
526   a-sytaco.adb<a-sytaco-vxworks.adb \
527   a-intnam.ads<a-intnam-vxworks.ads \
528   a-numaux.ads<a-numaux-vxworks.ads \
529   s-inmaop.adb<s-inmaop-posix.adb \
530   s-interr.adb<s-interr-vxworks.adb \
531   s-intman.ads<s-intman-vxworks.ads \
532   s-intman.adb<s-intman-vxworks.adb \
533   s-osinte.adb<s-osinte-vxworks.adb \
534   s-osinte.ads<s-osinte-vxworks.ads \
535   s-osprim.adb<s-osprim-vxworks.adb \
536   s-parame.ads<s-parame-vxworks.ads \
537   s-stchop.adb<s-stchop-vxworks.adb \
538   s-taprop.adb<s-taprop-vxworks.adb \
539   s-taspri.ads<s-taspri-vxworks.ads \
540   s-tpopsp.adb<s-tpopsp-vxworks.adb \
541   s-vxwork.ads<s-vxwork-ppc.ads \
542   g-soccon.ads<g-soccon-vxworks.ads \
543   g-socthi.ads<g-socthi-vxworks.ads \
544   g-socthi.adb<g-socthi-vxworks.adb \
545   system.ads<system-vxworks-ppc.ads
546
547   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
548
549   ifeq ($(strip $(filter-out yes,$(TRACE))),)
550     LIBGNAT_TARGET_PAIRS += \
551     s-traces.adb<s-traces-default.adb \
552     s-trafor.adb<s-trafor-default.adb \
553     s-trafor.ads<s-trafor-default.ads \
554     s-tratas.adb<s-tratas-default.adb \
555     s-tfsetr.adb<s-tfsetr-vxworks.adb 
556   endif
557
558   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o s-vxwexc.o
559   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
560 endif
561
562 ifeq ($(strip $(filter-out sparc% wrs vx%,$(targ))),)
563   LIBGNAT_TARGET_PAIRS = \
564   a-sytaco.ads<a-sytaco-vxworks.ads \
565   a-sytaco.adb<a-sytaco-vxworks.adb \
566   a-intnam.ads<a-intnam-vxworks.ads \
567   a-numaux.ads<a-numaux-vxworks.ads \
568   s-inmaop.adb<s-inmaop-posix.adb \
569   s-interr.adb<s-interr-vxworks.adb \
570   s-intman.ads<s-intman-vxworks.ads \
571   s-intman.adb<s-intman-vxworks.adb \
572   s-osinte.adb<s-osinte-vxworks.adb \
573   s-osinte.ads<s-osinte-vxworks.ads \
574   s-osprim.adb<s-osprim-vxworks.adb \
575   s-parame.ads<s-parame-vxworks.ads \
576   s-stchop.adb<s-stchop-vxworks.adb \
577   s-taprop.adb<s-taprop-vxworks.adb \
578   s-taspri.ads<s-taspri-vxworks.ads \
579   s-tpopsp.adb<s-tpopsp-vxworks.adb \
580   s-vxwork.ads<s-vxwork-sparcv9.ads \
581   g-soccon.ads<g-soccon-vxworks.ads \
582   g-socthi.ads<g-socthi-vxworks.ads \
583   g-socthi.adb<g-socthi-vxworks.adb \
584   system.ads<system-vxworks-sparcv9.ads   \
585
586   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
587
588   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
589   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
590 endif
591
592 ifeq ($(strip $(filter-out %86 wrs vxworks,$(targ))),)
593   LIBGNAT_TARGET_PAIRS = \
594   a-sytaco.ads<a-sytaco-vxworks.ads \
595   a-sytaco.adb<a-sytaco-vxworks.adb \
596   a-intnam.ads<a-intnam-vxworks.ads \
597   i-vxwork.ads<i-vxwork-x86.ads \
598   s-inmaop.adb<s-inmaop-posix.adb \
599   s-interr.adb<s-interr-vxworks.adb \
600   s-intman.ads<s-intman-vxworks.ads \
601   s-intman.adb<s-intman-vxworks.adb \
602   a-numaux.adb<a-numaux-x86.adb \
603   a-numaux.ads<a-numaux-x86.ads \
604   s-osinte.adb<s-osinte-vxworks.adb \
605   s-osinte.ads<s-osinte-vxworks.ads \
606   s-osprim.adb<s-osprim-vxworks.adb \
607   s-parame.ads<s-parame-vxworks.ads \
608   s-stchop.adb<s-stchop-vxworks.adb \
609   s-taprop.adb<s-taprop-vxworks.adb \
610   s-taspri.ads<s-taspri-vxworks.ads \
611   s-tpopsp.adb<s-tpopsp-vxworks.adb \
612   s-vxwork.ads<s-vxwork-x86.ads \
613   g-soccon.ads<g-soccon-vxworks.ads \
614   g-socthi.ads<g-socthi-vxworks.ads \
615   g-socthi.adb<g-socthi-vxworks.adb \
616   system.ads<system-vxworks-x86.ads
617
618   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
619
620   ifeq ($(strip $(filter-out yes,$(TRACE))),)
621     LIBGNAT_TARGET_PAIRS += \
622     s-traces.adb<s-traces-default.adb \
623     s-trafor.adb<s-trafor-default.adb \
624     s-trafor.ads<s-trafor-default.ads \
625     s-tratas.adb<s-tratas-default.adb \
626     s-tfsetr.adb<s-tfsetr-vxworks.adb
627   endif
628
629   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
630   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
631 endif
632
633 ifeq ($(strip $(filter-out xscale% coff wrs vx%,$(targ))),)
634   LIBGNAT_TARGET_PAIRS = \
635   a-sytaco.ads<a-sytaco-vxworks.ads \
636   a-sytaco.adb<a-sytaco-vxworks.adb \
637   a-intnam.ads<a-intnam-vxworks.ads \
638   a-numaux.ads<a-numaux-vxworks.ads \
639   s-inmaop.adb<s-inmaop-posix.adb \
640   s-interr.adb<s-interr-vxworks.adb \
641   s-intman.ads<s-intman-vxworks.ads \
642   s-intman.adb<s-intman-vxworks.adb \
643   s-osinte.adb<s-osinte-vxworks.adb \
644   s-osinte.ads<s-osinte-vxworks.ads \
645   s-osprim.adb<s-osprim-vxworks.adb \
646   s-parame.ads<s-parame-vxworks.ads \
647   s-stchop.adb<s-stchop-vxworks.adb \
648   s-taprop.adb<s-taprop-vxworks.adb \
649   s-taspri.ads<s-taspri-vxworks.ads \
650   s-tpopsp.adb<s-tpopsp-vxworks.adb \
651   s-vxwork.ads<s-vxwork-xscale.ads \
652   g-soccon.ads<g-soccon-vxworks.ads \
653   g-socthi.ads<g-socthi-vxworks.ads \
654   g-socthi.adb<g-socthi-vxworks.adb \
655   system.ads<system-elf-sparc.ads
656
657   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
658
659   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
660   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
661 endif
662
663 ifeq ($(strip $(filter-out mips% wrs vx%,$(targ))),)
664   LIBGNAT_TARGET_PAIRS = \
665   a-sytaco.ads<a-sytaco-vxworks.ads \
666   a-sytaco.adb<a-sytaco-vxworks.adb \
667   a-intnam.ads<a-intnam-vxworks.ads \
668   a-numaux.ads<a-numaux-vxworks.ads \
669   s-inmaop.adb<s-inmaop-posix.adb \
670   s-interr.adb<s-interr-vxworks.adb \
671   s-intman.ads<s-intman-vxworks.ads \
672   s-intman.adb<s-intman-vxworks.adb \
673   s-osinte.adb<s-osinte-vxworks.adb \
674   s-osinte.ads<s-osinte-vxworks.ads \
675   s-osprim.adb<s-osprim-vxworks.adb \
676   s-parame.ads<s-parame-vxworks.ads \
677   s-stchop.adb<s-stchop-vxworks.adb \
678   s-taprop.adb<s-taprop-vxworks.adb \
679   s-taspri.ads<s-taspri-vxworks.ads \
680   s-tpopsp.adb<s-tpopsp-vxworks.adb \
681   s-vxwork.ads<s-vxwork-mips.ads \
682   g-soccon.ads<g-soccon-vxworks.ads \
683   g-socthi.ads<g-socthi-vxworks.ads \
684   g-socthi.adb<g-socthi-vxworks.adb \
685   system.ads<system-vxworks-mips.ads
686
687   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
688
689   EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
690   EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
691 endif
692
693 ifeq ($(strip $(filter-out sparc sun solaris%,$(targ))),)
694   LIBGNAT_TARGET_PAIRS = \
695   a-intnam.ads<a-intnam-solaris.ads \
696   s-inmaop.adb<s-inmaop-posix.adb \
697   s-intman.adb<s-intman-solaris.adb \
698   s-osinte.adb<s-osinte-solaris.adb \
699   s-osinte.ads<s-osinte-solaris.ads \
700   s-osprim.adb<s-osprim-solaris.adb \
701   s-parame.adb<s-parame-solaris.adb \
702   s-taprop.adb<s-taprop-solaris.adb \
703   s-tasinf.adb<s-tasinf-solaris.adb \
704   s-tasinf.ads<s-tasinf-solaris.ads \
705   s-taspri.ads<s-taspri-solaris.ads \
706   s-tpopsp.adb<s-tpopsp-solaris.adb \
707   g-soccon.ads<g-soccon-solaris.ads \
708   g-soliop.ads<g-soliop-solaris.ads \
709   system.ads<system-solaris-sparc.ads
710
711   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-solaris.adb
712
713   THREADSLIB = -lposix4 -lthread
714   MISCLIB = -lposix4 -lnsl -lsocket
715   SO_OPTS = -Wl,-h,
716   GNATLIB_SHARED = gnatlib-shared-dual
717   GMEM_LIB = gmemlib
718   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
719   LIBRARY_VERSION := $(LIB_VERSION)
720
721   ifeq ($(strip $(filter-out fsu FSU,$(THREAD_KIND))),)
722     LIBGNAT_TARGET_PAIRS = \
723     a-intnam.ads<a-intnam-solaris.ads \
724     s-inmaop.adb<s-inmaop-posix.adb \
725     s-intman.adb<s-intman-solaris.adb \
726     s-osinte.adb<s-osinte-fsu.adb \
727     s-osinte.ads<s-osinte-solaris-fsu.ads \
728     s-osprim.adb<s-osprim-solaris.adb \
729     s-taprop.adb<s-taprop-posix.adb \
730     s-taspri.ads<s-taspri-posix.ads \
731     s-tpopsp.adb<s-tpopsp-posix.adb \
732     g-soccon.ads<g-soccon-solaris.ads \
733     g-soliop.ads<g-soliop-solaris.ads \
734     system.ads<system-solaris-sparc.ads
735
736     THREADSLIB = -lgthreads -lmalloc
737   endif
738
739   ifeq ($(strip $(filter-out pthread PTHREAD,$(THREAD_KIND))),)
740     LIBGNAT_TARGET_PAIRS = \
741     a-intnam.ads<a-intnam-solaris.ads \
742     s-inmaop.adb<s-inmaop-posix.adb \
743     s-intman.adb<s-intman-posix.adb \
744     s-osinte.adb<s-osinte-posix.adb \
745     s-osinte.ads<s-osinte-solaris-posix.ads \
746     s-osprim.adb<s-osprim-solaris.adb \
747     s-taprop.adb<s-taprop-posix.adb \
748     s-taspri.ads<s-taspri-posix.ads \
749     s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
750     g-soccon.ads<g-soccon-solaris.ads \
751     g-soliop.ads<g-soliop-solaris.ads \
752     system.ads<system-solaris-sparc.ads
753
754     THREADSLIB = -lposix4 -lpthread
755   endif
756
757   ifeq ($(strip $(filter-out m64,$(THREAD_KIND))),)
758     LIBGNAT_TARGET_PAIRS = \
759     a-intnam.ads<a-intnam-solaris.ads \
760     s-inmaop.adb<s-inmaop-posix.adb \
761     s-intman.adb<s-intman-solaris.adb \
762     s-osinte.adb<s-osinte-solaris.adb \
763     s-osinte.ads<s-osinte-solaris.ads \
764     s-osprim.adb<s-osprim-solaris.adb \
765     s-parame.adb<s-parame-solaris.adb \
766     s-taprop.adb<s-taprop-solaris.adb \
767     s-tasinf.adb<s-tasinf-solaris.adb \
768     s-tasinf.ads<s-tasinf-solaris.ads \
769     s-taspri.ads<s-taspri-solaris.ads \
770     s-tpopsp.adb<s-tpopsp-solaris.adb \
771     g-soccon.ads<g-soccon-solaris.ads \
772     g-soliop.ads<g-soliop-solaris.ads \
773     system.ads<system-solaris-sparcv9.ads
774   endif
775 endif
776
777 ifeq ($(strip $(filter-out %86 solaris2%,$(arch) $(osys))),)
778   LIBGNAT_TARGET_PAIRS = \
779   a-numaux.adb<a-numaux-x86.adb \
780   a-numaux.ads<a-numaux-x86.ads \
781   a-intnam.ads<a-intnam-solaris.ads \
782   s-inmaop.adb<s-inmaop-posix.adb \
783   s-intman.adb<s-intman-solaris.adb \
784   s-mastop.adb<s-mastop-x86.adb \
785   s-osinte.adb<s-osinte-solaris.adb \
786   s-osinte.ads<s-osinte-solaris.ads \
787   s-osprim.adb<s-osprim-solaris.adb \
788   s-parame.adb<s-parame-solaris.adb \
789   s-taprop.adb<s-taprop-solaris.adb \
790   s-tasinf.adb<s-tasinf-solaris.adb \
791   s-tasinf.ads<s-tasinf-solaris.ads \
792   s-taspri.ads<s-taspri-solaris.ads \
793   s-tpopsp.adb<s-tpopsp-solaris.adb \
794   g-soccon.ads<g-soccon-solaris.ads \
795   g-soliop.ads<g-soliop-solaris.ads \
796   system.ads<system-solaris-x86.ads
797
798   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-solaris.adb
799
800   THREADSLIB = -lposix4 -lthread
801   MISCLIB = -lposix4 -lnsl -lsocket
802   SO_OPTS = -Wl,-h,
803   GNATLIB_SHARED = gnatlib-shared-dual
804   GMEM_LIB = gmemlib
805   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
806   LIBRARY_VERSION := $(LIB_VERSION)
807 endif
808
809 ifeq ($(strip $(filter-out %86 linux%,$(arch) $(osys))),)
810   LIBGNAT_TARGET_PAIRS = \
811   a-intnam.ads<a-intnam-linux.ads \
812   a-numaux.adb<a-numaux-x86.adb \
813   a-numaux.ads<a-numaux-x86.ads \
814   s-inmaop.adb<s-inmaop-posix.adb \
815   s-intman.adb<s-intman-posix.adb \
816   s-mastop.adb<s-mastop-x86.adb \
817   s-osinte.adb<s-osinte-posix.adb \
818   s-osinte.ads<s-osinte-linux.ads \
819   s-osprim.adb<s-osprim-posix.adb \
820   s-taprop.adb<s-taprop-linux.adb \
821   s-taspri.ads<s-taspri-linux.ads \
822   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
823   s-parame.adb<s-parame-linux.adb \
824   system.ads<system-linux-x86.ads
825
826   TOOLS_TARGET_PAIRS =  \
827     mlib-tgt.adb<mlib-tgt-linux.adb \
828     indepsw.adb<indepsw-linux.adb
829
830   THREADSLIB = -lpthread
831   GNATLIB_SHARED = gnatlib-shared-dual
832   GMEM_LIB = gmemlib
833   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
834   LIBRARY_VERSION := $(LIB_VERSION)
835
836   ifeq ($(strip $(filter-out fsu FSU,$(THREAD_KIND))),)
837     LIBGNAT_TARGET_PAIRS = \
838     a-intnam.ads<a-intnam-linux.ads \
839     a-numaux.adb<a-numaux-x86.adb \
840     a-numaux.ads<a-numaux-x86.ads \
841     s-inmaop.adb<s-inmaop-posix.adb \
842     s-intman.adb<s-intman-posix.adb \
843     s-mastop.adb<s-mastop-x86.adb \
844     s-osinte.adb<s-osinte-fsu.adb \
845     s-osinte.ads<s-osinte-linux-fsu.ads \
846     s-osprim.adb<s-osprim-posix.adb \
847     s-taprop.adb<s-taprop-posix.adb \
848     s-taspri.ads<s-taspri-posix.ads \
849     s-tpopsp.adb<s-tpopsp-posix.adb \
850     system.ads<system-linux-x86.ads
851
852     THREADSLIB = -lgthreads -lmalloc
853   endif
854 endif
855
856 ifeq ($(strip $(filter-out %86 freebsd%,$(arch) $(osys))),)
857   LIBGNAT_TARGET_PAIRS = \
858   a-intnam.ads<a-intnam-freebsd.ads \
859   a-numaux.adb<a-numaux-x86.adb \
860   a-numaux.ads<a-numaux-x86.ads \
861   g-soccon.ads<g-soccon-freebsd.ads \
862   s-inmaop.adb<s-inmaop-posix.adb \
863   s-intman.adb<s-intman-posix.adb \
864   s-mastop.adb<s-mastop-x86.adb \
865   s-osinte.adb<s-osinte-freebsd.adb \
866   s-osinte.ads<s-osinte-freebsd.ads \
867   s-osprim.adb<s-osprim-posix.adb \
868   s-taprop.adb<s-taprop-posix.adb \
869   s-taspri.ads<s-taspri-posix.ads \
870   s-tpopsp.adb<s-tpopsp-posix.adb \
871   system.ads<system-freebsd-x86.ads
872
873   TOOLS_TARGET_PAIRS = \
874   mlib-tgt.adb<mlib-tgt-linux.adb
875   GNATLIB_SHARED = gnatlib-shared-dual
876
877   THREADSLIB= -lc_r
878   GMEM_LIB = gmemlib
879   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
880   LIBRARY_VERSION := $(LIB_VERSION)
881 endif
882
883 ifeq ($(strip $(filter-out s390% linux%,$(arch) $(osys))),)
884   ifeq ($(strip $(filter-out s390x,$(arch))),)
885     LIBGNAT_TARGET_PAIRS = \
886     a-intnam.ads<a-intnam-linux.ads \
887     s-inmaop.adb<s-inmaop-posix.adb \
888     s-intman.adb<s-intman-posix.adb \
889     s-osinte.adb<s-osinte-posix.adb \
890     s-osinte.ads<s-osinte-linux.ads \
891     s-osprim.adb<s-osprim-posix.adb \
892     s-taprop.adb<s-taprop-linux.adb \
893     s-taspri.ads<s-taspri-linux.ads \
894     s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
895     s-parame.adb<s-parame-linux.adb \
896     system.ads<system-linux-s390x.ads
897   else
898     LIBGNAT_TARGET_PAIRS = \
899     a-intnam.ads<a-intnam-linux.ads \
900     s-inmaop.adb<s-inmaop-posix.adb \
901     s-intman.adb<s-intman-posix.adb \
902     s-osinte.adb<s-osinte-posix.adb \
903     s-osinte.ads<s-osinte-linux.ads \
904     s-osprim.adb<s-osprim-posix.adb \
905     s-taprop.adb<s-taprop-linux.adb \
906     s-taspri.ads<s-taspri-linux.ads \
907     s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
908     s-parame.adb<s-parame-linux.adb \
909     system.ads<system-linux-s390.ads
910   endif
911
912   TOOLS_TARGET_PAIRS =  \
913     mlib-tgt.adb<mlib-tgt-linux.adb
914
915   THREADSLIB = -lpthread
916   GNATLIB_SHARED = gnatlib-shared-dual
917   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
918   LIBRARY_VERSION := $(LIB_VERSION)
919 endif
920
921 ifeq ($(strip $(filter-out mips sgi irix%,$(targ))),)
922   ifeq ($(strip $(filter-out mips sgi irix6%,$(targ))),)
923     LIBGNAT_TARGET_PAIRS = \
924     a-intnam.ads<a-intnam-irix.ads \
925     s-inmaop.adb<s-inmaop-posix.adb \
926     s-intman.adb<s-intman-irix.adb \
927     s-mastop.adb<s-mastop-irix.adb \
928     s-osinte.adb<s-osinte-irix.adb \
929     s-osinte.ads<s-osinte-irix.ads \
930     s-osprim.adb<s-osprim-posix.adb \
931     s-proinf.adb<s-proinf-irix-athread.adb \
932     s-proinf.ads<s-proinf-irix-athread.ads \
933     s-taprop.adb<s-taprop-irix.adb \
934     s-tasinf.ads<s-tasinf-irix.ads \
935     s-taspri.ads<s-taspri-posix.ads \
936     s-tpopsp.adb<s-tpopsp-posix.adb \
937     s-traceb.adb<s-traceb-mastop.adb \
938     g-soccon.ads<g-soccon-irix.ads \
939     system.ads<system-irix-n32.ads
940
941     THREADSLIB = -lpthread
942     GNATLIB_SHARED = gnatlib-shared-default
943
944   else
945     LIBGNAT_TARGET_PAIRS = \
946     a-intnam.ads<a-intnam-irix.ads \
947     s-inmaop.adb<s-inmaop-dummy.adb \
948     s-interr.adb<s-interr-sigaction.adb \
949     s-intman.adb<s-intman-irix-athread.adb \
950     s-mastop.adb<s-mastop-irix.adb \
951     s-osinte.adb<s-osinte-irix.adb \
952     s-osinte.ads<s-osinte-irix-athread.ads \
953     s-osprim.adb<s-osprim-posix.adb \
954     s-proinf.adb<s-proinf-irix-athread.adb \
955     s-proinf.ads<s-proinf-irix-athread.ads \
956     s-taprop.adb<s-taprop-irix-athread.adb \
957     s-tasinf.adb<s-tasinf-irix-athread.adb \
958     s-tasinf.ads<s-tasinf-irix-athread.ads \
959     s-taspri.ads<s-taspri-posix.ads \
960     s-traceb.adb<s-traceb-mastop.adb \
961     g-soccon.ads<g-soccon-irix.ads \
962     system.ads<system-irix-o32.ads
963   endif
964
965   TOOLS_TARGET_PAIRS = mlib-tgt.adb<mlib-tgt-irix.adb
966   TGT_LIB = -lexc
967   MISCLIB = -lexc
968   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
969   LIBRARY_VERSION := $(LIB_VERSION)
970 endif
971
972 ifeq ($(strip $(filter-out hppa% hp hpux10%,$(targ))),)
973   LIBGNAT_TARGET_PAIRS = \
974   a-excpol.adb<a-excpol-abort.adb \
975   a-intnam.ads<a-intnam-hpux.ads \
976   s-inmaop.adb<s-inmaop-posix.adb \
977   s-interr.adb<s-interr-sigaction.adb \
978   s-intman.adb<s-intman-posix.adb \
979   s-osinte.adb<s-osinte-hpux-dce.adb \
980   s-osinte.ads<s-osinte-hpux-dce.ads \
981   s-parame.ads<s-parame-hpux.ads \
982   s-osprim.adb<s-osprim-posix.adb \
983   s-taprop.adb<s-taprop-hpux-dce.adb \
984   s-taspri.ads<s-taspri-hpux-dce.ads \
985   s-tpopsp.adb<s-tpopsp-posix.adb \
986   g-soccon.ads<g-soccon-hpux.ads \
987   system.ads<system-hpux.ads
988
989   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
990 endif
991
992 ifeq ($(strip $(filter-out hppa% hp hpux11%,$(targ))),)
993   LIBGNAT_TARGET_PAIRS = \
994   a-intnam.ads<a-intnam-hpux.ads \
995   s-inmaop.adb<s-inmaop-posix.adb \
996   s-intman.adb<s-intman-posix.adb \
997   s-osinte.adb<s-osinte-posix.adb \
998   s-osinte.ads<s-osinte-hpux.ads \
999   s-parame.ads<s-parame-hpux.ads \
1000   s-osprim.adb<s-osprim-posix.adb \
1001   s-traceb.adb<s-traceb-hpux.adb \
1002   s-taprop.adb<s-taprop-posix.adb \
1003   s-taspri.ads<s-taspri-posix.ads \
1004   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1005   g-soccon.ads<g-soccon-hpux.ads \
1006   system.ads<system-hpux.ads
1007
1008   TOOLS_TARGET_PAIRS = mlib-tgt.adb<mlib-tgt-hpux.adb
1009   TGT_LIB = /usr/lib/libcl.a
1010   THREADSLIB = -lpthread
1011   GMEM_LIB = gmemlib
1012   soext = .sl
1013   SO_OPTS = -Wl,+h,
1014   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1015   GNATLIB_SHARED = gnatlib-shared-dual
1016   LIBRARY_VERSION := $(LIB_VERSION)
1017
1018   ifeq ($(strip $(filter-out dce DCE,$(THREAD_KIND))),)
1019     LIBGNAT_TARGET_PAIRS = \
1020     a-excpol.adb<a-excpol-abort.adb \
1021     a-intnam.ads<a-intnam-hpux.ads \
1022     s-inmaop.adb<s-inmaop-posix.adb \
1023     s-interr.adb<s-interr-sigaction.adb \
1024     s-intman.adb<s-intman-posix.adb \
1025     s-osinte.adb<s-osinte-hpux-dce.adb \
1026     s-osinte.ads<s-osinte-hpux-dce.ads \
1027     s-parame.ads<s-parame-hpux.ads \
1028     s-osprim.adb<s-osprim-posix.adb \
1029     s-taprop.adb<s-taprop-hpux-dce.adb \
1030     s-taspri.ads<s-taspri-hpux-dce.ads \
1031     s-tpopsp.adb<s-tpopsp-posix.adb \
1032     g-soccon.ads<g-soccon-hpux.ads \
1033     system.ads<system-hpux.ads
1034
1035     TGT_LIB =
1036     THREADSLIB = -lcma
1037   endif
1038 endif
1039
1040 ifeq ($(strip $(filter-out ibm aix%,$(manu) $(osys))),)
1041   LIBGNAT_TARGET_PAIRS = \
1042   a-intnam.ads<a-intnam-aix.ads \
1043   s-inmaop.adb<s-inmaop-posix.adb \
1044   s-intman.adb<s-intman-posix.adb \
1045   s-osinte.adb<s-osinte-aix.adb \
1046   s-osinte.ads<s-osinte-aix.ads \
1047   s-osprim.adb<s-osprim-posix.adb \
1048   s-taprop.adb<s-taprop-posix.adb \
1049   s-taspri.ads<s-taspri-posix.ads \
1050   s-tpopsp.adb<s-tpopsp-posix.adb \
1051   g-soccon.ads<g-soccon-aix.ads \
1052   system.ads<system-aix.ads
1053
1054   THREADSLIB = -lpthreads
1055   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1056
1057   ifeq ($(strip $(filter-out fsu FSU,$(THREAD_KIND))),)
1058     LIBGNAT_TARGET_PAIRS = \
1059     a-intnam.ads<a-intnam-aix.ads \
1060     s-inmaop.adb<s-inmaop-posix.adb \
1061     s-intman.adb<s-intman-posix.adb \
1062     s-osinte.adb<s-osinte-fsu.adb \
1063     s-osinte.ads<s-osinte-aix-fsu.ads \
1064     s-osprim.adb<s-osprim-posix.adb \
1065     s-taprop.adb<s-taprop-posix.adb \
1066     s-taspri.ads<s-taspri-posix.ads \
1067     s-tpopsp.adb<s-tpopsp-posix.adb \
1068     g-soccon.ads<g-soccon-aix.ads \
1069     system.ads<system-aix.ads
1070
1071     THREADSLIB = -lgthreads -lmalloc
1072   endif
1073
1074   TOOLS_TARGET_PAIRS = \
1075   mlib-tgt.adb<mlib-tgt-aix.adb \
1076   indepsw.adb<indepsw-aix.adb
1077
1078   GMEM_LIB = gmemlib
1079 endif
1080
1081 ifeq ($(strip $(filter-out lynxos,$(osys))),)
1082   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-lynxos.adb 
1083
1084   ifeq ($(strip $(filter-out %86 lynxos,$(arch) $(osys))),)
1085     LIBGNAT_TARGET_PAIRS = \
1086     a-numaux.adb<a-numaux-x86.adb \
1087     a-numaux.ads<a-numaux-x86.ads \
1088     a-intnam.ads<a-intnam-lynxos.ads \
1089     s-mastop.adb<s-mastop-x86.adb \
1090     s-inmaop.adb<s-inmaop-posix.adb \
1091     s-intman.adb<s-intman-posix.adb \
1092     s-osinte.adb<s-osinte-lynxos.adb \
1093     s-osinte.ads<s-osinte-lynxos.ads \
1094     s-osprim.adb<s-osprim-posix.adb \
1095     s-taprop.adb<s-taprop-lynxos.adb \
1096     s-taspri.ads<s-taspri-lynxos.ads \
1097     s-tpopsp.adb<s-tpopsp-lynxos.adb \
1098     system.ads<system-lynxos-x86.ads
1099
1100     PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1101
1102   else
1103     LIBGNAT_TARGET_PAIRS = \
1104     a-intnam.ads<a-intnam-lynxos.ads \
1105     s-inmaop.adb<s-inmaop-posix.adb \
1106     s-intman.adb<s-intman-posix.adb \
1107     s-osinte.adb<s-osinte-lynxos-3.adb \
1108     s-osinte.ads<s-osinte-lynxos-3.ads \
1109     s-osprim.adb<s-osprim-posix.adb \
1110     s-taprop.adb<s-taprop-posix.adb \
1111     s-taspri.ads<s-taspri-posix.ads \
1112     s-tpopsp.adb<s-tpopsp-posix.adb \
1113     system.ads<system-lynxos-ppc.ads
1114
1115     ifeq ($(strip $(filter-out pthread PTHREAD,$(THREAD_KIND))),)
1116       LIBGNAT_TARGET_PAIRS = \
1117       a-intnam.ads<a-intnam-lynxos.ads \
1118       s-inmaop.adb<s-inmaop-posix.adb \
1119       s-intman.adb<s-intman-posix.adb \
1120       s-osinte.adb<s-osinte-lynxos.adb \
1121       s-osinte.ads<s-osinte-lynxos.ads \
1122       s-osprim.adb<s-osprim-posix.adb \
1123       s-taprop.adb<s-taprop-lynxos.adb \
1124       s-taspri.ads<s-taspri-lynxos.ads \
1125       s-tpopsp.adb<s-tpopsp-lynxos.adb \
1126       system.ads<system-lynxos-ppc.ads
1127     endif
1128   endif
1129 endif
1130
1131 ifeq ($(strip $(filter-out rtems%,$(osys))),)
1132   LIBGNAT_TARGET_PAIRS = \
1133   a-intnam.ads<a-intnam-rtems.ads \
1134   s-inmaop.adb<s-inmaop-posix.adb \
1135   s-intman.adb<s-intman-posix.adb \
1136   s-osinte.adb<s-osinte-rtems.adb \
1137   s-osinte.ads<s-osinte-rtems.ads \
1138   s-osprim.adb<s-osprim-posix.adb \
1139   s-parame.adb<s-parame-rtems.adb \
1140   s-taprop.adb<s-taprop-posix.adb \
1141   s-taspri.ads<s-taspri-posix.ads \
1142   s-tpopsp.adb<s-tpopsp-rtems.adb
1143 endif
1144
1145 ifeq ($(strip $(filter-out alpha% dec osf%,$(targ))),)
1146   LIBGNAT_TARGET_PAIRS = \
1147   a-intnam.ads<a-intnam-tru64.ads \
1148   s-inmaop.adb<s-inmaop-posix.adb \
1149   s-intman.adb<s-intman-posix.adb \
1150   s-mastop.adb<s-mastop-tru64.adb \
1151   s-osinte.adb<s-osinte-tru64.adb \
1152   s-osinte.ads<s-osinte-tru64.ads \
1153   s-osprim.adb<s-osprim-unix.adb \
1154   s-taprop.adb<s-taprop-tru64.adb \
1155   s-tasinf.ads<s-tasinf-tru64.ads \
1156   s-taspri.ads<s-taspri-tru64.ads \
1157   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1158   s-traceb.adb<s-traceb-mastop.adb \
1159   g-soccon.ads<g-soccon-tru64.ads \
1160   system.ads<system-tru64.ads
1161
1162   TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-tru64.adb
1163
1164   GMEM_LIB=gmemlib
1165   THREADSLIB = -lpthread -lmach -lexc -lrt
1166   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1167   GNATLIB_SHARED = gnatlib-shared-default
1168   LIBRARY_VERSION := $(LIB_VERSION)
1169 endif
1170
1171 ifeq ($(strip $(filter-out alpha% ia64 dec hp vms% openvms% alphavms%,$(host))),)
1172
1173 soext  = .exe
1174 hyphen = _
1175 LN = cp -p
1176 LN_S = cp -p
1177
1178 ifeq ($(strip $(filter-out ia64 hp vms% openvms%,$(targ))),)
1179 AR = iar
1180 endif
1181
1182 .SUFFIXES: .sym
1183
1184 .o.sym: 
1185         @ gnu:[bin]vmssymvec $<
1186 endif
1187
1188 ifeq ($(strip $(filter-out alpha% ia64 dec hp vms% openvms% alphavms%,$(targ))),)
1189 ifeq ($(strip $(filter-out ia64 hp vms% openvms%,$(targ))),)
1190   LIBGNAT_TARGET_PAIRS_AUX1 = \
1191   g-enblsp.adb<g-enblsp-vms-ia64.adb \
1192   s-auxdec.ads<s-auxdec-vms_64.ads \
1193   s-crtl.ads<s-crtl-vms.ads \
1194   s-osinte.adb<s-osinte-vms-ia64.adb \
1195   s-osinte.ads<s-osinte-vms-ia64.ads \
1196   system.ads<system-vms_64.ads
1197 else
1198 ifeq ($(strip $(filter-out alpha% dec vms% openvms% alphavms%,$(targ))),)
1199   LIBGNAT_TARGET_PAIRS_AUX1 = \
1200   g-enblsp.adb<g-enblsp-vms-alpha.adb \
1201   s-asthan.adb<s-asthan-vms-alpha.adb \
1202   s-crtl.ads<s-crtl-vms.ads \
1203   s-osinte.adb<s-osinte-vms.adb \
1204   s-osinte.ads<s-osinte-vms.ads \
1205   s-vaflop.adb<s-vaflop-vms-alpha.adb \
1206   system.ads<system-vms-zcx.ads
1207 endif
1208 endif
1209 ifeq ($(strip $(filter-out express EXPRESS,$(THREAD_KIND))),)
1210   LIBGNAT_TARGET_PAIRS_AUX2 = \
1211   s-parame.ads<s-parame-vms-restrict.ads
1212 else
1213   LIBGNAT_TARGET_PAIRS_AUX2 = \
1214   s-parame.ads<s-parame-vms.ads
1215 endif
1216
1217   LIBGNAT_TARGET_PAIRS = \
1218   a-caldel.adb<a-caldel-vms.adb \
1219   a-calend.adb<a-calend-vms.adb \
1220   a-calend.ads<a-calend-vms.ads \
1221   a-dirval.adb<a-dirval-vms.adb \
1222   a-excpol.adb<a-excpol-abort.adb \
1223   a-intnam.ads<a-intnam-vms.ads \
1224   a-numaux.ads<a-numaux-vms.ads \
1225   g-expect.adb<g-expect-vms.adb \
1226   g-soccon.ads<g-soccon-vms.adb \
1227   g-socthi.ads<g-socthi-vms.ads \
1228   g-socthi.adb<g-socthi-vms.adb \
1229   g-trasym.adb<g-trasym-vms.adb \
1230   i-cstrea.adb<i-cstrea-vms.adb \
1231   i-cpp.adb<i-cpp-vms.adb \
1232   interfac.ads<interfac-vms.ads \
1233   s-inmaop.adb<s-inmaop-vms.adb \
1234   s-interr.adb<s-interr-vms.adb \
1235   s-intman.adb<s-intman-vms.adb \
1236   s-intman.ads<s-intman-vms.ads \
1237   s-osprim.adb<s-osprim-vms.adb \
1238   s-osprim.ads<s-osprim-vms.ads \
1239   s-taprop.adb<s-taprop-vms.adb \
1240   s-taspri.ads<s-taspri-vms.ads \
1241   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1242   s-tpopde.adb<s-tpopde-vms.adb \
1243   s-tpopde.ads<s-tpopde-vms.ads \
1244   s-traent.adb<s-traent-vms.adb \
1245   s-traent.ads<s-traent-vms.ads \
1246   $(LIBGNAT_TARGET_PAIRS_AUX1) \
1247   $(LIBGNAT_TARGET_PAIRS_AUX2)
1248
1249 ifeq ($(strip $(filter-out ia64 hp vms% openvms%,$(targ))),)
1250   TOOLS_TARGET_PAIRS= \
1251   mlib-tgt.adb<mlib-tgt-vms-ia64.adb \
1252   symbols.adb<symbols-vms-ia64.adb
1253 else
1254   TOOLS_TARGET_PAIRS= \
1255   mlib-tgt.adb<mlib-tgt-vms-alpha.adb \
1256   symbols.adb<symbols-vms-alpha.adb
1257 endif
1258
1259   GNATLIB_SHARED=gnatlib-shared-vms
1260 ifeq ($(strip $(filter-out alpha% dec vms% openvms% alphavms%,$(targ))),)
1261   EXTRA_LIBGNAT_SRCS=vmshandler.asm
1262   EXTRA_LIBGNAT_OBJS=vmshandler.o
1263 endif
1264   EXTRA_GNATRTL_TASKING_OBJS=s-tpopde.o
1265   EXTRA_GNATTOOLS = \
1266      ../../gnatlbr$(exeext) \
1267      ../../gnatsym$(exeext)
1268   # This command transforms (YYYYMMDD) into YY,MMDD
1269   GSMATCH_VERSION := $(shell grep "^ *Gnat_Static_Version_String" $(fsrcpfx)gnatvsn.ads | sed -e 's/.*(\(.*\)).*/\1/' -e 's/\(..\)\(..\)\(....\)/\2,\3/')
1270   TOOLS_LIBS_LO := --for-linker=sys\\$$\$$library:trace.exe
1271   LIBRARY_VERSION := $(subst .,_,$(LIB_VERSION))
1272 endif
1273
1274 ifeq ($(strip $(filter-out cygwin32% mingw32% pe,$(osys))),)
1275   LIBGNAT_TARGET_PAIRS = \
1276   a-calend.adb<a-calend-mingw.adb \
1277   a-dirval.adb<a-dirval-mingw.adb \
1278   a-excpol.adb<a-excpol-abort.adb \
1279   a-intnam.ads<a-intnam-mingw.ads \
1280   a-numaux.adb<a-numaux-x86.adb \
1281   a-numaux.ads<a-numaux-x86.ads \
1282   s-gloloc.adb<s-gloloc-mingw.adb \
1283   s-inmaop.adb<s-inmaop-dummy.adb \
1284   s-interr.adb<s-interr-sigaction.adb \
1285   s-intman.adb<s-intman-mingw.adb \
1286   s-mastop.adb<s-mastop-x86.adb \
1287   s-memory.adb<s-memory-mingw.adb \
1288   s-osinte.ads<s-osinte-mingw.ads \
1289   s-osprim.adb<s-osprim-mingw.adb \
1290   s-taprop.adb<s-taprop-mingw.adb \
1291   s-taspri.ads<s-taspri-mingw.ads \
1292   s-parame.adb<s-parame-mingw.adb \
1293   g-socthi.ads<g-socthi-mingw.ads \
1294   g-socthi.adb<g-socthi-mingw.adb \
1295   g-soccon.ads<g-soccon-mingw.ads \
1296   g-soliop.ads<g-soliop-mingw.ads \
1297   system.ads<system-mingw.ads
1298
1299   TOOLS_TARGET_PAIRS= \
1300   mlib-tgt.adb<mlib-tgt-mingw.adb \
1301   indepsw.adb<indepsw-mingw.adb
1302
1303   MISCLIB = -lwsock32
1304   GMEM_LIB = gmemlib
1305   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1306   EXTRA_GNATTOOLS = ../../gnatdll$(exeext)
1307   EXTRA_GNATMAKE_OBJS = mdll.o mdll-utl.o mdll-fil.o
1308   EXTRA_GNATRTL_NONTASKING_OBJS = g-regist.o
1309   soext = .dll
1310 # ??? This will be replaced by gnatlib-shared-dual-win32 when GNAT auto-import
1311 # support for array/record will be done.
1312   GNATLIB_SHARED = gnatlib-shared-win32
1313   LIBRARY_VERSION := $(LIB_VERSION)
1314 endif
1315
1316 ifeq ($(strip $(filter-out powerpc% linux%,$(arch) $(osys))),)
1317   LIBGNAT_TARGET_PAIRS = \
1318   a-intnam.ads<a-intnam-linux.ads \
1319   s-inmaop.adb<s-inmaop-posix.adb \
1320   s-intman.adb<s-intman-posix.adb \
1321   s-osinte.adb<s-osinte-posix.adb \
1322   s-osinte.ads<s-osinte-linux.ads \
1323   s-osprim.adb<s-osprim-posix.adb \
1324   s-taprop.adb<s-taprop-linux.adb \
1325   s-taspri.ads<s-taspri-linux.ads \
1326   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1327   s-parame.adb<s-parame-linux.adb \
1328   system.ads<system-linux-ppc.ads
1329
1330   TOOLS_TARGET_PAIRS =  \
1331     mlib-tgt.adb<mlib-tgt-linux.adb \
1332     indepsw.adb<indepsw-linux.adb
1333
1334   THREADSLIB = -lpthread
1335   GNATLIB_SHARED = gnatlib-shared-dual
1336   GMEM_LIB = gmemlib
1337   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1338   LIBRARY_VERSION := $(LIB_VERSION)
1339 endif
1340
1341 ifeq ($(strip $(filter-out sparc% linux%,$(arch) $(osys))),)
1342   LIBGNAT_TARGET_PAIRS = \
1343   a-intnam.ads<a-intnam-linux.ads \
1344   s-inmaop.adb<s-inmaop-posix.adb \
1345   s-intman.adb<s-intman-posix.adb \
1346   s-osinte.adb<s-osinte-posix.adb \
1347   s-osinte.ads<s-osinte-linux.ads \
1348   s-osprim.adb<s-osprim-posix.adb \
1349   s-taprop.adb<s-taprop-linux.adb \
1350   s-taspri.ads<s-taspri-linux.ads \
1351   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1352   s-parame.adb<s-parame-linux.adb \
1353   system.ads<system-linux-sparc.ads
1354
1355   TOOLS_TARGET_PAIRS =  \
1356     mlib-tgt.adb<mlib-tgt-linux.adb \
1357     indepsw.adb<indepsw-linux.adb
1358
1359   THREADSLIB = -lpthread
1360   GNATLIB_SHARED = gnatlib-shared-dual
1361   GMEM_LIB = gmemlib
1362   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1363   LIBRARY_VERSION := $(LIB_VERSION)
1364 endif
1365
1366 ifeq ($(strip $(filter-out %ia64 linux%,$(arch) $(osys))),)
1367   LIBGNAT_TARGET_PAIRS = \
1368   a-intnam.ads<a-intnam-linux.ads \
1369   a-numaux.ads<a-numaux-libc-x86.ads \
1370   s-inmaop.adb<s-inmaop-posix.adb \
1371   s-intman.adb<s-intman-posix.adb \
1372   s-osinte.ads<s-osinte-linux.ads \
1373   s-osinte.adb<s-osinte-posix.adb \
1374   s-osprim.adb<s-osprim-posix.adb \
1375   s-taprop.adb<s-taprop-linux.adb \
1376   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1377   s-taspri.ads<s-taspri-linux.ads \
1378   system.ads<system-linux-ia64.ads
1379
1380   TOOLS_TARGET_PAIRS =  \
1381     mlib-tgt.adb<mlib-tgt-linux.adb \
1382     indepsw.adb<indepsw-linux.adb
1383
1384   MISCLIB=
1385   THREADSLIB=-lpthread
1386   GNATLIB_SHARED=gnatlib-shared-dual
1387   GMEM_LIB = gmemlib
1388   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1389   LIBRARY_VERSION := $(LIB_VERSION)
1390 endif
1391
1392 ifeq ($(strip $(filter-out alpha% linux%,$(arch) $(osys))),)
1393   LIBGNAT_TARGET_PAIRS = \
1394   a-intnam.ads<a-intnam-linux.ads \
1395   s-inmaop.adb<s-inmaop-posix.adb \
1396   s-intman.adb<s-intman-posix.adb \
1397   s-osinte.ads<s-osinte-linux-alpha.ads \
1398   s-osinte.adb<s-osinte-posix.adb \
1399   s-osprim.adb<s-osprim-posix.adb \
1400   s-taprop.adb<s-taprop-linux.adb \
1401   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1402   s-taspri.ads<s-taspri-linux.ads \
1403   system.ads<system-linux-alpha.ads
1404
1405   TOOLS_TARGET_PAIRS =  \
1406     mlib-tgt.adb<mlib-tgt-linux.adb \
1407     indepsw.adb<indepsw-linux.adb
1408
1409   MISCLIB=
1410   THREADSLIB=-lpthread
1411   GNATLIB_SHARED=gnatlib-shared-dual
1412   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1413   LIBRARY_VERSION := $(LIB_VERSION)
1414 endif
1415
1416 ifeq ($(strip $(filter-out %x86_64 linux%,$(arch) $(osys))),)
1417   LIBGNAT_TARGET_PAIRS = \
1418   a-intnam.ads<a-intnam-linux.ads \
1419   a-numaux.adb<a-numaux-x86.adb \
1420   a-numaux.ads<a-numaux-x86.ads \
1421   s-inmaop.adb<s-inmaop-posix.adb \
1422   s-intman.adb<s-intman-posix.adb \
1423   s-osinte.ads<s-osinte-linux.ads \
1424   s-osinte.adb<s-osinte-posix.adb \
1425   s-osprim.adb<s-osprim-posix.adb \
1426   s-taprop.adb<s-taprop-linux.adb \
1427   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1428   s-taspri.ads<s-taspri-linux.ads \
1429   system.ads<system-linux-x86_64.ads
1430
1431   TOOLS_TARGET_PAIRS =  \
1432     mlib-tgt.adb<mlib-tgt-linux.adb \
1433     indepsw.adb<indepsw-linux.adb
1434
1435   THREADSLIB=-lpthread
1436   GNATLIB_SHARED=gnatlib-shared-dual
1437   GMEM_LIB = gmemlib
1438   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1439   LIBRARY_VERSION := $(LIB_VERSION)
1440 endif
1441
1442 ifeq ($(strip $(filter-out powerpc darwin%,$(arch) $(osys))),)
1443   LIBGNAT_TARGET_PAIRS = \
1444   a-intnam.ads<a-intnam-darwin.ads \
1445   s-inmaop.adb<s-inmaop-posix.adb \
1446   s-intman.adb<s-intman-posix.adb \
1447   s-osinte.adb<s-osinte-darwin.adb \
1448   s-osinte.ads<s-osinte-darwin.ads \
1449   s-osprim.adb<s-osprim-posix.adb \
1450   s-taprop.adb<s-taprop-posix.adb \
1451   s-taspri.ads<s-taspri-posix.ads \
1452   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1453   g-soccon.ads<g-soccon-darwin.ads \
1454   a-numaux.ads<a-numaux-darwin.ads \
1455   a-numaux.adb<a-numaux-darwin.adb \
1456   system.ads<system-darwin-ppc.ads
1457
1458   TOOLS_TARGET_PAIRS =  \
1459     mlib-tgt.adb<mlib-tgt-darwin.adb
1460
1461   GNATLIB_SHARED = gnatlib-shared-darwin
1462   SO_OPTS = -Wl,-flat_namespace
1463   RANLIB = ranlib -c
1464   GMEM_LIB = gmemlib
1465   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1466   LIBRARY_VERSION := $(LIB_VERSION)
1467   soext = .dylib
1468 endif
1469
1470 # The runtime library for gnat comprises two directories.  One contains the
1471 # Ada source files that the compiler (gnat1) needs -- these files are listed
1472 # by ADA_INCLUDE_SRCS -- and the other contains the object files and their
1473 # corresponding .ali files for the parts written in Ada, libgnat.a for
1474 # the parts of the runtime written in C, and libgthreads.a for the pthreads
1475 # emulation library.  LIBGNAT_OBJS lists the objects that go into libgnat.a,
1476 # while GNATRTL_OBJS lists the object files compiled from Ada sources that
1477 # go into the directory.  The pthreads emulation is built in the threads
1478 # subdirectory and copied.
1479 LIBGNAT_SRCS = ada.h adaint.c adaint.h argv.c cio.c cstreams.c \
1480   errno.c exit.c cal.c ctrl_c.c \
1481   raise.h raise.c sysdep.c aux-io.c init.c seh_init.c \
1482   final.c tracebak.c tb-alvms.c tb-alvxw.c expect.c mkdir.c socket.c gsocket.h \
1483   $(EXTRA_LIBGNAT_SRCS)
1484
1485 LIBGNAT_OBJS = adaint.o argv.o cio.o cstreams.o ctrl_c.o errno.o exit.o \
1486   raise.o sysdep.o aux-io.o init.o seh_init.o cal.o final.o \
1487   tracebak.o expect.o mkdir.o socket.o $(EXTRA_LIBGNAT_OBJS)
1488
1489 # NOTE ??? - when the -I option for compiling Ada code is made to work,
1490 #  the library installation will change and there will be a
1491 #  GNAT_RTL_SRCS.  Right now we count on being able to build GNATRTL_OBJS
1492 #  from ADA_INCLUDE_SRCS.
1493
1494 # GNATRTL_NONTASKING_OBJS and GNATRTL_TASKING_OBJS can be found in
1495 # the following include file:
1496
1497 include $(fsrcdir)/Makefile.rtl
1498
1499 GNATRTL_OBJS = $(GNATRTL_NONTASKING_OBJS) $(GNATRTL_TASKING_OBJS) \
1500   g-trasym.o memtrack.o
1501
1502 # Default run time files
1503
1504 ADA_INCLUDE_SRCS =\
1505  ada.ads calendar.ads directio.ads gnat.ads interfac.ads ioexcept.ads \
1506  machcode.ads text_io.ads unchconv.ads unchdeal.ads \
1507  sequenio.ads system.ads memtrack.adb \
1508  a-[a-o]*.adb a-[p-z]*.adb a-[a-o]*.ads a-[p-z]*.ads g-*.ad? i-*.ad? \
1509  s-[a-o]*.adb s-[p-z]*.adb s-[a-o]*.ads s-[p-z]*.ads  
1510
1511 LIBGNAT=../rts/libgnat.a 
1512 GCC_LINK="$(CC) -static-libgcc $(ADA_INCLUDES)"
1513
1514 # when compiling the tools, the runtime has to be first on the path so that
1515 # it hides the runtime files lying with the rest of the sources
1516 ifeq ($(TOOLSCASE),native)
1517   vpath %.ads ../rts ../
1518   vpath %.adb ../rts ../
1519   vpath %.c   ../rts ../
1520   vpath %.h   ../rts ../
1521 endif
1522
1523 # in the cross tools case, everything is compiled with the native 
1524 # gnatmake/link. Therefore only -I needs to be modified in ADA_INCLUDES
1525 ifeq ($(TOOLSCASE),cross)
1526   vpath %.ads ../
1527   vpath %.adb ../
1528   vpath %.c   ../
1529   vpath %.h   ../
1530 endif
1531
1532
1533 ../../gnatchop$(exeext): 
1534         $(GNATMAKE) -c $(ADA_INCLUDES) gnatchop --GCC="$(CC) $(ALL_ADAFLAGS)"
1535         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatchop 
1536         $(GNATLINK) -v gnatchop -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1537
1538 ../../gnat$(exeext): 
1539         $(GNATMAKE) -c $(ADA_INCLUDES) gnatcmd --GCC="$(CC) $(ALL_ADAFLAGS)"
1540         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatcmd 
1541         $(GNATLINK) -v gnatcmd -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1542
1543 ../../gnatkr$(exeext): 
1544         $(GNATMAKE) -c $(ADA_INCLUDES) gnatkr --GCC="$(CC) $(ALL_ADAFLAGS)"
1545         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatkr 
1546         $(GNATLINK) -v gnatkr -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1547
1548 ../../gnatls$(exeext): 
1549         $(GNATMAKE) -c $(ADA_INCLUDES) gnatls --GCC="$(CC) $(ALL_ADAFLAGS)"
1550         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatls 
1551         $(GNATLINK) -v gnatls -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1552
1553 ../../gnatname$(exeext): 
1554         $(GNATMAKE) -c $(ADA_INCLUDES) gnatname --GCC="$(CC) $(ALL_ADAFLAGS)"
1555         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatname 
1556         $(GNATLINK) -v gnatname -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1557
1558 ../../gprmake$(exeext): 
1559         $(GNATMAKE) -c $(ADA_INCLUDES) gprmake --GCC="$(CC) $(ALL_ADAFLAGS)"
1560         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gprmake
1561         $(GNATLINK) -v gprmake -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1562
1563 ../../gnatprep$(exeext): 
1564         $(GNATMAKE) -c $(ADA_INCLUDES) gnatprep --GCC="$(CC) $(ALL_ADAFLAGS)"
1565         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatprep 
1566         $(GNATLINK) -v gnatprep -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1567
1568 ../../gnatxref$(exeext): 
1569         $(GNATMAKE) -c $(ADA_INCLUDES) gnatxref --GCC="$(CC) $(ALL_ADAFLAGS)"
1570         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatxref 
1571         $(GNATLINK) -v gnatxref -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1572
1573 ../../gnatfind$(exeext): 
1574         $(GNATMAKE) -c $(ADA_INCLUDES) gnatfind --GCC="$(CC) $(ALL_ADAFLAGS)"
1575         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatfind 
1576         $(GNATLINK) -v gnatfind -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1577
1578 ../../gnatclean$(exeext): 
1579         $(GNATMAKE) -c $(ADA_INCLUDES) gnatclean --GCC="$(CC) $(ALL_ADAFLAGS)"
1580         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatclean
1581         $(GNATLINK) -v gnatclean -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1582
1583 ../../gnatsym$(exeext): 
1584         $(GNATMAKE) -c $(ADA_INCLUDES) gnatsym --GCC="$(CC) $(ALL_ADAFLAGS)"
1585         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatsym
1586         $(GNATLINK) -v gnatsym -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1587
1588 ../../gnatdll$(exeext): 
1589         $(GNATMAKE) -c $(ADA_INCLUDES) gnatdll --GCC="$(CC) $(ALL_ADAFLAGS)"
1590         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) $(GNATBIND_FLAGS) gnatdll
1591         $(GNATLINK) -v gnatdll -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1592
1593 ../../vxaddr2line$(exeext): 
1594         $(GNATMAKE) -c  $(ADA_INCLUDES) vxaddr2line --GCC="$(CC) $(ALL_ADAFLAGS)"
1595         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) vxaddr2line 
1596         $(GNATLINK) -v vxaddr2line -o $@ --GCC=$(GCC_LINK) $(CLIB)
1597
1598 gnatmake-re:  link.o
1599         $(GNATMAKE) $(ADA_INCLUDES) -u sdefault --GCC="$(CC) $(MOST_ADA_FLAGS)"
1600         $(GNATMAKE) -c $(ADA_INCLUDES) gnatmake --GCC="$(CC) $(ALL_ADAFLAGS)"
1601         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatmake 
1602         $(GNATLINK) -v gnatmake -o ../../gnatmake$(exeext) \
1603                 --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1604
1605 # Note the use of the "mv" command in order to allow gnatlink to be linked with
1606 # with the former version of gnatlink itself which cannot override itself.
1607 gnatlink-re:  link.o
1608         $(GNATMAKE) -c $(ADA_INCLUDES) gnatlink --GCC="$(CC) $(ALL_ADAFLAGS)"
1609         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatlink 
1610         $(GNATLINK) -v gnatlink -o ../../gnatlinknew$(exeext) \
1611                     --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1612         $(MV)  ../../gnatlinknew$(exeext)  ../../gnatlink$(exeext)
1613   
1614 # Needs to be built with CC=gcc
1615 # Since the RTL should be built with the latest compiler, remove the
1616 #  stamp target in the parent directory whenever gnat1 is rebuilt
1617
1618 # Likewise for the tools
1619 ../../gnatmake$(exeext): $(P) b_gnatm.o link.o $(GNATMAKE_OBJS)
1620         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ b_gnatm.o $(GNATMAKE_OBJS) \
1621               $(TOOLS_LIBS)
1622
1623 ../../gnatlink$(exeext): $(P) b_gnatl.o link.o $(GNATLINK_OBJS)
1624         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ b_gnatl.o $(GNATLINK_OBJS) \
1625               $(TOOLS_LIBS)
1626
1627 ../../gnatbl$(exeext): gnatbl.o
1628         $(CC) -o $@ $(ALL_CFLAGS) $(LDFLAGS) gnatbl.o $(TOOLS_LIBS)
1629
1630 gnatbl.o: gnatbl.c adaint.h
1631         $(CC) $(ALL_CFLAGS) $(INCLUDES) -c $< $(OUTPUT_OPTION)
1632
1633 ../stamp-gnatlib:
1634         @if [ ! -f stamp-gnatlib ] ; \
1635         then \
1636           $(ECHO) You must first build the GNAT library: make gnatlib; \
1637           false; \
1638         else \
1639           true; \
1640         fi
1641
1642 install-gnatlib: ../stamp-gnatlib
1643 #       Create the directory before deleting it, in case the directory is
1644 #       a list of directories (as it may be on VMS). This ensures we are
1645 #       deleting the right one.
1646         -$(MKDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1647         -$(MKDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1648         $(RMDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1649         $(RMDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1650         -$(MKDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1651         -$(MKDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1652         for file in rts/*.ali; do \
1653             $(INSTALL_DATA_DATE) $$file $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1654         done
1655         -$(INSTALL_DATA) rts/g-trasym$(objext) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1656         -cd rts; for file in *$(arext);do \
1657             $(INSTALL_DATA) $$file $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1658             $(RANLIB) $(RANLIB_FLAGS) $(DESTDIR)$(ADA_RTL_OBJ_DIR)/$$file; \
1659         done
1660         -$(foreach file, $(EXTRA_ADALIB_FILES), \
1661             $(INSTALL_DATA_DATE) rts/$(file) $(DESTDIR)$(ADA_RTL_OBJ_DIR) && \
1662         ) true
1663 #     Install the shared libraries, if any, using $(INSTALL) instead
1664 #     of $(INSTALL_DATA). The latter may force a mode inappropriate
1665 #     for shared libraries on some targets, e.g. on HP-UX where the x
1666 #     permission is required.
1667         for file in gnat gnarl; do \
1668            if [ -f rts/lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) ]; then \
1669               $(INSTALL) rts/lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) \
1670                          $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1671            fi; \
1672            if [ -f rts/lib$${file}$(soext) ]; then \
1673               $(LN_S) lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) \
1674               $(DESTDIR)$(ADA_RTL_OBJ_DIR)/lib$${file}$(soext); \
1675            fi; \
1676         done
1677 # This copy must be done preserving the date on the original file.
1678         for file in rts/*.adb rts/*.ads; do \
1679             $(INSTALL_DATA_DATE) $$file $(DESTDIR)$(ADA_INCLUDE_DIR); \
1680         done
1681         cd $(DESTDIR)$(ADA_INCLUDE_DIR); $(CHMOD) a-wx *.adb
1682         cd $(DESTDIR)$(ADA_INCLUDE_DIR); $(CHMOD) a-wx *.ads
1683
1684 ../stamp-gnatlib2:
1685         $(RM) rts/s-*.ali
1686         $(RM) rts/s-*$(objext)
1687         $(RM) rts/a-*.ali
1688         $(RM) rts/a-*$(objext)
1689         $(RM) rts/*.ali
1690         $(RM) rts/*$(objext)
1691         $(RM) rts/*$(arext)
1692         $(RM) rts/*$(soext)
1693         touch ../stamp-gnatlib2
1694         $(RM) ../stamp-gnatlib
1695
1696 # NOTE: The $(foreach ...) commands assume ";" is the valid separator between
1697 #       successive target commands. Although the Gnu make documentation
1698 #       implies this is true on all systems, I suspect it may not be, So care
1699 #       has been taken to allow a sed script to look for ";)" and substitue
1700 #       for ";" the appropriate character in the range of lines below
1701 #       beginning with "GNULLI Begin" and ending with "GNULLI End"
1702
1703 # GNULLI Begin ###########################################################
1704
1705 ../stamp-gnatlib1: Makefile ../stamp-gnatlib2
1706         $(RMDIR) rts
1707         $(MKDIR) rts
1708         $(CHMOD) u+w rts
1709 # Copy target independent sources
1710         $(foreach f,$(ADA_INCLUDE_SRCS) $(LIBGNAT_SRCS), \
1711           $(LN_S) $(fsrcpfx)$(f) rts ;) true
1712 # Remove files to be replaced by target dependent sources
1713         $(RM) $(foreach PAIR,$(LIBGNAT_TARGET_PAIRS), \
1714                         rts/$(word 1,$(subst <, ,$(PAIR))))
1715         $(RM) rts/*-*-*.ads rts/*-*-*.adb
1716 # Copy new target dependent sources
1717         $(foreach PAIR,$(LIBGNAT_TARGET_PAIRS), \
1718                   $(LN_S) $(fsrcpfx)$(word 2,$(subst <, ,$(PAIR))) \
1719                         rts/$(word 1,$(subst <, ,$(PAIR)));)
1720         $(RM) ../stamp-gnatlib
1721         touch ../stamp-gnatlib1
1722
1723 # GNULLI End #############################################################
1724
1725 # Don't use semicolon separated shell commands that involve list expansions.
1726 # The semicolon triggers a call to DCL on VMS and DCL can't handle command
1727 # line lengths in excess of 256 characters.
1728 # Example: cd rts; ar rc libfoo.a $(LONG_LIST_OF_OBJS)
1729 # is guaranteed to overflow the buffer.
1730
1731 # ??? GCC_FOR_TARGET is supposed to be passed from the top level
1732 # Makefile, but this is not the case from e.g. libada, so provide a suitable
1733 # default
1734 GCC_FOR_TARGET=./xgcc -B./ $(FLAGS_FOR_TARGET)
1735
1736 gnatlib: ../stamp-gnatlib1 ../stamp-gnatlib2
1737         $(MAKE) -C rts \
1738                 CC="`echo \"$(GCC_FOR_TARGET)\" \
1739                 | sed -e 's^./xgcc^../../xgcc^' -e 's^-B./^-B../../^'`" \
1740                 INCLUDES="$(INCLUDES_FOR_SUBDIR) -I./../.." \
1741                 CFLAGS="$(GNATLIBCFLAGS_FOR_C)" \
1742                 srcdir=$(fsrcdir) \
1743                 -f ../Makefile $(LIBGNAT_OBJS)
1744         $(MAKE) -C rts \
1745                 CC="`echo \"$(GCC_FOR_TARGET)\" \
1746                 | sed -e 's^\./xgcc^../../xgcc^' -e 's^-B./^-B../../^'`" \
1747                 ADA_INCLUDES="" \
1748                 CFLAGS="$(GNATLIBCFLAGS)" \
1749                 ADAFLAGS="$(GNATLIBFLAGS)" \
1750                 srcdir=$(fsrcdir) \
1751                 -f ../Makefile \
1752                 $(GNATRTL_OBJS)
1753         $(RM) rts/libgnat$(arext) rts/libgnarl$(arext)
1754         $(AR) $(AR_FLAGS) rts/libgnat$(arext) \
1755            $(addprefix rts/,$(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS))
1756         ifneq ($(PREFIX_OBJS),)
1757                 $(AR) $(AR_FLAGS) rts/libgccprefix$(arext) $(PREFIX_OBJS);
1758                 -$(RANLIB) rts/libgccprefix$(arext)
1759         endif
1760         -$(RANLIB) $(RANLIB_FLAGS) rts/libgnat$(arext)
1761         $(AR) $(AR_FLAGS) rts/libgnarl$(arext) \
1762            $(addprefix rts/,$(GNATRTL_TASKING_OBJS))
1763         -$(RANLIB) $(RANLIB_FLAGS) rts/libgnarl$(arext)
1764         ifeq ($(GMEM_LIB),gmemlib)
1765                 $(AR) $(AR_FLAGS) rts/libgmem$(arext) rts/memtrack.o
1766                 -$(RANLIB) $(RANLIB_FLAGS) rts/libgmem$(arext)
1767         endif
1768         $(CHMOD) a-wx rts/*.ali
1769         touch ../stamp-gnatlib
1770
1771 # Warning: this target assumes that LIBRARY_VERSION has been set correctly.
1772 gnatlib-shared-default:
1773         $(MAKE) $(FLAGS_TO_PASS) \
1774              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1775              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1776              THREAD_KIND="$(THREAD_KIND)" \
1777              gnatlib
1778         $(RM) rts/libgna*$(soext)
1779         cd rts; ../../xgcc -B../../ -shared $(GNATLIBCFLAGS) \
1780                 $(TARGET_LIBGCC2_CFLAGS) \
1781                 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1782                 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1783                 $(SO_OPTS)libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1784                 $(MISCLIB) -lm
1785         cd rts; ../../xgcc -B../../ -shared $(GNATLIBCFLAGS) \
1786                 $(TARGET_LIBGCC2_CFLAGS) \
1787                 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1788                 $(GNATRTL_TASKING_OBJS) \
1789                 $(SO_OPTS)libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1790                 $(THREADSLIB)
1791         cd rts; $(LN_S) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1792                 libgnat$(soext)
1793         cd rts; $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1794                 libgnarl$(soext)
1795
1796 gnatlib-shared-dual:
1797         $(MAKE) $(FLAGS_TO_PASS) \
1798              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1799              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1800              THREAD_KIND="$(THREAD_KIND)" \
1801              gnatlib-shared-default
1802         $(MV) rts/libgna*$(soext) .
1803         $(RM) ../stamp-gnatlib2
1804         $(MAKE) $(FLAGS_TO_PASS) \
1805              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1806              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1807              THREAD_KIND="$(THREAD_KIND)" \
1808              gnatlib
1809         $(MV) libgna*$(soext) rts
1810
1811 gnatlib-shared-dual-win32:
1812         $(MAKE) $(FLAGS_TO_PASS) \
1813              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1814              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1815              THREAD_KIND="$(THREAD_KIND)" \
1816              gnatlib-shared-win32
1817         $(MV) rts/libgna*$(soext) .
1818         $(RM) ../stamp-gnatlib2
1819         $(MAKE) $(FLAGS_TO_PASS) \
1820              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1821              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1822              THREAD_KIND="$(THREAD_KIND)" \
1823              gnatlib
1824         $(MV) libgna*$(soext) rts
1825
1826 # ??? we need to add the option to support auto-import of arrays/records to
1827 # the GNATLIBFLAGS when this will be supported by GNAT. At this point we will
1828 # use the gnatlib-shared-dual-win32 target to build the GNAT runtimes on
1829 # Windows.
1830 gnatlib-shared-win32:
1831         $(MAKE) $(FLAGS_TO_PASS) \
1832              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1833              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1834              THREAD_KIND="$(THREAD_KIND)" \
1835              gnatlib
1836         $(RM) rts/libgna*$(soext)
1837         cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1838                 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1839                 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1840                 $(SO_OPTS)libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) $(MISCLIB)
1841         cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1842                 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1843                 $(GNATRTL_TASKING_OBJS) \
1844                 $(SO_OPTS)libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1845                 $(THREADSLIB) -Wl,libgnat$(hyphen)$(LIBRARY_VERSION)$(soext)
1846
1847 gnatlib-shared-darwin:
1848         $(MAKE) $(FLAGS_TO_PASS) \
1849              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1850              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS) \
1851                             -fno-common" \
1852              THREAD_KIND="$(THREAD_KIND)" \
1853              gnatlib
1854         $(RM) rts/libgnat$(soext) rts/libgnarl$(soext)
1855         cd rts; ../../xgcc -B../../ -dynamiclib $(TARGET_LIBGCC2_CFLAGS) \
1856                 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1857                 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1858                 $(SO_OPTS) \
1859                 $(MISCLIB) -lm
1860         cd rts; ../../xgcc -B../../ -dynamiclib $(TARGET_LIBGCC2_CFLAGS) \
1861                 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1862                 $(GNATRTL_TASKING_OBJS) \
1863                 $(SO_OPTS) \
1864                 $(THREADSLIB) -Wl,libgnat$(hyphen)$(LIBRARY_VERSION)$(soext)
1865         cd rts; $(LN_S) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1866                 libgnat$(soext)
1867         cd rts; $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1868                 libgnarl$(soext)
1869
1870 gnatlib-shared-vms:
1871         $(MAKE) $(FLAGS_TO_PASS) \
1872              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1873              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1874              THREAD_KIND="$(THREAD_KIND)" \
1875              gnatlib
1876         $(RM) rts/libgna*$(soext)
1877         cd rts && echo "case_sensitive=yes" > SYMVEC_$$$$.opt && \
1878         objdump --syms $(LIBGNAT_OBJS) $(GNATRTL_NONTASKING_OBJS) | \
1879         $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt && \
1880         echo "case_sensitive=NO" >> SYMVEC_$$$$.opt && \
1881         ../../xgcc -g -B../../ -nostartfiles -shared -shared-libgcc \
1882            -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) libgnat.a \
1883            sys\$$library:trace.exe \
1884            --for-linker=/noinform \
1885            --for-linker=SYMVEC_$$$$.opt \
1886            --for-linker=gsmatch=equal,$(GSMATCH_VERSION)
1887         cd rts && echo "case_sensitive=yes" > SYMVEC_$$$$.opt && \
1888         objdump --syms $(GNATRTL_TASKING_OBJS) | \
1889         $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt && \
1890         echo "case_sensitive=NO" >> SYMVEC_$$$$.opt && \
1891         ../../xgcc -g -B../../ -nostartfiles -shared -shared-libgcc \
1892            -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1893            libgnarl.a libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1894            sys\$$library:trace.exe \
1895            --for-linker=/noinform \
1896            --for-linker=SYMVEC_$$$$.opt \
1897            --for-linker=gsmatch=equal,$(GSMATCH_VERSION)
1898
1899 gnatlib-shared:
1900         $(MAKE) $(FLAGS_TO_PASS) \
1901              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1902              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1903              THREAD_KIND="$(THREAD_KIND)" \
1904              TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" \
1905              $(GNATLIB_SHARED)
1906
1907 gnatlib-sjlj: ../stamp-gnatlib1
1908         sed -e 's/ZCX_By_Default.*/ZCX_By_Default            : constant Boolean := False;/' rts/system.ads > rts/s.ads
1909         $(MV) rts/s.ads rts/system.ads
1910         $(MAKE) $(FLAGS_TO_PASS) \
1911              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1912              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1913              THREAD_KIND="$(THREAD_KIND)" \
1914              TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" gnatlib
1915
1916 gnatlib-zcx: ../stamp-gnatlib1
1917         sed -e 's/ZCX_By_Default.*/ZCX_By_Default            : constant Boolean := True;/' rts/system.ads > rts/s.ads
1918         $(MV) rts/s.ads rts/system.ads
1919         $(MAKE) $(FLAGS_TO_PASS) \
1920              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1921              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1922              THREAD_KIND="$(THREAD_KIND)" \
1923              TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" gnatlib
1924
1925 # .s files for cross-building
1926 gnat-cross: force
1927         make $(GNAT1_ADA_OBJS) CC="gcc -B../stage1/" CFLAGS="-S -gnatp"
1928
1929 # Compiling object files from source files.
1930
1931 # Note that dependencies on obstack.h are not written
1932 # because that file is not part of GCC.
1933 # Dependencies on gvarargs.h are not written
1934 # because all that file does, when not compiling with GCC,
1935 # is include the system varargs.h.
1936
1937 b_gnatl.c : $(GNATLINK_OBJS)
1938         $(GNATBIND) -C $(ADA_INCLUDES) -o b_gnatl.c gnatlink.ali
1939 b_gnatl.o : b_gnatl.c
1940
1941 b_gnatm.c : $(GNATMAKE_OBJS)
1942         $(GNATBIND) -C $(ADA_INCLUDES) -o b_gnatm.c gnatmake.ali
1943 b_gnatm.o : b_gnatm.c
1944
1945 ADA_INCLUDE_DIR = $(libsubdir)/adainclude
1946 ADA_RTL_OBJ_DIR = $(libsubdir)/adalib
1947
1948 # force no sibling call optimization on s-traceb.o so the number of stack
1949 # frames to be skipped when computing a call chain is not modified by
1950 # optimization. However we can do that only when building the runtime
1951 # (not the compiler) because the -fno-optimize-sibling-calls exists
1952 # only in GCC 3.
1953
1954 ifneq (,$(findstring xgcc,$(CC)))
1955 NO_SIBLING_ADAFLAGS=-fno-optimize-sibling-calls
1956 else
1957 NO_SIBLING_ADAFLAGS=
1958 endif
1959
1960 s-traceb.o  : s-traceb.adb
1961         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) \
1962               $(NO_SIBLING_ADAFLAGS) $(ADA_INCLUDES) \
1963       $< $(OUTPUT_OPTION)
1964
1965 # force debugging information on s-tasdeb.o so that it is always
1966 # possible to set conditional breakpoints on tasks.
1967
1968 s-tasdeb.o  : s-tasdeb.adb s-tasdeb.ads
1969         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O0 $(ADA_INCLUDES) \
1970               $< $(OUTPUT_OPTION)
1971
1972 # force debugging information on a-except.o so that it is always
1973 # possible to set conditional breakpoints on exceptions.
1974 # use -O1 otherwise gdb isn't able to get a full backtrace on mips targets.
1975
1976 a-except.o  : a-except.adb a-except.ads
1977         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O1 -fno-inline \
1978               $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
1979
1980 # force debugging information on s-assert.o so that it is always
1981 # possible to set breakpoint on assert failures.
1982
1983 s-assert.o  : s-assert.adb s-assert.ads a-except.ads
1984         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O2 $(ADA_INCLUDES) \
1985               $< $(OUTPUT_OPTION)
1986
1987 adadecode.o : adadecode.c adadecode.h
1988 aux-io.o  : aux-io.c
1989 argv.o    : argv.c
1990 cal.o     : cal.c
1991 deftarg.o  : deftarg.c
1992 errno.o   : errno.c
1993 exit.o    : raise.h exit.c
1994 expect.o  : expect.c
1995 final.o   : raise.h final.c
1996 gmem.o    : gmem.c
1997 link.o    : link.c
1998 mkdir.o   : mkdir.c
1999 socket.o  : socket.c gsocket.h
2000 sysdep.o  : sysdep.c
2001
2002 gen-soccon: gen-soccon.c gsocket.h
2003         $(CC) $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2004                 $(ALL_CPPFLAGS) $(INCLUDES) -DTARGET=\"$(target_alias)\" \
2005                 $< $(OUTPUT_OPTION)
2006
2007 cio.o     : cio.c
2008         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2009                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2010
2011 init.o    : init.c ada.h types.h raise.h
2012         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2013                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2014
2015 # No optimization to compile this file as optimizations (-O1 or above) breaks
2016 # the SEH handling on Windows. The reasons are not clear.
2017 seh_init.o : seh_init.c raise.h
2018         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) -O0 \
2019                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2020
2021 raise.o   : raise.c raise.h
2022         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2023                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2024
2025 # Need to keep the frame pointer in this file to pop the stack properly on
2026 # some targets.
2027 tracebak.o  : tracebak.c tb-alvms.c tb-alvxw.c
2028         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2029               -fno-omit-frame-pointer $< $(OUTPUT_OPTION)
2030
2031 # In GNU Make, ignore whether `stage*' exists.
2032 .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
2033 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2034
2035 force:
2036
2037 # Gnatlbr is only used on VMS
2038
2039 ../../gnatlbr$(exeext): ../../prefix.o
2040         $(GNATMAKE) -c $(ADA_INCLUDES) gnatlbr --GCC="$(CC) $(ALL_ADAFLAGS)"
2041         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatlbr
2042         $(GNATLINK) -v gnatlbr -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)