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