OSDN Git Service

2005-03-29 Doug Rupp <rupp@adacore.com>
[pf3gnuchains/gcc-fork.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-vms64.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      ../../vms_help$(exeext) \
1269      ../../gnat.hlp
1270   # This command transforms (YYYYMMDD) into YY,MMDD
1271   GSMATCH_VERSION := $(shell grep "^ *Gnat_Static_Version_String" $(fsrcpfx)gnatvsn.ads | sed -e 's/.*(\(.*\)).*/\1/' -e 's/\(..\)\(..\)\(....\)/\2,\3/')
1272   TOOLS_LIBS_LO := --for-linker=sys\\$$\$$library:trace.exe
1273   LIBRARY_VERSION := $(subst .,_,$(LIB_VERSION))
1274 endif
1275
1276 ifeq ($(strip $(filter-out cygwin32% mingw32% pe,$(osys))),)
1277   LIBGNAT_TARGET_PAIRS = \
1278   a-calend.adb<a-calend-mingw.adb \
1279   a-dirval.adb<a-dirval-mingw.adb \
1280   a-excpol.adb<a-excpol-abort.adb \
1281   a-intnam.ads<a-intnam-mingw.ads \
1282   a-numaux.adb<a-numaux-x86.adb \
1283   a-numaux.ads<a-numaux-x86.ads \
1284   s-gloloc.adb<s-gloloc-mingw.adb \
1285   s-inmaop.adb<s-inmaop-dummy.adb \
1286   s-interr.adb<s-interr-sigaction.adb \
1287   s-intman.adb<s-intman-mingw.adb \
1288   s-mastop.adb<s-mastop-x86.adb \
1289   s-memory.adb<s-memory-mingw.adb \
1290   s-osinte.ads<s-osinte-mingw.ads \
1291   s-osprim.adb<s-osprim-mingw.adb \
1292   s-taprop.adb<s-taprop-mingw.adb \
1293   s-taspri.ads<s-taspri-mingw.ads \
1294   s-parame.adb<s-parame-mingw.adb \
1295   g-socthi.ads<g-socthi-mingw.ads \
1296   g-socthi.adb<g-socthi-mingw.adb \
1297   g-soccon.ads<g-soccon-mingw.ads \
1298   g-soliop.ads<g-soliop-mingw.ads \
1299   system.ads<system-mingw.ads
1300
1301   TOOLS_TARGET_PAIRS= \
1302   mlib-tgt.adb<mlib-tgt-mingw.adb \
1303   indepsw.adb<indepsw-mingw.adb
1304
1305   MISCLIB = -lwsock32
1306   GMEM_LIB = gmemlib
1307   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1308   EXTRA_GNATTOOLS = ../../gnatdll$(exeext)
1309   EXTRA_GNATMAKE_OBJS = mdll.o mdll-utl.o mdll-fil.o
1310   EXTRA_GNATRTL_NONTASKING_OBJS = g-regist.o
1311   soext = .dll
1312 # ??? This will be replaced by gnatlib-shared-dual-win32 when GNAT auto-import
1313 # support for array/record will be done.
1314   GNATLIB_SHARED = gnatlib-shared-win32
1315   LIBRARY_VERSION := $(LIB_VERSION)
1316 endif
1317
1318 ifeq ($(strip $(filter-out powerpc% linux%,$(arch) $(osys))),)
1319   LIBGNAT_TARGET_PAIRS = \
1320   a-intnam.ads<a-intnam-linux.ads \
1321   s-inmaop.adb<s-inmaop-posix.adb \
1322   s-intman.adb<s-intman-posix.adb \
1323   s-osinte.adb<s-osinte-posix.adb \
1324   s-osinte.ads<s-osinte-linux.ads \
1325   s-osprim.adb<s-osprim-posix.adb \
1326   s-taprop.adb<s-taprop-linux.adb \
1327   s-taspri.ads<s-taspri-linux.ads \
1328   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1329   s-parame.adb<s-parame-linux.adb \
1330   system.ads<system-linux-ppc.ads
1331
1332   TOOLS_TARGET_PAIRS =  \
1333     mlib-tgt.adb<mlib-tgt-linux.adb \
1334     indepsw.adb<indepsw-linux.adb
1335
1336   THREADSLIB = -lpthread
1337   GNATLIB_SHARED = gnatlib-shared-dual
1338   GMEM_LIB = gmemlib
1339   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1340   LIBRARY_VERSION := $(LIB_VERSION)
1341 endif
1342
1343 ifeq ($(strip $(filter-out sparc% linux%,$(arch) $(osys))),)
1344   LIBGNAT_TARGET_PAIRS = \
1345   a-intnam.ads<a-intnam-linux.ads \
1346   s-inmaop.adb<s-inmaop-posix.adb \
1347   s-intman.adb<s-intman-posix.adb \
1348   s-osinte.adb<s-osinte-posix.adb \
1349   s-osinte.ads<s-osinte-linux.ads \
1350   s-osprim.adb<s-osprim-posix.adb \
1351   s-taprop.adb<s-taprop-linux.adb \
1352   s-taspri.ads<s-taspri-linux.ads \
1353   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1354   s-parame.adb<s-parame-linux.adb \
1355   system.ads<system-linux-sparc.ads
1356
1357   TOOLS_TARGET_PAIRS =  \
1358     mlib-tgt.adb<mlib-tgt-linux.adb \
1359     indepsw.adb<indepsw-linux.adb
1360
1361   THREADSLIB = -lpthread
1362   GNATLIB_SHARED = gnatlib-shared-dual
1363   GMEM_LIB = gmemlib
1364   PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1365   LIBRARY_VERSION := $(LIB_VERSION)
1366 endif
1367
1368 ifeq ($(strip $(filter-out %ia64 linux%,$(arch) $(osys))),)
1369   LIBGNAT_TARGET_PAIRS = \
1370   a-intnam.ads<a-intnam-linux.ads \
1371   a-numaux.ads<a-numaux-libc-x86.ads \
1372   s-inmaop.adb<s-inmaop-posix.adb \
1373   s-intman.adb<s-intman-posix.adb \
1374   s-osinte.ads<s-osinte-linux.ads \
1375   s-osinte.adb<s-osinte-posix.adb \
1376   s-osprim.adb<s-osprim-posix.adb \
1377   s-taprop.adb<s-taprop-linux.adb \
1378   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1379   s-taspri.ads<s-taspri-linux.ads \
1380   system.ads<system-linux-ia64.ads
1381
1382   TOOLS_TARGET_PAIRS =  \
1383     mlib-tgt.adb<mlib-tgt-linux.adb \
1384     indepsw.adb<indepsw-linux.adb
1385
1386   MISCLIB=
1387   THREADSLIB=-lpthread
1388   GNATLIB_SHARED=gnatlib-shared-dual
1389   GMEM_LIB = gmemlib
1390   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1391   LIBRARY_VERSION := $(LIB_VERSION)
1392 endif
1393
1394 ifeq ($(strip $(filter-out alpha% linux%,$(arch) $(osys))),)
1395   LIBGNAT_TARGET_PAIRS = \
1396   a-intnam.ads<a-intnam-linux.ads \
1397   s-inmaop.adb<s-inmaop-posix.adb \
1398   s-intman.adb<s-intman-posix.adb \
1399   s-osinte.ads<s-osinte-linux-alpha.ads \
1400   s-osinte.adb<s-osinte-posix.adb \
1401   s-osprim.adb<s-osprim-posix.adb \
1402   s-taprop.adb<s-taprop-linux.adb \
1403   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1404   s-taspri.ads<s-taspri-linux.ads \
1405   system.ads<system-linux-alpha.ads
1406
1407   TOOLS_TARGET_PAIRS =  \
1408     mlib-tgt.adb<mlib-tgt-linux.adb \
1409     indepsw.adb<indepsw-linux.adb
1410
1411   MISCLIB=
1412   THREADSLIB=-lpthread
1413   GNATLIB_SHARED=gnatlib-shared-dual
1414   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1415   LIBRARY_VERSION := $(LIB_VERSION)
1416 endif
1417
1418 ifeq ($(strip $(filter-out %x86_64 linux%,$(arch) $(osys))),)
1419   LIBGNAT_TARGET_PAIRS = \
1420   a-intnam.ads<a-intnam-linux.ads \
1421   a-numaux.adb<a-numaux-x86.adb \
1422   a-numaux.ads<a-numaux-x86.ads \
1423   s-inmaop.adb<s-inmaop-posix.adb \
1424   s-intman.adb<s-intman-posix.adb \
1425   s-osinte.ads<s-osinte-linux.ads \
1426   s-osinte.adb<s-osinte-posix.adb \
1427   s-osprim.adb<s-osprim-posix.adb \
1428   s-taprop.adb<s-taprop-linux.adb \
1429   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1430   s-taspri.ads<s-taspri-linux.ads \
1431   system.ads<system-linux-x86_64.ads
1432
1433   TOOLS_TARGET_PAIRS =  \
1434     mlib-tgt.adb<mlib-tgt-linux.adb \
1435     indepsw.adb<indepsw-linux.adb
1436
1437   THREADSLIB=-lpthread
1438   GNATLIB_SHARED=gnatlib-shared-dual
1439   GMEM_LIB = gmemlib
1440   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1441   LIBRARY_VERSION := $(LIB_VERSION)
1442 endif
1443
1444 ifeq ($(strip $(filter-out powerpc darwin%,$(arch) $(osys))),)
1445   LIBGNAT_TARGET_PAIRS = \
1446   a-intnam.ads<a-intnam-darwin.ads \
1447   s-inmaop.adb<s-inmaop-posix.adb \
1448   s-intman.adb<s-intman-posix.adb \
1449   s-osinte.adb<s-osinte-darwin.adb \
1450   s-osinte.ads<s-osinte-darwin.ads \
1451   s-osprim.adb<s-osprim-posix.adb \
1452   s-taprop.adb<s-taprop-posix.adb \
1453   s-taspri.ads<s-taspri-posix.ads \
1454   s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1455   g-soccon.ads<g-soccon-darwin.ads \
1456   a-numaux.ads<a-numaux-darwin.ads \
1457   a-numaux.adb<a-numaux-darwin.adb \
1458   system.ads<system-darwin-ppc.ads
1459
1460   TOOLS_TARGET_PAIRS =  \
1461     mlib-tgt.adb<mlib-tgt-darwin.adb
1462
1463   GNATLIB_SHARED = gnatlib-shared-darwin
1464   SO_OPTS = -Wl,-flat_namespace
1465   RANLIB = ranlib -c
1466   GMEM_LIB = gmemlib
1467   PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1468   LIBRARY_VERSION := $(LIB_VERSION)
1469   soext = .dylib
1470 endif
1471
1472 # The runtime library for gnat comprises two directories.  One contains the
1473 # Ada source files that the compiler (gnat1) needs -- these files are listed
1474 # by ADA_INCLUDE_SRCS -- and the other contains the object files and their
1475 # corresponding .ali files for the parts written in Ada, libgnat.a for
1476 # the parts of the runtime written in C, and libgthreads.a for the pthreads
1477 # emulation library.  LIBGNAT_OBJS lists the objects that go into libgnat.a,
1478 # while GNATRTL_OBJS lists the object files compiled from Ada sources that
1479 # go into the directory.  The pthreads emulation is built in the threads
1480 # subdirectory and copied.
1481 LIBGNAT_SRCS = ada.h adaint.c adaint.h argv.c cio.c cstreams.c \
1482   errno.c exit.c cal.c ctrl_c.c \
1483   raise.h raise.c sysdep.c aux-io.c init.c seh_init.c \
1484   final.c tracebak.c tb-alvms.c tb-alvxw.c expect.c mkdir.c socket.c gsocket.h \
1485   $(EXTRA_LIBGNAT_SRCS)
1486
1487 LIBGNAT_OBJS = adaint.o argv.o cio.o cstreams.o ctrl_c.o errno.o exit.o \
1488   raise.o sysdep.o aux-io.o init.o seh_init.o cal.o final.o \
1489   tracebak.o expect.o mkdir.o socket.o $(EXTRA_LIBGNAT_OBJS)
1490
1491 # NOTE ??? - when the -I option for compiling Ada code is made to work,
1492 #  the library installation will change and there will be a
1493 #  GNAT_RTL_SRCS.  Right now we count on being able to build GNATRTL_OBJS
1494 #  from ADA_INCLUDE_SRCS.
1495
1496 # GNATRTL_NONTASKING_OBJS and GNATRTL_TASKING_OBJS can be found in
1497 # the following include file:
1498
1499 include $(fsrcdir)/Makefile.rtl
1500
1501 GNATRTL_OBJS = $(GNATRTL_NONTASKING_OBJS) $(GNATRTL_TASKING_OBJS) \
1502   g-trasym.o memtrack.o
1503
1504 # Default run time files
1505
1506 ADA_INCLUDE_SRCS =\
1507  ada.ads calendar.ads directio.ads gnat.ads interfac.ads ioexcept.ads \
1508  machcode.ads text_io.ads unchconv.ads unchdeal.ads \
1509  sequenio.ads system.ads memtrack.adb \
1510  a-[a-o]*.adb a-[p-z]*.adb a-[a-o]*.ads a-[p-z]*.ads g-*.ad? i-*.ad? \
1511  s-[a-o]*.adb s-[p-z]*.adb s-[a-o]*.ads s-[p-z]*.ads  
1512
1513 LIBGNAT=../rts/libgnat.a 
1514 GCC_LINK="$(CC) -static-libgcc $(ADA_INCLUDES)"
1515
1516 # when compiling the tools, the runtime has to be first on the path so that
1517 # it hides the runtime files lying with the rest of the sources
1518 ifeq ($(TOOLSCASE),native)
1519   vpath %.ads ../rts ../
1520   vpath %.adb ../rts ../
1521   vpath %.c   ../rts ../
1522   vpath %.h   ../rts ../
1523 endif
1524
1525 # in the cross tools case, everything is compiled with the native 
1526 # gnatmake/link. Therefore only -I needs to be modified in ADA_INCLUDES
1527 ifeq ($(TOOLSCASE),cross)
1528   vpath %.ads ../
1529   vpath %.adb ../
1530   vpath %.c   ../
1531   vpath %.h   ../
1532 endif
1533
1534
1535 ../../gnatchop$(exeext): 
1536         $(GNATMAKE) -c $(ADA_INCLUDES) gnatchop --GCC="$(CC) $(ALL_ADAFLAGS)"
1537         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatchop 
1538         $(GNATLINK) -v gnatchop -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1539
1540 ../../gnat$(exeext): 
1541         $(GNATMAKE) -c $(ADA_INCLUDES) gnatcmd --GCC="$(CC) $(ALL_ADAFLAGS)"
1542         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatcmd 
1543         $(GNATLINK) -v gnatcmd -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1544
1545 ../../gnatkr$(exeext): 
1546         $(GNATMAKE) -c $(ADA_INCLUDES) gnatkr --GCC="$(CC) $(ALL_ADAFLAGS)"
1547         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatkr 
1548         $(GNATLINK) -v gnatkr -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1549
1550 ../../gnatls$(exeext): 
1551         $(GNATMAKE) -c $(ADA_INCLUDES) gnatls --GCC="$(CC) $(ALL_ADAFLAGS)"
1552         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatls 
1553         $(GNATLINK) -v gnatls -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1554
1555 ../../gnatname$(exeext): 
1556         $(GNATMAKE) -c $(ADA_INCLUDES) gnatname --GCC="$(CC) $(ALL_ADAFLAGS)"
1557         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatname 
1558         $(GNATLINK) -v gnatname -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1559
1560 ../../gprmake$(exeext): 
1561         $(GNATMAKE) -c $(ADA_INCLUDES) gprmake --GCC="$(CC) $(ALL_ADAFLAGS)"
1562         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gprmake
1563         $(GNATLINK) -v gprmake -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1564
1565 ../../gnatprep$(exeext): 
1566         $(GNATMAKE) -c $(ADA_INCLUDES) gnatprep --GCC="$(CC) $(ALL_ADAFLAGS)"
1567         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatprep 
1568         $(GNATLINK) -v gnatprep -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1569
1570 ../../gnatxref$(exeext): 
1571         $(GNATMAKE) -c $(ADA_INCLUDES) gnatxref --GCC="$(CC) $(ALL_ADAFLAGS)"
1572         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatxref 
1573         $(GNATLINK) -v gnatxref -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1574
1575 ../../gnatfind$(exeext): 
1576         $(GNATMAKE) -c $(ADA_INCLUDES) gnatfind --GCC="$(CC) $(ALL_ADAFLAGS)"
1577         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatfind 
1578         $(GNATLINK) -v gnatfind -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1579
1580 ../../gnatclean$(exeext): 
1581         $(GNATMAKE) -c $(ADA_INCLUDES) gnatclean --GCC="$(CC) $(ALL_ADAFLAGS)"
1582         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatclean
1583         $(GNATLINK) -v gnatclean -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1584
1585 ../../gnatsym$(exeext): 
1586         $(GNATMAKE) -c $(ADA_INCLUDES) gnatsym --GCC="$(CC) $(ALL_ADAFLAGS)"
1587         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatsym
1588         $(GNATLINK) -v gnatsym -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1589
1590 ../../gnatdll$(exeext): 
1591         $(GNATMAKE) -c $(ADA_INCLUDES) gnatdll --GCC="$(CC) $(ALL_ADAFLAGS)"
1592         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) $(GNATBIND_FLAGS) gnatdll
1593         $(GNATLINK) -v gnatdll -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1594
1595 ../../vxaddr2line$(exeext): 
1596         $(GNATMAKE) -c  $(ADA_INCLUDES) vxaddr2line --GCC="$(CC) $(ALL_ADAFLAGS)"
1597         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) vxaddr2line 
1598         $(GNATLINK) -v vxaddr2line -o $@ --GCC=$(GCC_LINK) $(CLIB)
1599
1600 gnatmake-re:  link.o
1601         $(GNATMAKE) $(ADA_INCLUDES) -u sdefault --GCC="$(CC) $(MOST_ADA_FLAGS)"
1602         $(GNATMAKE) -c $(ADA_INCLUDES) gnatmake --GCC="$(CC) $(ALL_ADAFLAGS)"
1603         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatmake 
1604         $(GNATLINK) -v gnatmake -o ../../gnatmake$(exeext) \
1605                 --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1606
1607 # Note the use of the "mv" command in order to allow gnatlink to be linked with
1608 # with the former version of gnatlink itself which cannot override itself.
1609 gnatlink-re:  link.o
1610         $(GNATMAKE) -c $(ADA_INCLUDES) gnatlink --GCC="$(CC) $(ALL_ADAFLAGS)"
1611         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatlink 
1612         $(GNATLINK) -v gnatlink -o ../../gnatlinknew$(exeext) \
1613                     --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1614         $(MV)  ../../gnatlinknew$(exeext)  ../../gnatlink$(exeext)
1615   
1616 # Needs to be built with CC=gcc
1617 # Since the RTL should be built with the latest compiler, remove the
1618 #  stamp target in the parent directory whenever gnat1 is rebuilt
1619
1620 # Likewise for the tools
1621 ../../gnatmake$(exeext): $(P) b_gnatm.o link.o $(GNATMAKE_OBJS)
1622         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ b_gnatm.o $(GNATMAKE_OBJS) \
1623               $(TOOLS_LIBS)
1624
1625 ../../gnatlink$(exeext): $(P) b_gnatl.o link.o $(GNATLINK_OBJS)
1626         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ b_gnatl.o $(GNATLINK_OBJS) \
1627               $(TOOLS_LIBS)
1628
1629 ../../gnatbl$(exeext): gnatbl.o
1630         $(CC) -o $@ $(ALL_CFLAGS) $(LDFLAGS) gnatbl.o $(TOOLS_LIBS)
1631
1632 gnatbl.o: gnatbl.c adaint.h
1633         $(CC) $(ALL_CFLAGS) $(INCLUDES) -c $< $(OUTPUT_OPTION)
1634
1635 ../stamp-gnatlib:
1636         @if [ ! -f stamp-gnatlib ] ; \
1637         then \
1638           $(ECHO) You must first build the GNAT library: make gnatlib; \
1639           false; \
1640         else \
1641           true; \
1642         fi
1643
1644 install-gnatlib: ../stamp-gnatlib
1645 #       Create the directory before deleting it, in case the directory is
1646 #       a list of directories (as it may be on VMS). This ensures we are
1647 #       deleting the right one.
1648         -$(MKDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1649         -$(MKDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1650         $(RMDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1651         $(RMDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1652         -$(MKDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1653         -$(MKDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1654         for file in rts/*.ali; do \
1655             $(INSTALL_DATA_DATE) $$file $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1656         done
1657         -$(INSTALL_DATA) rts/g-trasym$(objext) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1658         -cd rts; for file in *$(arext);do \
1659             $(INSTALL_DATA) $$file $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1660             $(RANLIB) $(RANLIB_FLAGS) $(DESTDIR)$(ADA_RTL_OBJ_DIR)/$$file; \
1661         done
1662         -$(foreach file, $(EXTRA_ADALIB_FILES), \
1663             $(INSTALL_DATA_DATE) rts/$(file) $(DESTDIR)$(ADA_RTL_OBJ_DIR) && \
1664         ) true
1665 #     Install the shared libraries, if any, using $(INSTALL) instead
1666 #     of $(INSTALL_DATA). The latter may force a mode inappropriate
1667 #     for shared libraries on some targets, e.g. on HP-UX where the x
1668 #     permission is required.
1669         for file in gnat gnarl; do \
1670            if [ -f rts/lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) ]; then \
1671               $(INSTALL) rts/lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) \
1672                          $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1673            fi; \
1674            if [ -f rts/lib$${file}$(soext) ]; then \
1675               $(LN_S) lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) \
1676               $(DESTDIR)$(ADA_RTL_OBJ_DIR)/lib$${file}$(soext); \
1677            fi; \
1678         done
1679 # This copy must be done preserving the date on the original file.
1680         for file in rts/*.adb rts/*.ads; do \
1681             $(INSTALL_DATA_DATE) $$file $(DESTDIR)$(ADA_INCLUDE_DIR); \
1682         done
1683         cd $(DESTDIR)$(ADA_INCLUDE_DIR); $(CHMOD) a-wx *.adb
1684         cd $(DESTDIR)$(ADA_INCLUDE_DIR); $(CHMOD) a-wx *.ads
1685
1686 ../stamp-gnatlib2:
1687         $(RM) rts/s-*.ali
1688         $(RM) rts/s-*$(objext)
1689         $(RM) rts/a-*.ali
1690         $(RM) rts/a-*$(objext)
1691         $(RM) rts/*.ali
1692         $(RM) rts/*$(objext)
1693         $(RM) rts/*$(arext)
1694         $(RM) rts/*$(soext)
1695         touch ../stamp-gnatlib2
1696         $(RM) ../stamp-gnatlib
1697
1698 # NOTE: The $(foreach ...) commands assume ";" is the valid separator between
1699 #       successive target commands. Although the Gnu make documentation
1700 #       implies this is true on all systems, I suspect it may not be, So care
1701 #       has been taken to allow a sed script to look for ";)" and substitue
1702 #       for ";" the appropriate character in the range of lines below
1703 #       beginning with "GNULLI Begin" and ending with "GNULLI End"
1704
1705 # GNULLI Begin ###########################################################
1706
1707 ../stamp-gnatlib1: Makefile ../stamp-gnatlib2
1708         $(RMDIR) rts
1709         $(MKDIR) rts
1710         $(CHMOD) u+w rts
1711 # Copy target independent sources
1712         $(foreach f,$(ADA_INCLUDE_SRCS) $(LIBGNAT_SRCS), \
1713           $(LN_S) $(fsrcpfx)$(f) rts ;) true
1714 # Remove files to be replaced by target dependent sources
1715         $(RM) $(foreach PAIR,$(LIBGNAT_TARGET_PAIRS), \
1716                         rts/$(word 1,$(subst <, ,$(PAIR))))
1717         $(RM) rts/*-*-*.ads rts/*-*-*.adb
1718 # Copy new target dependent sources
1719         $(foreach PAIR,$(LIBGNAT_TARGET_PAIRS), \
1720                   $(LN_S) $(fsrcpfx)$(word 2,$(subst <, ,$(PAIR))) \
1721                         rts/$(word 1,$(subst <, ,$(PAIR)));)
1722         $(RM) ../stamp-gnatlib
1723         touch ../stamp-gnatlib1
1724
1725 # GNULLI End #############################################################
1726
1727 # Don't use semicolon separated shell commands that involve list expansions.
1728 # The semicolon triggers a call to DCL on VMS and DCL can't handle command
1729 # line lengths in excess of 256 characters.
1730 # Example: cd rts; ar rc libfoo.a $(LONG_LIST_OF_OBJS)
1731 # is guaranteed to overflow the buffer.
1732
1733 # ??? GCC_FOR_TARGET is supposed to be passed from the top level
1734 # Makefile, but this is not the case from e.g. libada, so provide a suitable
1735 # default
1736 GCC_FOR_TARGET=./xgcc -B./ $(FLAGS_FOR_TARGET)
1737
1738 gnatlib: ../stamp-gnatlib1 ../stamp-gnatlib2
1739         $(MAKE) -C rts \
1740                 CC="`echo \"$(GCC_FOR_TARGET)\" \
1741                 | sed -e 's^./xgcc^../../xgcc^' -e 's^-B./^-B../../^'`" \
1742                 INCLUDES="$(INCLUDES_FOR_SUBDIR) -I./../.." \
1743                 CFLAGS="$(GNATLIBCFLAGS_FOR_C)" \
1744                 srcdir=$(fsrcdir) \
1745                 -f ../Makefile $(LIBGNAT_OBJS)
1746         $(MAKE) -C rts \
1747                 CC="`echo \"$(GCC_FOR_TARGET)\" \
1748                 | sed -e 's^\./xgcc^../../xgcc^' -e 's^-B./^-B../../^'`" \
1749                 ADA_INCLUDES="" \
1750                 CFLAGS="$(GNATLIBCFLAGS)" \
1751                 ADAFLAGS="$(GNATLIBFLAGS)" \
1752                 srcdir=$(fsrcdir) \
1753                 -f ../Makefile \
1754                 $(GNATRTL_OBJS)
1755         $(RM) rts/libgnat$(arext) rts/libgnarl$(arext)
1756         $(AR) $(AR_FLAGS) rts/libgnat$(arext) \
1757            $(addprefix rts/,$(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS))
1758         ifneq ($(PREFIX_OBJS),)
1759                 $(AR) $(AR_FLAGS) rts/libgccprefix$(arext) $(PREFIX_OBJS);
1760                 -$(RANLIB) rts/libgccprefix$(arext)
1761         endif
1762         -$(RANLIB) $(RANLIB_FLAGS) rts/libgnat$(arext)
1763         $(AR) $(AR_FLAGS) rts/libgnarl$(arext) \
1764            $(addprefix rts/,$(GNATRTL_TASKING_OBJS))
1765         -$(RANLIB) $(RANLIB_FLAGS) rts/libgnarl$(arext)
1766         ifeq ($(GMEM_LIB),gmemlib)
1767                 $(AR) $(AR_FLAGS) rts/libgmem$(arext) rts/memtrack.o
1768                 -$(RANLIB) $(RANLIB_FLAGS) rts/libgmem$(arext)
1769         endif
1770         $(CHMOD) a-wx rts/*.ali
1771         touch ../stamp-gnatlib
1772
1773 # Warning: this target assumes that LIBRARY_VERSION has been set correctly.
1774 gnatlib-shared-default:
1775         $(MAKE) $(FLAGS_TO_PASS) \
1776              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1777              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1778              THREAD_KIND="$(THREAD_KIND)" \
1779              gnatlib
1780         $(RM) rts/libgna*$(soext)
1781         cd rts; ../../xgcc -B../../ -shared $(GNATLIBCFLAGS) \
1782                 $(TARGET_LIBGCC2_CFLAGS) \
1783                 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1784                 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1785                 $(SO_OPTS)libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1786                 $(MISCLIB) -lm
1787         cd rts; ../../xgcc -B../../ -shared $(GNATLIBCFLAGS) \
1788                 $(TARGET_LIBGCC2_CFLAGS) \
1789                 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1790                 $(GNATRTL_TASKING_OBJS) \
1791                 $(SO_OPTS)libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1792                 $(THREADSLIB)
1793         cd rts; $(LN_S) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1794                 libgnat$(soext)
1795         cd rts; $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1796                 libgnarl$(soext)
1797
1798 gnatlib-shared-dual:
1799         $(MAKE) $(FLAGS_TO_PASS) \
1800              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1801              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1802              THREAD_KIND="$(THREAD_KIND)" \
1803              gnatlib-shared-default
1804         $(MV) rts/libgna*$(soext) .
1805         $(RM) ../stamp-gnatlib2
1806         $(MAKE) $(FLAGS_TO_PASS) \
1807              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1808              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1809              THREAD_KIND="$(THREAD_KIND)" \
1810              gnatlib
1811         $(MV) libgna*$(soext) rts
1812
1813 gnatlib-shared-dual-win32:
1814         $(MAKE) $(FLAGS_TO_PASS) \
1815              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1816              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1817              THREAD_KIND="$(THREAD_KIND)" \
1818              gnatlib-shared-win32
1819         $(MV) rts/libgna*$(soext) .
1820         $(RM) ../stamp-gnatlib2
1821         $(MAKE) $(FLAGS_TO_PASS) \
1822              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1823              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1824              THREAD_KIND="$(THREAD_KIND)" \
1825              gnatlib
1826         $(MV) libgna*$(soext) rts
1827
1828 # ??? we need to add the option to support auto-import of arrays/records to
1829 # the GNATLIBFLAGS when this will be supported by GNAT. At this point we will
1830 # use the gnatlib-shared-dual-win32 target to build the GNAT runtimes on
1831 # Windows.
1832 gnatlib-shared-win32:
1833         $(MAKE) $(FLAGS_TO_PASS) \
1834              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1835              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1836              THREAD_KIND="$(THREAD_KIND)" \
1837              gnatlib
1838         $(RM) rts/libgna*$(soext)
1839         cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1840                 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1841                 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1842                 $(SO_OPTS)libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) $(MISCLIB)
1843         cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1844                 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1845                 $(GNATRTL_TASKING_OBJS) \
1846                 $(SO_OPTS)libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1847                 $(THREADSLIB) -Wl,libgnat$(hyphen)$(LIBRARY_VERSION)$(soext)
1848
1849 gnatlib-shared-darwin:
1850         $(MAKE) $(FLAGS_TO_PASS) \
1851              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1852              GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS) \
1853                             -fno-common" \
1854              THREAD_KIND="$(THREAD_KIND)" \
1855              gnatlib
1856         $(RM) rts/libgnat$(soext) rts/libgnarl$(soext)
1857         cd rts; ../../xgcc -B../../ -dynamiclib $(TARGET_LIBGCC2_CFLAGS) \
1858                 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1859                 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1860                 $(SO_OPTS) \
1861                 $(MISCLIB) -lm
1862         cd rts; ../../xgcc -B../../ -dynamiclib $(TARGET_LIBGCC2_CFLAGS) \
1863                 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1864                 $(GNATRTL_TASKING_OBJS) \
1865                 $(SO_OPTS) \
1866                 $(THREADSLIB) -Wl,libgnat$(hyphen)$(LIBRARY_VERSION)$(soext)
1867         cd rts; $(LN_S) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1868                 libgnat$(soext)
1869         cd rts; $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1870                 libgnarl$(soext)
1871
1872 gnatlib-shared-vms:
1873         $(MAKE) $(FLAGS_TO_PASS) \
1874              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1875              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1876              THREAD_KIND="$(THREAD_KIND)" \
1877              gnatlib
1878         $(RM) rts/libgna*$(soext)
1879         cd rts && echo "case_sensitive=yes" > SYMVEC_$$$$.opt && \
1880         objdump --syms $(LIBGNAT_OBJS) $(GNATRTL_NONTASKING_OBJS) | \
1881         $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt && \
1882         echo "case_sensitive=NO" >> SYMVEC_$$$$.opt && \
1883         ../../xgcc -g -B../../ -nostartfiles -shared -shared-libgcc \
1884            -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) libgnat.a \
1885            sys\$$library:trace.exe \
1886            --for-linker=/noinform \
1887            --for-linker=SYMVEC_$$$$.opt \
1888            --for-linker=gsmatch=equal,$(GSMATCH_VERSION)
1889         cd rts && echo "case_sensitive=yes" > SYMVEC_$$$$.opt && \
1890         objdump --syms $(GNATRTL_TASKING_OBJS) | \
1891         $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt && \
1892         echo "case_sensitive=NO" >> SYMVEC_$$$$.opt && \
1893         ../../xgcc -g -B../../ -nostartfiles -shared -shared-libgcc \
1894            -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1895            libgnarl.a libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1896            sys\$$library:trace.exe \
1897            --for-linker=/noinform \
1898            --for-linker=SYMVEC_$$$$.opt \
1899            --for-linker=gsmatch=equal,$(GSMATCH_VERSION)
1900
1901 gnatlib-shared:
1902         $(MAKE) $(FLAGS_TO_PASS) \
1903              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1904              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1905              THREAD_KIND="$(THREAD_KIND)" \
1906              TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" \
1907              $(GNATLIB_SHARED)
1908
1909 gnatlib-sjlj: ../stamp-gnatlib1
1910         sed -e 's/ZCX_By_Default.*/ZCX_By_Default            : constant Boolean := False;/' rts/system.ads > rts/s.ads
1911         $(MV) rts/s.ads rts/system.ads
1912         $(MAKE) $(FLAGS_TO_PASS) \
1913              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1914              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1915              THREAD_KIND="$(THREAD_KIND)" \
1916              TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" gnatlib
1917
1918 gnatlib-zcx: ../stamp-gnatlib1
1919         sed -e 's/ZCX_By_Default.*/ZCX_By_Default            : constant Boolean := True;/' rts/system.ads > rts/s.ads
1920         $(MV) rts/s.ads rts/system.ads
1921         $(MAKE) $(FLAGS_TO_PASS) \
1922              GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1923              GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1924              THREAD_KIND="$(THREAD_KIND)" \
1925              TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" gnatlib
1926
1927 # .s files for cross-building
1928 gnat-cross: force
1929         make $(GNAT1_ADA_OBJS) CC="gcc -B../stage1/" CFLAGS="-S -gnatp"
1930
1931 # Compiling object files from source files.
1932
1933 # Note that dependencies on obstack.h are not written
1934 # because that file is not part of GCC.
1935 # Dependencies on gvarargs.h are not written
1936 # because all that file does, when not compiling with GCC,
1937 # is include the system varargs.h.
1938
1939 b_gnatl.c : $(GNATLINK_OBJS)
1940         $(GNATBIND) -C $(ADA_INCLUDES) -o b_gnatl.c gnatlink.ali
1941 b_gnatl.o : b_gnatl.c
1942
1943 b_gnatm.c : $(GNATMAKE_OBJS)
1944         $(GNATBIND) -C $(ADA_INCLUDES) -o b_gnatm.c gnatmake.ali
1945 b_gnatm.o : b_gnatm.c
1946
1947 ADA_INCLUDE_DIR = $(libsubdir)/adainclude
1948 ADA_RTL_OBJ_DIR = $(libsubdir)/adalib
1949
1950 # force no sibling call optimization on s-traceb.o so the number of stack
1951 # frames to be skipped when computing a call chain is not modified by
1952 # optimization. However we can do that only when building the runtime
1953 # (not the compiler) because the -fno-optimize-sibling-calls exists
1954 # only in GCC 3.
1955
1956 ifneq (,$(findstring xgcc,$(CC)))
1957 NO_SIBLING_ADAFLAGS=-fno-optimize-sibling-calls
1958 else
1959 NO_SIBLING_ADAFLAGS=
1960 endif
1961
1962 s-traceb.o  : s-traceb.adb
1963         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) \
1964               $(NO_SIBLING_ADAFLAGS) $(ADA_INCLUDES) \
1965       $< $(OUTPUT_OPTION)
1966
1967 # force debugging information on s-tasdeb.o so that it is always
1968 # possible to set conditional breakpoints on tasks.
1969
1970 s-tasdeb.o  : s-tasdeb.adb s-tasdeb.ads
1971         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O0 $(ADA_INCLUDES) \
1972               $< $(OUTPUT_OPTION)
1973
1974 # force debugging information on a-except.o so that it is always
1975 # possible to set conditional breakpoints on exceptions.
1976 # use -O1 otherwise gdb isn't able to get a full backtrace on mips targets.
1977
1978 a-except.o  : a-except.adb a-except.ads
1979         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O1 -fno-inline \
1980               $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
1981
1982 # force debugging information on s-assert.o so that it is always
1983 # possible to set breakpoint on assert failures.
1984
1985 s-assert.o  : s-assert.adb s-assert.ads a-except.ads
1986         $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O2 $(ADA_INCLUDES) \
1987               $< $(OUTPUT_OPTION)
1988
1989 adadecode.o : adadecode.c adadecode.h
1990 aux-io.o  : aux-io.c
1991 argv.o    : argv.c
1992 cal.o     : cal.c
1993 deftarg.o  : deftarg.c
1994 errno.o   : errno.c
1995 exit.o    : raise.h exit.c
1996 expect.o  : expect.c
1997 final.o   : raise.h final.c
1998 gmem.o    : gmem.c
1999 link.o    : link.c
2000 mkdir.o   : mkdir.c
2001 socket.o  : socket.c gsocket.h
2002 sysdep.o  : sysdep.c
2003
2004 gen-soccon: gen-soccon.c gsocket.h
2005         $(CC) $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2006                 $(ALL_CPPFLAGS) $(INCLUDES) -DTARGET=\"$(target_alias)\" \
2007                 $< $(OUTPUT_OPTION)
2008
2009 cio.o     : cio.c
2010         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2011                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2012
2013 init.o    : init.c ada.h types.h raise.h
2014         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2015                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2016
2017 # No optimization to compile this file as optimizations (-O1 or above) breaks
2018 # the SEH handling on Windows. The reasons are not clear.
2019 seh_init.o : seh_init.c raise.h
2020         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) -O0 \
2021                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2022
2023 raise.o   : raise.c raise.h
2024         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2025                  $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2026
2027 # Need to keep the frame pointer in this file to pop the stack properly on
2028 # some targets.
2029 tracebak.o  : tracebak.c tb-alvms.c tb-alvxw.c
2030         $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2031               -fno-omit-frame-pointer $< $(OUTPUT_OPTION)
2032
2033 # In GNU Make, ignore whether `stage*' exists.
2034 .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
2035 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2036
2037 force:
2038
2039 # Gnatlbr, Vms_help, and Gnat.hlp are only used on VMS
2040
2041 ../../gnatlbr$(exeext): ../../prefix.o
2042         $(GNATMAKE) -c $(ADA_INCLUDES) gnatlbr --GCC="$(CC) $(ALL_ADAFLAGS)"
2043         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatlbr
2044         $(GNATLINK) -v gnatlbr -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
2045
2046 ../../vms_help$(exeext):
2047         $(GNATMAKE) -c $(ADA_INCLUDES) vms_help --GCC="$(CC) $(ALL_ADAFLAGS)"
2048         $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) vms_help
2049         $(GNATLINK) -v vms_help -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
2050
2051 ../../gnat.hlp: ../../vms_help$(exeext)
2052         ../../vms_help$(exeext) $(fsrcdir)/gnat.help_in \
2053                                 $(fsrcdir)/vms_data.ads ../../gnat.hlp