Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / ada / Makefile.in
blob1e6e5350f3ddc9d973bc2804e2851348d49e3838
1 # Makefile for GNU Ada Compiler (GNAT).
2 # Copyright (C) 1994-2005 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 SYMDEPS = $(LIBINTL_DEP)
137 OUTPUT_OPTION = @OUTPUT_OPTION@
139 objext = .o
140 exeext =
141 arext = .a
142 soext = .so
143 shext =
144 hyphen = -
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.
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)
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.
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 = .
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`
174 # Directory where sources are, from where we are.
175 srcdir = @srcdir@
176 VPATH = $(srcdir)
178 fsrcdir := $(shell cd $(srcdir);${PWD_COMMAND})
179 fsrcpfx := $(shell cd $(srcdir);${PWD_COMMAND})/
180 fcurdir := $(shell ${PWD_COMMAND})
181 fcurpfx := $(shell ${PWD_COMMAND})/
183 # Top build directory, relative to here.
184 top_builddir = ../..
186 # Internationalization library.
187 LIBINTL = @LIBINTL@
188 LIBINTL_DEP = @LIBINTL_DEP@
190 # Any system libraries needed just for GNAT.
191 SYSLIBS = @GNAT_LIBEXC@
193 # List of extra object files linked in with various programs.
194 EXTRA_GNATTOOLS_OBJS = ../../prefix.o ../../version.o
196 # List extra gnattools
197 EXTRA_GNATTOOLS =
199 # List of target dependent sources, overridden below as necessary
200 TARGET_ADA_SRCS =
202 # Type of tools build we are doing; default is not compiling tools.
203 TOOLSCASE =
205 # End of variables for you to override.
207 all: all.indirect
209 # This tells GNU Make version 3 not to put all variables in the environment.
210 .NOEXPORT:
212 # tmake_file and xmake_file expand to lists with entries of the form
213 # $(srcdir)/config/... but here $(srcdir) is the ada subdirectory so we
214 # need to adjust the paths. There can't be spaces in the subst arguments
215 # or we get spurious spaces in the actual list of files to include.
217 # target overrides
218 ifneq ($(tmake_file),)
219 include $(subst /config,/../config,$(tmake_file))
220 endif
222 # host overrides
223 ifneq ($(xmake_file),)
224 include $(subst /config,/../config,$(xmake_file))
225 endif
227 # Now figure out from those variables how to compile and link.
229 all.indirect: Makefile ../gnat1$(exeext)
231 # IN_GCC distinguishes between code compiled into GCC itself and other
232 # programs built during a bootstrap.
233 # autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
234 INTERNAL_CFLAGS = @CROSS@ -DIN_GCC
236 # This is the variable actually used when we compile.
237 LOOSE_CFLAGS = `echo $(CFLAGS) $(WARN2_CFLAGS)|sed -e 's/-pedantic//g' -e 's/-Wtraditional//g'`
238 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_CFLAGS) \
239 $(XCFLAGS)
241 # Likewise.
242 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
244 # This is where we get libiberty.a from.
245 LIBIBERTY = ../../libiberty/libiberty.a
247 # How to link with both our special library facilities
248 # and the system's installed libraries.
249 LIBS = $(LIBINTL) $(LIBIBERTY) $(SYSLIBS)
250 LIBDEPS = $(LIBINTL_DEP) $(LIBIBERTY)
251 TOOLS_LIBS = $(LIBGNAT) $(EXTRA_GNATTOOLS_OBJS) link.o ../../../libiberty/libiberty.a $(SYSLIBS)
253 # Specify the directories to be searched for header files.
254 # Both . and srcdir are used, in that order,
255 # so that tm.h and config.h will be found in the compilation
256 # subdirectory rather than in the source directory.
257 INCLUDES = -I- -I. -I.. -I$(srcdir) -I$(srcdir)/.. -I$(srcdir)/../config \
258 -I$(srcdir)/../../include
260 ADA_INCLUDES = -I- -I. -I$(srcdir)
262 INCLUDES_FOR_SUBDIR = -I. -I.. -I../.. -I$(fsrcdir) -I$(fsrcdir)/../config \
263 -I$(fsrcdir)/../../include -I$(fsrcdir)/..
264 ADA_INCLUDES_FOR_SUBDIR = -I. -I$(fsrcdir)
266 # Avoid a lot of time thinking about remaking Makefile.in and *.def.
267 .SUFFIXES: .in .def
269 # Say how to compile Ada programs.
270 .SUFFIXES: .ada .adb .ads .asm
272 # Always use -I$(srcdir)/config when compiling.
273 .asm.o:
274 $(CC) -c -x assembler $< $(OUTPUT_OPTION)
276 .c.o:
277 $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< \
278 $(OUTPUT_OPTION)
280 .adb.o:
281 $(CC) -c $(ALL_ADAFLAGS) $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
283 .ads.o:
284 $(CC) -c $(ALL_ADAFLAGS) $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
286 # how to regenerate this file
287 Makefile: ../config.status $(srcdir)/Makefile.in $(srcdir)/../version.c
288 cd ..; \
289 LANGUAGES="$(CONFIG_LANGUAGES)" \
290 CONFIG_HEADERS= \
291 CONFIG_FILES=ada/Makefile $(SHELL) config.status
293 # This tells GNU make version 3 not to export all the variables
294 # defined in this file into the environment.
295 .NOEXPORT:
297 # Lists of files for various purposes.
299 GNATLINK_OBJS = gnatlink.o \
300 a-except.o ali.o alloc.o butil.o casing.o csets.o debug.o fmap.o fname.o gnatvsn.o \
301 hostparm.o indepsw.o interfac.o i-c.o i-cstrin.o namet.o opt.o osint.o output.o rident.o \
302 s-exctab.o s-secsta.o s-stalib.o s-stoele.o sdefault.o stylesw.o switch.o system.o \
303 table.o tree_io.o types.o validsw.o widechar.o
305 GNATMAKE_OBJS = a-except.o ctrl_c.o ali.o ali-util.o s-casuti.o \
306 alloc.o atree.o binderr.o butil.o casing.o csets.o debug.o elists.o einfo.o\
307 erroutc.o errutil.o err_vars.o fmap.o fname.o fname-uf.o fname-sf.o \
308 gnatmake.o gnatvsn.o hostparm.o interfac.o i-c.o i-cstrin.o krunch.o lib.o \
309 make.o makeusg.o makeutl.o mlib.o mlib-fil.o mlib-prj.o mlib-tgt.o mlib-utl.o \
310 namet.o nlists.o opt.o osint.o osint-m.o output.o \
311 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 \
312 prj-pars.o prj-part.o prj-proc.o prj-strt.o prj-tree.o prj-util.o \
313 rident.o s-exctab.o s-secsta.o s-stalib.o s-stoele.o \
314 scans.o scng.o sdefault.o sfn_scan.o s-purexc.o s-htable.o \
315 sinfo.o sinput.o sinput-c.o sinput-p.o \
316 snames.o stand.o stringt.o styleg.o stylesw.o system.o validsw.o switch.o switch-m.o \
317 table.o targparm.o tempdir.o tree_io.o types.o \
318 uintp.o uname.o urealp.o usage.o widechar.o \
319 $(EXTRA_GNATMAKE_OBJS)
321 # Convert the target variable into a space separated list of architecture,
322 # manufacturer, and operating system and assign each of those to its own
323 # variable.
325 host:=$(subst -, ,$(host_canonical))
326 targ:=$(subst -, ,$(target))
327 arch:=$(word 1,$(targ))
328 ifeq ($(words $(targ)),2)
329 manu:=
330 osys:=$(word 2,$(targ))
331 else
332 manu:=$(word 2,$(targ))
333 osys:=$(word 3,$(targ))
334 endif
336 # LIBGNAT_TARGET_PAIRS is a list of pairs of filenames.
337 # The members of each pair must be separated by a '<' and no whitespace.
338 # Each pair must be separated by some amount of whitespace from the following
339 # pair.
341 # Non-tasking case:
343 LIBGNAT_TARGET_PAIRS = \
344 a-intnam.ads<a-intnam-dummy.ads \
345 s-inmaop.adb<s-inmaop-dummy.adb \
346 s-intman.adb<s-intman-dummy.adb \
347 s-osinte.ads<s-osinte-dummy.ads \
348 s-osprim.adb<s-osprim-posix.adb \
349 s-taprop.adb<s-taprop-dummy.adb \
350 s-taspri.ads<s-taspri-dummy.ads
352 # Default shared object option. Note that we rely on the fact that the "soname"
353 # option will always be present and last in this flag, so that we can have
354 # $(SO_OPTS)libgnat-x.xx
356 SO_OPTS = -Wl,-soname,
358 # Default gnatlib-shared target.
359 # By default, equivalent to gnatlib.
360 # Set to gnatlib-shared-default, gnatlib-shared-dual, or a platform specific
361 # target when supported.
362 GNATLIB_SHARED = gnatlib
364 # default value for gnatmake's target dependent file
365 MLIB_TGT = mlib-tgt
367 # By default, do not distribute prefix.o (in libgccprefix), since it is only
368 # needed by external GNAT tools such as gnatdist and Glide.
369 # Override this variable on native platforms when needed.
370 PREFIX_OBJS =
372 # To avoid duplicate code, use this variable to set PREFIX_OBJS when needed:
373 PREFIX_REAL_OBJS = ../prefix.o \
374 ../../libiberty/concat.o \
375 ../../libiberty/xmalloc.o \
376 ../../libiberty/xstrdup.o \
377 ../../libiberty/xexit.o
379 LIB_VERSION = $(strip $(shell grep ' Library_Version :' $(fsrcpfx)gnatvsn.ads | sed -e 's/.*"\(.*\)".*/\1/'))
381 # $(filter-out PATTERN...,TEXT) removes all PATTERN words from TEXT.
382 # $(strip STRING) removes leading and trailing spaces from STRING.
383 # If what's left is null then it's a match.
385 ifeq ($(strip $(filter-out %86 os2 OS2 os2_emx,$(arch) $(osys))),)
386 LIBGNAT_TARGET_PAIRS = \
387 a-excpol.adb<a-excpol-abort.adb \
388 a-intnam.ads<a-intnam-dummy.ads \
389 a-numaux.adb<a-numaux-x86.adb \
390 a-numaux.ads<a-numaux-x86.ads \
391 s-inmaop.adb<s-inmaop-dummy.adb \
392 s-interr.adb<s-interr-dummy.adb \
393 s-intman.adb<s-intman-dummy.adb \
394 s-mastop.adb<s-mastop-x86.adb \
395 s-osinte.adb<s-osinte-os2.adb \
396 s-osinte.ads<s-osinte-os2.ads \
397 s-osprim.adb<s-osprim-os2.adb \
398 s-parame.adb<s-parame-os2.adb \
399 system.ads<system-os2.ads \
400 s-taprop.adb<s-taprop-os2.adb \
401 s-taspri.ads<s-taspri-os2.ads
403 EXTRA_GNATRTL_NONTASKING_OBJS = \
404 i-os2err.o \
405 i-os2lib.o \
406 i-os2syn.o \
407 i-os2thr.o
408 endif
410 ifeq ($(strip $(filter-out %86 interix%,$(arch) $(osys))),)
411 LIBGNAT_TARGET_PAIRS = \
412 a-excpol.adb<a-excpol-interix.adb \
413 a-intnam.ads<a-intnam-interix.ads \
414 a-numaux.adb<a-numaux-x86.adb \
415 a-numaux.ads<a-numaux-x86.ads \
416 g-soccon.ads<g-soccon-interix.ads \
417 s-inmaop.adb<s-inmaop-posix.adb \
418 s-intman.adb<s-intman-posix.adb \
419 s-mastop.adb<s-mastop-x86.adb \
420 s-osinte.adb<s-osinte-fsu.adb \
421 s-osinte.ads<s-osinte-interix.ads \
422 s-osprim.adb<s-osprim-unix.adb \
423 s-taprop.adb<s-taprop-posix.adb \
424 system.ads<system-interix.ads \
425 s-taspri.ads<s-taspri-posix.ads \
426 s-tpopsp.adb<s-tpopsp-posix.adb
428 THREADSLIB = -lgthreads -lmalloc
429 PREFIX_OBJS=$(PREFIX_REAL_OBJS)
430 endif
432 # sysv5uw is SCO UnixWare 7
433 ifeq ($(strip $(filter-out %86 sysv5uw%,$(arch) $(osys))),)
434 LIBGNAT_TARGET_PAIRS = \
435 a-excpol.adb<a-excpol-abort.adb \
436 a-intnam.ads<a-intnam-unixware.ads \
437 a-numaux.adb<a-numaux-x86.adb \
438 a-numaux.ads<a-numaux-x86.ads \
439 s-inmaop.adb<s-inmaop-posix.adb \
440 s-intman.adb<s-intman-posix.adb \
441 s-mastop.adb<s-mastop-x86.adb \
442 s-osinte.ads<s-osinte-unixware.ads \
443 s-osinte.adb<s-osinte-unixware.adb \
444 s-osprim.adb<s-osprim-unix.adb \
445 s-taprop.adb<s-taprop-posix.adb \
446 s-taspri.ads<s-taspri-posix.ads \
447 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
448 system.ads<system-unixware.ads \
449 g-soccon.ads<g-soccon-unixware.ads \
450 g-soliop.ads<g-soliop-unixware.ads
452 THREADSLIB = -lthread
453 PREFIX_OBJS=$(PREFIX_REAL_OBJS)
454 SO_OPTS = -Wl,-h,
455 GNATLIB_SHARED = gnatlib-shared-dual
456 LIBRARY_VERSION := $(LIB_VERSION)
457 endif
459 ifeq ($(strip $(filter-out alpha% dec vx%,$(targ))),)
460 LIBGNAT_TARGET_PAIRS = \
461 a-sytaco.ads<a-sytaco-vxworks.ads \
462 a-sytaco.adb<a-sytaco-vxworks.adb \
463 a-intnam.ads<a-intnam-vxworks.ads \
464 a-numaux.ads<a-numaux-vxworks.ads \
465 s-inmaop.adb<s-inmaop-posix.adb \
466 s-interr.adb<s-interr-vxworks.adb \
467 s-intman.ads<s-intman-vxworks.ads \
468 s-intman.adb<s-intman-vxworks.adb \
469 s-osinte.adb<s-osinte-vxworks.adb \
470 s-osinte.ads<s-osinte-vxworks.ads \
471 s-osprim.adb<s-osprim-vxworks.adb \
472 s-parame.ads<s-parame-vxworks.ads \
473 s-stchop.adb<s-stchop-vxworks.adb \
474 s-taprop.adb<s-taprop-vxworks.adb \
475 s-tpopsp.adb<s-tpopsp-vxworks.adb \
476 s-taspri.ads<s-taspri-vxworks.ads \
477 s-vxwork.ads<s-vxwork-alpha.ads \
478 g-soccon.ads<g-soccon-vxworks.ads \
479 g-socthi.ads<g-socthi-vxworks.ads \
480 g-socthi.adb<g-socthi-vxworks.adb \
481 system.ads<system-vxworks-alpha.ads
483 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
484 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
485 endif
487 ifeq ($(strip $(filter-out m68k% wrs vx%,$(targ))),)
488 LIBGNAT_TARGET_PAIRS = \
489 a-sytaco.ads<a-sytaco-vxworks.ads \
490 a-sytaco.adb<a-sytaco-vxworks.adb \
491 a-intnam.ads<a-intnam-vxworks.ads \
492 a-numaux.ads<a-numaux-vxworks.ads \
493 s-inmaop.adb<s-inmaop-posix.adb \
494 s-interr.adb<s-interr-vxworks.adb \
495 s-intman.ads<s-intman-vxworks.ads \
496 s-intman.adb<s-intman-vxworks.adb \
497 s-osinte.adb<s-osinte-vxworks.adb \
498 s-osinte.ads<s-osinte-vxworks.ads \
499 s-osprim.adb<s-osprim-vxworks.adb \
500 s-parame.ads<s-parame-vxworks.ads \
501 s-stchop.adb<s-stchop-vxworks.adb \
502 s-taprop.adb<s-taprop-vxworks.adb \
503 s-taspri.ads<s-taspri-vxworks.ads \
504 s-tpopsp.adb<s-tpopsp-vxworks.adb \
505 s-vxwork.ads<s-vxwork-m68k.ads \
506 g-soccon.ads<g-soccon-vxworks.ads \
507 g-socthi.ads<g-socthi-vxworks.ads \
508 g-socthi.adb<g-socthi-vxworks.adb \
509 system.ads<system-vxworks-m68k.ads
511 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
513 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
514 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
516 ifeq ($(strip $(filter-out yes,$(TRACE))),)
517 LIBGNAT_TARGET_PAIRS += \
518 s-traces.adb<s-traces-default.adb \
519 s-tratas.adb<s-tratas-default.adb \
520 s-trafor.adb<s-trafor-default.adb \
521 s-trafor.ads<s-trafor-default.ads \
522 s-tfsetr.adb<s-tfsetr-vxworks.adb
523 endif
524 endif
526 ifeq ($(strip $(filter-out powerpc% wrs vxworks,$(targ))),)
527 LIBGNAT_TARGET_PAIRS = \
528 a-sytaco.ads<a-sytaco-vxworks.ads \
529 a-sytaco.adb<a-sytaco-vxworks.adb \
530 a-intnam.ads<a-intnam-vxworks.ads \
531 a-numaux.ads<a-numaux-vxworks.ads \
532 s-inmaop.adb<s-inmaop-posix.adb \
533 s-interr.adb<s-interr-vxworks.adb \
534 s-intman.ads<s-intman-vxworks.ads \
535 s-intman.adb<s-intman-vxworks.adb \
536 s-osinte.adb<s-osinte-vxworks.adb \
537 s-osinte.ads<s-osinte-vxworks.ads \
538 s-osprim.adb<s-osprim-vxworks.adb \
539 s-parame.ads<s-parame-vxworks.ads \
540 s-stchop.adb<s-stchop-vxworks.adb \
541 s-taprop.adb<s-taprop-vxworks.adb \
542 s-taspri.ads<s-taspri-vxworks.ads \
543 s-tpopsp.adb<s-tpopsp-vxworks.adb \
544 s-vxwork.ads<s-vxwork-ppc.ads \
545 g-soccon.ads<g-soccon-vxworks.ads \
546 g-socthi.ads<g-socthi-vxworks.ads \
547 g-socthi.adb<g-socthi-vxworks.adb \
548 system.ads<system-vxworks-ppc.ads
550 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
552 ifeq ($(strip $(filter-out yes,$(TRACE))),)
553 LIBGNAT_TARGET_PAIRS += \
554 s-traces.adb<s-traces-default.adb \
555 s-trafor.adb<s-trafor-default.adb \
556 s-trafor.ads<s-trafor-default.ads \
557 s-tratas.adb<s-tratas-default.adb \
558 s-tfsetr.adb<s-tfsetr-vxworks.adb
559 endif
561 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o s-vxwexc.o
562 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
563 endif
565 ifeq ($(strip $(filter-out sparc% wrs vx%,$(targ))),)
566 LIBGNAT_TARGET_PAIRS = \
567 a-sytaco.ads<a-sytaco-vxworks.ads \
568 a-sytaco.adb<a-sytaco-vxworks.adb \
569 a-intnam.ads<a-intnam-vxworks.ads \
570 a-numaux.ads<a-numaux-vxworks.ads \
571 s-inmaop.adb<s-inmaop-posix.adb \
572 s-interr.adb<s-interr-vxworks.adb \
573 s-intman.ads<s-intman-vxworks.ads \
574 s-intman.adb<s-intman-vxworks.adb \
575 s-osinte.adb<s-osinte-vxworks.adb \
576 s-osinte.ads<s-osinte-vxworks.ads \
577 s-osprim.adb<s-osprim-vxworks.adb \
578 s-parame.ads<s-parame-vxworks.ads \
579 s-stchop.adb<s-stchop-vxworks.adb \
580 s-taprop.adb<s-taprop-vxworks.adb \
581 s-taspri.ads<s-taspri-vxworks.ads \
582 s-tpopsp.adb<s-tpopsp-vxworks.adb \
583 s-vxwork.ads<s-vxwork-sparcv9.ads \
584 g-soccon.ads<g-soccon-vxworks.ads \
585 g-socthi.ads<g-socthi-vxworks.ads \
586 g-socthi.adb<g-socthi-vxworks.adb \
587 system.ads<system-vxworks-sparcv9.ads \
589 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
591 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
592 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
593 endif
595 ifeq ($(strip $(filter-out %86 wrs vxworks,$(targ))),)
596 LIBGNAT_TARGET_PAIRS = \
597 a-sytaco.ads<a-sytaco-vxworks.ads \
598 a-sytaco.adb<a-sytaco-vxworks.adb \
599 a-intnam.ads<a-intnam-vxworks.ads \
600 i-vxwork.ads<i-vxwork-x86.ads \
601 s-inmaop.adb<s-inmaop-posix.adb \
602 s-interr.adb<s-interr-vxworks.adb \
603 s-intman.ads<s-intman-vxworks.ads \
604 s-intman.adb<s-intman-vxworks.adb \
605 a-numaux.adb<a-numaux-x86.adb \
606 a-numaux.ads<a-numaux-x86.ads \
607 s-osinte.adb<s-osinte-vxworks.adb \
608 s-osinte.ads<s-osinte-vxworks.ads \
609 s-osprim.adb<s-osprim-vxworks.adb \
610 s-parame.ads<s-parame-vxworks.ads \
611 s-stchop.adb<s-stchop-vxworks.adb \
612 s-taprop.adb<s-taprop-vxworks.adb \
613 s-taspri.ads<s-taspri-vxworks.ads \
614 s-tpopsp.adb<s-tpopsp-vxworks.adb \
615 s-vxwork.ads<s-vxwork-x86.ads \
616 g-soccon.ads<g-soccon-vxworks.ads \
617 g-socthi.ads<g-socthi-vxworks.ads \
618 g-socthi.adb<g-socthi-vxworks.adb \
619 system.ads<system-vxworks-x86.ads
621 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
623 ifeq ($(strip $(filter-out yes,$(TRACE))),)
624 LIBGNAT_TARGET_PAIRS += \
625 s-traces.adb<s-traces-default.adb \
626 s-trafor.adb<s-trafor-default.adb \
627 s-trafor.ads<s-trafor-default.ads \
628 s-tratas.adb<s-tratas-default.adb \
629 s-tfsetr.adb<s-tfsetr-vxworks.adb
630 endif
632 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
633 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
634 endif
636 ifeq ($(strip $(filter-out xscale% coff wrs vx%,$(targ))),)
637 LIBGNAT_TARGET_PAIRS = \
638 a-sytaco.ads<a-sytaco-vxworks.ads \
639 a-sytaco.adb<a-sytaco-vxworks.adb \
640 a-intnam.ads<a-intnam-vxworks.ads \
641 a-numaux.ads<a-numaux-vxworks.ads \
642 s-inmaop.adb<s-inmaop-posix.adb \
643 s-interr.adb<s-interr-vxworks.adb \
644 s-intman.ads<s-intman-vxworks.ads \
645 s-intman.adb<s-intman-vxworks.adb \
646 s-osinte.adb<s-osinte-vxworks.adb \
647 s-osinte.ads<s-osinte-vxworks.ads \
648 s-osprim.adb<s-osprim-vxworks.adb \
649 s-parame.ads<s-parame-vxworks.ads \
650 s-stchop.adb<s-stchop-vxworks.adb \
651 s-taprop.adb<s-taprop-vxworks.adb \
652 s-taspri.ads<s-taspri-vxworks.ads \
653 s-tpopsp.adb<s-tpopsp-vxworks.adb \
654 s-vxwork.ads<s-vxwork-xscale.ads \
655 g-soccon.ads<g-soccon-vxworks.ads \
656 g-socthi.ads<g-socthi-vxworks.ads \
657 g-socthi.adb<g-socthi-vxworks.adb \
658 system.ads<system-elf-sparc.ads
660 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
662 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
663 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
664 endif
666 ifeq ($(strip $(filter-out mips% wrs vx%,$(targ))),)
667 LIBGNAT_TARGET_PAIRS = \
668 a-sytaco.ads<a-sytaco-vxworks.ads \
669 a-sytaco.adb<a-sytaco-vxworks.adb \
670 a-intnam.ads<a-intnam-vxworks.ads \
671 a-numaux.ads<a-numaux-vxworks.ads \
672 s-inmaop.adb<s-inmaop-posix.adb \
673 s-interr.adb<s-interr-vxworks.adb \
674 s-intman.ads<s-intman-vxworks.ads \
675 s-intman.adb<s-intman-vxworks.adb \
676 s-osinte.adb<s-osinte-vxworks.adb \
677 s-osinte.ads<s-osinte-vxworks.ads \
678 s-osprim.adb<s-osprim-vxworks.adb \
679 s-parame.ads<s-parame-vxworks.ads \
680 s-stchop.adb<s-stchop-vxworks.adb \
681 s-taprop.adb<s-taprop-vxworks.adb \
682 s-taspri.ads<s-taspri-vxworks.ads \
683 s-tpopsp.adb<s-tpopsp-vxworks.adb \
684 s-vxwork.ads<s-vxwork-mips.ads \
685 g-soccon.ads<g-soccon-vxworks.ads \
686 g-socthi.ads<g-socthi-vxworks.ads \
687 g-socthi.adb<g-socthi-vxworks.adb \
688 system.ads<system-vxworks-mips.ads
690 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-vxworks.adb
692 EXTRA_GNATRTL_NONTASKING_OBJS=i-vxwork.o i-vxwoio.o
693 EXTRA_GNATRTL_TASKING_OBJS=s-vxwork.o
694 endif
696 ifeq ($(strip $(filter-out sparc sun solaris%,$(targ))),)
697 LIBGNAT_TARGET_PAIRS = \
698 a-intnam.ads<a-intnam-solaris.ads \
699 s-inmaop.adb<s-inmaop-posix.adb \
700 s-intman.adb<s-intman-solaris.adb \
701 s-osinte.adb<s-osinte-solaris.adb \
702 s-osinte.ads<s-osinte-solaris.ads \
703 s-osprim.adb<s-osprim-solaris.adb \
704 s-parame.adb<s-parame-solaris.adb \
705 s-taprop.adb<s-taprop-solaris.adb \
706 s-tasinf.adb<s-tasinf-solaris.adb \
707 s-tasinf.ads<s-tasinf-solaris.ads \
708 s-taspri.ads<s-taspri-solaris.ads \
709 s-tpopsp.adb<s-tpopsp-solaris.adb \
710 g-soccon.ads<g-soccon-solaris.ads \
711 g-soliop.ads<g-soliop-solaris.ads \
712 system.ads<system-solaris-sparc.ads
714 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-solaris.adb
716 THREADSLIB = -lposix4 -lthread
717 MISCLIB = -lposix4 -lnsl -lsocket
718 SO_OPTS = -Wl,-h,
719 GNATLIB_SHARED = gnatlib-shared-dual
720 GMEM_LIB = gmemlib
721 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
722 LIBRARY_VERSION := $(LIB_VERSION)
724 ifeq ($(strip $(filter-out fsu FSU,$(THREAD_KIND))),)
725 LIBGNAT_TARGET_PAIRS = \
726 a-intnam.ads<a-intnam-solaris.ads \
727 s-inmaop.adb<s-inmaop-posix.adb \
728 s-intman.adb<s-intman-solaris.adb \
729 s-osinte.adb<s-osinte-fsu.adb \
730 s-osinte.ads<s-osinte-solaris-fsu.ads \
731 s-osprim.adb<s-osprim-solaris.adb \
732 s-taprop.adb<s-taprop-posix.adb \
733 s-taspri.ads<s-taspri-posix.ads \
734 s-tpopsp.adb<s-tpopsp-posix.adb \
735 g-soccon.ads<g-soccon-solaris.ads \
736 g-soliop.ads<g-soliop-solaris.ads \
737 system.ads<system-solaris-sparc.ads
739 THREADSLIB = -lgthreads -lmalloc
740 endif
742 ifeq ($(strip $(filter-out pthread PTHREAD,$(THREAD_KIND))),)
743 LIBGNAT_TARGET_PAIRS = \
744 a-intnam.ads<a-intnam-solaris.ads \
745 s-inmaop.adb<s-inmaop-posix.adb \
746 s-intman.adb<s-intman-posix.adb \
747 s-osinte.adb<s-osinte-posix.adb \
748 s-osinte.ads<s-osinte-solaris-posix.ads \
749 s-osprim.adb<s-osprim-solaris.adb \
750 s-taprop.adb<s-taprop-posix.adb \
751 s-taspri.ads<s-taspri-posix.ads \
752 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
753 g-soccon.ads<g-soccon-solaris.ads \
754 g-soliop.ads<g-soliop-solaris.ads \
755 system.ads<system-solaris-sparc.ads
757 THREADSLIB = -lposix4 -lpthread
758 endif
760 ifeq ($(strip $(filter-out m64,$(THREAD_KIND))),)
761 LIBGNAT_TARGET_PAIRS = \
762 a-intnam.ads<a-intnam-solaris.ads \
763 s-inmaop.adb<s-inmaop-posix.adb \
764 s-intman.adb<s-intman-solaris.adb \
765 s-osinte.adb<s-osinte-solaris.adb \
766 s-osinte.ads<s-osinte-solaris.ads \
767 s-osprim.adb<s-osprim-solaris.adb \
768 s-parame.adb<s-parame-solaris.adb \
769 s-taprop.adb<s-taprop-solaris.adb \
770 s-tasinf.adb<s-tasinf-solaris.adb \
771 s-tasinf.ads<s-tasinf-solaris.ads \
772 s-taspri.ads<s-taspri-solaris.ads \
773 s-tpopsp.adb<s-tpopsp-solaris.adb \
774 g-soccon.ads<g-soccon-solaris.ads \
775 g-soliop.ads<g-soliop-solaris.ads \
776 system.ads<system-solaris-sparcv9.ads
777 endif
778 endif
780 ifeq ($(strip $(filter-out %86 solaris2%,$(arch) $(osys))),)
781 LIBGNAT_TARGET_PAIRS = \
782 a-numaux.adb<a-numaux-x86.adb \
783 a-numaux.ads<a-numaux-x86.ads \
784 a-intnam.ads<a-intnam-solaris.ads \
785 s-inmaop.adb<s-inmaop-posix.adb \
786 s-intman.adb<s-intman-solaris.adb \
787 s-mastop.adb<s-mastop-x86.adb \
788 s-osinte.adb<s-osinte-solaris.adb \
789 s-osinte.ads<s-osinte-solaris.ads \
790 s-osprim.adb<s-osprim-solaris.adb \
791 s-parame.adb<s-parame-solaris.adb \
792 s-taprop.adb<s-taprop-solaris.adb \
793 s-tasinf.adb<s-tasinf-solaris.adb \
794 s-tasinf.ads<s-tasinf-solaris.ads \
795 s-taspri.ads<s-taspri-solaris.ads \
796 s-tpopsp.adb<s-tpopsp-solaris.adb \
797 g-soccon.ads<g-soccon-solaris.ads \
798 g-soliop.ads<g-soliop-solaris.ads \
799 system.ads<system-solaris-x86.ads
801 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-solaris.adb
803 THREADSLIB = -lposix4 -lthread
804 MISCLIB = -lposix4 -lnsl -lsocket
805 SO_OPTS = -Wl,-h,
806 GNATLIB_SHARED = gnatlib-shared-dual
807 GMEM_LIB = gmemlib
808 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
809 LIBRARY_VERSION := $(LIB_VERSION)
810 endif
812 ifeq ($(strip $(filter-out %86 linux%,$(arch) $(osys))),)
813 LIBGNAT_TARGET_PAIRS = \
814 a-intnam.ads<a-intnam-linux.ads \
815 a-numaux.adb<a-numaux-x86.adb \
816 a-numaux.ads<a-numaux-x86.ads \
817 s-inmaop.adb<s-inmaop-posix.adb \
818 s-intman.adb<s-intman-posix.adb \
819 s-mastop.adb<s-mastop-x86.adb \
820 s-osinte.adb<s-osinte-posix.adb \
821 s-osinte.ads<s-osinte-linux.ads \
822 s-osprim.adb<s-osprim-posix.adb \
823 s-taprop.adb<s-taprop-linux.adb \
824 s-taspri.ads<s-taspri-linux.ads \
825 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
826 s-parame.adb<s-parame-linux.adb \
827 system.ads<system-linux-x86.ads
829 TOOLS_TARGET_PAIRS = \
830 mlib-tgt.adb<mlib-tgt-linux.adb \
831 indepsw.adb<indepsw-linux.adb
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 THREADSLIB= -lc_r
881 GMEM_LIB = gmemlib
882 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
883 LIBRARY_VERSION := $(LIB_VERSION)
884 endif
886 ifeq ($(strip $(filter-out s390% linux%,$(arch) $(osys))),)
887 ifeq ($(strip $(filter-out s390x,$(arch))),)
888 LIBGNAT_TARGET_PAIRS = \
889 a-intnam.ads<a-intnam-linux.ads \
890 s-inmaop.adb<s-inmaop-posix.adb \
891 s-intman.adb<s-intman-posix.adb \
892 s-osinte.adb<s-osinte-posix.adb \
893 s-osinte.ads<s-osinte-linux.ads \
894 s-osprim.adb<s-osprim-posix.adb \
895 s-taprop.adb<s-taprop-linux.adb \
896 s-taspri.ads<s-taspri-linux.ads \
897 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
898 s-parame.adb<s-parame-linux.adb \
899 system.ads<system-linux-s390x.ads
900 else
901 LIBGNAT_TARGET_PAIRS = \
902 a-intnam.ads<a-intnam-linux.ads \
903 s-inmaop.adb<s-inmaop-posix.adb \
904 s-intman.adb<s-intman-posix.adb \
905 s-osinte.adb<s-osinte-posix.adb \
906 s-osinte.ads<s-osinte-linux.ads \
907 s-osprim.adb<s-osprim-posix.adb \
908 s-taprop.adb<s-taprop-linux.adb \
909 s-taspri.ads<s-taspri-linux.ads \
910 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
911 s-parame.adb<s-parame-linux.adb \
912 system.ads<system-linux-s390.ads
913 endif
915 TOOLS_TARGET_PAIRS = \
916 mlib-tgt.adb<mlib-tgt-linux.adb
918 THREADSLIB = -lpthread
919 GNATLIB_SHARED = gnatlib-shared-dual
920 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
921 LIBRARY_VERSION := $(LIB_VERSION)
922 endif
924 ifeq ($(strip $(filter-out mips sgi irix%,$(targ))),)
925 ifeq ($(strip $(filter-out mips sgi irix6%,$(targ))),)
926 LIBGNAT_TARGET_PAIRS = \
927 a-intnam.ads<a-intnam-irix.ads \
928 s-inmaop.adb<s-inmaop-posix.adb \
929 s-intman.adb<s-intman-irix.adb \
930 s-mastop.adb<s-mastop-irix.adb \
931 s-osinte.adb<s-osinte-irix.adb \
932 s-osinte.ads<s-osinte-irix.ads \
933 s-osprim.adb<s-osprim-posix.adb \
934 s-proinf.adb<s-proinf-irix-athread.adb \
935 s-proinf.ads<s-proinf-irix-athread.ads \
936 s-taprop.adb<s-taprop-irix.adb \
937 s-tasinf.ads<s-tasinf-irix.ads \
938 s-taspri.ads<s-taspri-posix.ads \
939 s-tpopsp.adb<s-tpopsp-posix.adb \
940 s-traceb.adb<s-traceb-mastop.adb \
941 g-soccon.ads<g-soccon-irix.ads \
942 system.ads<system-irix-n32.ads
944 THREADSLIB = -lpthread
945 GNATLIB_SHARED = gnatlib-shared-default
947 else
948 LIBGNAT_TARGET_PAIRS = \
949 a-intnam.ads<a-intnam-irix.ads \
950 s-inmaop.adb<s-inmaop-dummy.adb \
951 s-interr.adb<s-interr-sigaction.adb \
952 s-intman.adb<s-intman-irix-athread.adb \
953 s-mastop.adb<s-mastop-irix.adb \
954 s-osinte.adb<s-osinte-irix.adb \
955 s-osinte.ads<s-osinte-irix-athread.ads \
956 s-osprim.adb<s-osprim-posix.adb \
957 s-proinf.adb<s-proinf-irix-athread.adb \
958 s-proinf.ads<s-proinf-irix-athread.ads \
959 s-taprop.adb<s-taprop-irix-athread.adb \
960 s-tasinf.adb<s-tasinf-irix-athread.adb \
961 s-tasinf.ads<s-tasinf-irix-athread.ads \
962 s-taspri.ads<s-taspri-posix.ads \
963 s-traceb.adb<s-traceb-mastop.adb \
964 g-soccon.ads<g-soccon-irix.ads \
965 system.ads<system-irix-o32.ads
966 endif
968 TOOLS_TARGET_PAIRS = mlib-tgt.adb<mlib-tgt-irix.adb
969 TGT_LIB = -lexc
970 MISCLIB = -lexc
971 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
972 LIBRARY_VERSION := $(LIB_VERSION)
973 endif
975 ifeq ($(strip $(filter-out hppa% hp hpux10%,$(targ))),)
976 LIBGNAT_TARGET_PAIRS = \
977 a-excpol.adb<a-excpol-abort.adb \
978 a-intnam.ads<a-intnam-hpux.ads \
979 s-inmaop.adb<s-inmaop-posix.adb \
980 s-interr.adb<s-interr-sigaction.adb \
981 s-intman.adb<s-intman-posix.adb \
982 s-osinte.adb<s-osinte-hpux-dce.adb \
983 s-osinte.ads<s-osinte-hpux-dce.ads \
984 s-parame.ads<s-parame-hpux.ads \
985 s-osprim.adb<s-osprim-posix.adb \
986 s-taprop.adb<s-taprop-hpux-dce.adb \
987 s-taspri.ads<s-taspri-hpux-dce.ads \
988 s-tpopsp.adb<s-tpopsp-posix.adb \
989 g-soccon.ads<g-soccon-hpux.ads \
990 system.ads<system-hpux.ads
992 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
993 endif
995 ifeq ($(strip $(filter-out hppa% hp hpux11%,$(targ))),)
996 LIBGNAT_TARGET_PAIRS = \
997 a-intnam.ads<a-intnam-hpux.ads \
998 s-inmaop.adb<s-inmaop-posix.adb \
999 s-intman.adb<s-intman-posix.adb \
1000 s-osinte.adb<s-osinte-posix.adb \
1001 s-osinte.ads<s-osinte-hpux.ads \
1002 s-parame.ads<s-parame-hpux.ads \
1003 s-osprim.adb<s-osprim-posix.adb \
1004 s-traceb.adb<s-traceb-hpux.adb \
1005 s-taprop.adb<s-taprop-posix.adb \
1006 s-taspri.ads<s-taspri-posix.ads \
1007 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1008 g-soccon.ads<g-soccon-hpux.ads \
1009 system.ads<system-hpux.ads
1011 TOOLS_TARGET_PAIRS = mlib-tgt.adb<mlib-tgt-hpux.adb
1012 TGT_LIB = /usr/lib/libcl.a
1013 THREADSLIB = -lpthread
1014 GMEM_LIB = gmemlib
1015 soext = .sl
1016 SO_OPTS = -Wl,+h,
1017 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1018 GNATLIB_SHARED = gnatlib-shared-dual
1019 LIBRARY_VERSION := $(LIB_VERSION)
1021 ifeq ($(strip $(filter-out dce DCE,$(THREAD_KIND))),)
1022 LIBGNAT_TARGET_PAIRS = \
1023 a-excpol.adb<a-excpol-abort.adb \
1024 a-intnam.ads<a-intnam-hpux.ads \
1025 s-inmaop.adb<s-inmaop-posix.adb \
1026 s-interr.adb<s-interr-sigaction.adb \
1027 s-intman.adb<s-intman-posix.adb \
1028 s-osinte.adb<s-osinte-hpux-dce.adb \
1029 s-osinte.ads<s-osinte-hpux-dce.ads \
1030 s-parame.ads<s-parame-hpux.ads \
1031 s-osprim.adb<s-osprim-posix.adb \
1032 s-taprop.adb<s-taprop-hpux-dce.adb \
1033 s-taspri.ads<s-taspri-hpux-dce.ads \
1034 s-tpopsp.adb<s-tpopsp-posix.adb \
1035 g-soccon.ads<g-soccon-hpux.ads \
1036 system.ads<system-hpux.ads
1038 TGT_LIB =
1039 THREADSLIB = -lcma
1040 endif
1041 endif
1043 ifeq ($(strip $(filter-out ibm aix%,$(manu) $(osys))),)
1044 LIBGNAT_TARGET_PAIRS = \
1045 a-intnam.ads<a-intnam-aix.ads \
1046 s-inmaop.adb<s-inmaop-posix.adb \
1047 s-intman.adb<s-intman-posix.adb \
1048 s-osinte.adb<s-osinte-aix.adb \
1049 s-osinte.ads<s-osinte-aix.ads \
1050 s-osprim.adb<s-osprim-posix.adb \
1051 s-taprop.adb<s-taprop-posix.adb \
1052 s-taspri.ads<s-taspri-posix.ads \
1053 s-tpopsp.adb<s-tpopsp-posix.adb \
1054 g-soccon.ads<g-soccon-aix.ads \
1055 system.ads<system-aix.ads
1057 THREADSLIB = -lpthreads
1058 PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1060 ifeq ($(strip $(filter-out fsu FSU,$(THREAD_KIND))),)
1061 LIBGNAT_TARGET_PAIRS = \
1062 a-intnam.ads<a-intnam-aix.ads \
1063 s-inmaop.adb<s-inmaop-posix.adb \
1064 s-intman.adb<s-intman-posix.adb \
1065 s-osinte.adb<s-osinte-fsu.adb \
1066 s-osinte.ads<s-osinte-aix-fsu.ads \
1067 s-osprim.adb<s-osprim-posix.adb \
1068 s-taprop.adb<s-taprop-posix.adb \
1069 s-taspri.ads<s-taspri-posix.ads \
1070 s-tpopsp.adb<s-tpopsp-posix.adb \
1071 g-soccon.ads<g-soccon-aix.ads \
1072 system.ads<system-aix.ads
1074 THREADSLIB = -lgthreads -lmalloc
1075 endif
1077 TOOLS_TARGET_PAIRS = \
1078 mlib-tgt.adb<mlib-tgt-aix.adb \
1079 indepsw.adb<indepsw-aix.adb
1081 GMEM_LIB = gmemlib
1082 endif
1084 ifeq ($(strip $(filter-out lynxos,$(osys))),)
1085 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-lynxos.adb
1087 ifeq ($(strip $(filter-out %86 lynxos,$(arch) $(osys))),)
1088 LIBGNAT_TARGET_PAIRS = \
1089 a-numaux.adb<a-numaux-x86.adb \
1090 a-numaux.ads<a-numaux-x86.ads \
1091 a-intnam.ads<a-intnam-lynxos.ads \
1092 s-mastop.adb<s-mastop-x86.adb \
1093 s-inmaop.adb<s-inmaop-posix.adb \
1094 s-intman.adb<s-intman-posix.adb \
1095 s-osinte.adb<s-osinte-lynxos.adb \
1096 s-osinte.ads<s-osinte-lynxos.ads \
1097 s-osprim.adb<s-osprim-posix.adb \
1098 s-taprop.adb<s-taprop-lynxos.adb \
1099 s-taspri.ads<s-taspri-lynxos.ads \
1100 s-tpopsp.adb<s-tpopsp-lynxos.adb \
1101 system.ads<system-lynxos-x86.ads
1103 PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1105 else
1106 LIBGNAT_TARGET_PAIRS = \
1107 a-intnam.ads<a-intnam-lynxos.ads \
1108 s-inmaop.adb<s-inmaop-posix.adb \
1109 s-intman.adb<s-intman-posix.adb \
1110 s-osinte.adb<s-osinte-lynxos-3.adb \
1111 s-osinte.ads<s-osinte-lynxos-3.ads \
1112 s-osprim.adb<s-osprim-posix.adb \
1113 s-taprop.adb<s-taprop-posix.adb \
1114 s-taspri.ads<s-taspri-posix.ads \
1115 s-tpopsp.adb<s-tpopsp-posix.adb \
1116 system.ads<system-lynxos-ppc.ads
1118 ifeq ($(strip $(filter-out pthread PTHREAD,$(THREAD_KIND))),)
1119 LIBGNAT_TARGET_PAIRS = \
1120 a-intnam.ads<a-intnam-lynxos.ads \
1121 s-inmaop.adb<s-inmaop-posix.adb \
1122 s-intman.adb<s-intman-posix.adb \
1123 s-osinte.adb<s-osinte-lynxos.adb \
1124 s-osinte.ads<s-osinte-lynxos.ads \
1125 s-osprim.adb<s-osprim-posix.adb \
1126 s-taprop.adb<s-taprop-lynxos.adb \
1127 s-taspri.ads<s-taspri-lynxos.ads \
1128 s-tpopsp.adb<s-tpopsp-lynxos.adb \
1129 system.ads<system-lynxos-ppc.ads
1130 endif
1131 endif
1132 endif
1134 ifeq ($(strip $(filter-out rtems%,$(osys))),)
1135 LIBGNAT_TARGET_PAIRS = \
1136 a-intnam.ads<a-intnam-rtems.ads \
1137 s-inmaop.adb<s-inmaop-posix.adb \
1138 s-intman.adb<s-intman-posix.adb \
1139 s-osinte.adb<s-osinte-rtems.adb \
1140 s-osinte.ads<s-osinte-rtems.ads \
1141 s-osprim.adb<s-osprim-posix.adb \
1142 s-parame.adb<s-parame-rtems.adb \
1143 s-taprop.adb<s-taprop-posix.adb \
1144 s-taspri.ads<s-taspri-posix.ads \
1145 s-tpopsp.adb<s-tpopsp-rtems.adb
1146 endif
1148 ifeq ($(strip $(filter-out alpha% dec osf%,$(targ))),)
1149 LIBGNAT_TARGET_PAIRS = \
1150 a-intnam.ads<a-intnam-tru64.ads \
1151 s-inmaop.adb<s-inmaop-posix.adb \
1152 s-intman.adb<s-intman-posix.adb \
1153 s-mastop.adb<s-mastop-tru64.adb \
1154 s-osinte.adb<s-osinte-tru64.adb \
1155 s-osinte.ads<s-osinte-tru64.ads \
1156 s-osprim.adb<s-osprim-unix.adb \
1157 s-taprop.adb<s-taprop-tru64.adb \
1158 s-tasinf.ads<s-tasinf-tru64.ads \
1159 s-taspri.ads<s-taspri-tru64.ads \
1160 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1161 s-traceb.adb<s-traceb-mastop.adb \
1162 g-soccon.ads<g-soccon-tru64.ads \
1163 system.ads<system-tru64.ads
1165 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-tru64.adb
1167 GMEM_LIB=gmemlib
1168 THREADSLIB = -lpthread -lmach -lexc -lrt
1169 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1170 GNATLIB_SHARED = gnatlib-shared-default
1171 LIBRARY_VERSION := $(LIB_VERSION)
1172 endif
1174 ifeq ($(strip $(filter-out alpha% ia64 dec hp vms% openvms% alphavms%,$(host))),)
1176 soext = .exe
1177 hyphen = _
1178 LN = cp -p
1179 LN_S = cp -p
1181 ifeq ($(strip $(filter-out ia64 hp vms% openvms%,$(targ))),)
1182 AR = iar
1183 endif
1185 .SUFFIXES: .sym
1187 .o.sym:
1188 @ gnu:[bin]vmssymvec $<
1189 endif
1191 ifeq ($(strip $(filter-out alpha% ia64 dec hp vms% openvms% alphavms%,$(targ))),)
1192 ifeq ($(strip $(filter-out ia64 hp vms% openvms%,$(targ))),)
1193 LIBGNAT_TARGET_PAIRS_AUX1 = \
1194 g-enblsp.adb<g-enblsp-vms-ia64.adb \
1195 s-auxdec.ads<s-auxdec-vms_64.ads \
1196 s-crtl.ads<s-crtl-vms.ads \
1197 s-osinte.adb<s-osinte-vms-ia64.adb \
1198 s-osinte.ads<s-osinte-vms-ia64.ads \
1199 system.ads<system-vms_64.ads
1200 else
1201 ifeq ($(strip $(filter-out alpha% dec vms% openvms% alphavms%,$(targ))),)
1202 LIBGNAT_TARGET_PAIRS_AUX1 = \
1203 g-enblsp.adb<g-enblsp-vms-alpha.adb \
1204 s-asthan.adb<s-asthan-vms-alpha.adb \
1205 s-crtl.ads<s-crtl-vms.ads \
1206 s-osinte.adb<s-osinte-vms.adb \
1207 s-osinte.ads<s-osinte-vms.ads \
1208 s-vaflop.adb<s-vaflop-vms-alpha.adb \
1209 system.ads<system-vms-zcx.ads
1210 endif
1211 endif
1212 ifeq ($(strip $(filter-out express EXPRESS,$(THREAD_KIND))),)
1213 LIBGNAT_TARGET_PAIRS_AUX2 = \
1214 s-parame.ads<s-parame-vms-restrict.ads
1215 else
1216 LIBGNAT_TARGET_PAIRS_AUX2 = \
1217 s-parame.ads<s-parame-vms.ads
1218 endif
1220 LIBGNAT_TARGET_PAIRS = \
1221 a-caldel.adb<a-caldel-vms.adb \
1222 a-calend.adb<a-calend-vms.adb \
1223 a-calend.ads<a-calend-vms.ads \
1224 a-dirval.adb<a-dirval-vms.adb \
1225 a-excpol.adb<a-excpol-abort.adb \
1226 a-intnam.ads<a-intnam-vms.ads \
1227 a-numaux.ads<a-numaux-vms.ads \
1228 g-expect.adb<g-expect-vms.adb \
1229 g-soccon.ads<g-soccon-vms.adb \
1230 g-socthi.ads<g-socthi-vms.ads \
1231 g-socthi.adb<g-socthi-vms.adb \
1232 g-trasym.adb<g-trasym-vms.adb \
1233 i-cstrea.adb<i-cstrea-vms.adb \
1234 i-cpp.adb<i-cpp-vms.adb \
1235 interfac.ads<interfac-vms.ads \
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-foreign.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 GMEM_LIB = gmemlib
1308 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1309 EXTRA_GNATTOOLS = ../../gnatdll$(exeext)
1310 EXTRA_GNATMAKE_OBJS = mdll.o mdll-utl.o mdll-fil.o
1311 EXTRA_GNATRTL_NONTASKING_OBJS = g-regist.o
1312 soext = .dll
1313 # ??? This will be replaced by gnatlib-shared-dual-win32 when GNAT auto-import
1314 # support for array/record will be done.
1315 GNATLIB_SHARED = gnatlib-shared-win32
1316 LIBRARY_VERSION := $(LIB_VERSION)
1317 endif
1319 ifeq ($(strip $(filter-out powerpc% linux%,$(arch) $(osys))),)
1320 LIBGNAT_TARGET_PAIRS = \
1321 a-intnam.ads<a-intnam-linux.ads \
1322 s-inmaop.adb<s-inmaop-posix.adb \
1323 s-intman.adb<s-intman-posix.adb \
1324 s-osinte.adb<s-osinte-posix.adb \
1325 s-osinte.ads<s-osinte-linux.ads \
1326 s-osprim.adb<s-osprim-posix.adb \
1327 s-taprop.adb<s-taprop-linux.adb \
1328 s-taspri.ads<s-taspri-linux.ads \
1329 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1330 s-parame.adb<s-parame-linux.adb \
1331 system.ads<system-linux-ppc.ads
1333 TOOLS_TARGET_PAIRS = \
1334 mlib-tgt.adb<mlib-tgt-linux.adb \
1335 indepsw.adb<indepsw-linux.adb
1337 THREADSLIB = -lpthread
1338 GNATLIB_SHARED = gnatlib-shared-dual
1339 GMEM_LIB = gmemlib
1340 PREFIX_OBJS = $(PREFIX_REAL_OBJS)
1341 LIBRARY_VERSION := $(LIB_VERSION)
1342 endif
1344 ifeq ($(strip $(filter-out %ia64 linux%,$(arch) $(osys))),)
1345 LIBGNAT_TARGET_PAIRS = \
1346 a-intnam.ads<a-intnam-linux.ads \
1347 a-numaux.ads<a-numaux-libc-x86.ads \
1348 s-inmaop.adb<s-inmaop-posix.adb \
1349 s-intman.adb<s-intman-posix.adb \
1350 s-osinte.ads<s-osinte-linux.ads \
1351 s-osinte.adb<s-osinte-posix.adb \
1352 s-osprim.adb<s-osprim-posix.adb \
1353 s-taprop.adb<s-taprop-linux.adb \
1354 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1355 s-taspri.ads<s-taspri-linux.ads \
1356 system.ads<system-linux-ia64.ads
1358 TOOLS_TARGET_PAIRS = \
1359 mlib-tgt.adb<mlib-tgt-linux.adb \
1360 indepsw.adb<indepsw-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 alpha% linux%,$(arch) $(osys))),)
1370 LIBGNAT_TARGET_PAIRS = \
1371 a-intnam.ads<a-intnam-linux.ads \
1372 s-inmaop.adb<s-inmaop-posix.adb \
1373 s-intman.adb<s-intman-posix.adb \
1374 s-osinte.ads<s-osinte-linux-alpha.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-alpha.ads
1382 TOOLS_TARGET_PAIRS = \
1383 mlib-tgt.adb<mlib-tgt-linux.adb \
1384 indepsw.adb<indepsw-linux.adb
1386 MISCLIB=
1387 THREADSLIB=-lpthread
1388 GNATLIB_SHARED=gnatlib-shared-dual
1389 PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1390 LIBRARY_VERSION := $(LIB_VERSION)
1391 endif
1393 ifeq ($(strip $(filter-out %x86_64 linux%,$(arch) $(osys))),)
1394 LIBGNAT_TARGET_PAIRS = \
1395 a-intnam.ads<a-intnam-linux.ads \
1396 a-numaux.adb<a-numaux-x86.adb \
1397 a-numaux.ads<a-numaux-x86.ads \
1398 s-inmaop.adb<s-inmaop-posix.adb \
1399 s-intman.adb<s-intman-posix.adb \
1400 s-osinte.ads<s-osinte-linux.ads \
1401 s-osinte.adb<s-osinte-posix.adb \
1402 s-osprim.adb<s-osprim-posix.adb \
1403 s-taprop.adb<s-taprop-linux.adb \
1404 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1405 s-taspri.ads<s-taspri-linux.ads \
1406 system.ads<system-linux-x86_64.ads
1408 TOOLS_TARGET_PAIRS=mlib-tgt.adb<mlib-tgt-linux.adb
1409 THREADSLIB=-lpthread
1410 GNATLIB_SHARED=gnatlib-shared-dual
1411 GMEM_LIB = gmemlib
1412 PREFIX_OBJS=$(PREFIX_REAL_OBJS)
1413 LIBRARY_VERSION := $(LIB_VERSION)
1414 endif
1416 ifeq ($(strip $(filter-out powerpc darwin%,$(arch) $(osys))),)
1417 LIBGNAT_TARGET_PAIRS = \
1418 a-intnam.ads<a-intnam-darwin.ads \
1419 s-inmaop.adb<s-inmaop-posix.adb \
1420 s-intman.adb<s-intman-posix.adb \
1421 s-osinte.adb<s-osinte-darwin.adb \
1422 s-osinte.ads<s-osinte-darwin.ads \
1423 s-osprim.adb<s-osprim-posix.adb \
1424 s-taprop.adb<s-taprop-posix.adb \
1425 s-taspri.ads<s-taspri-posix.ads \
1426 s-tpopsp.adb<s-tpopsp-posix-foreign.adb \
1427 g-soccon.ads<g-soccon-darwin.ads \
1428 a-numaux.ads<a-numaux-darwin.ads \
1429 a-numaux.adb<a-numaux-darwin.adb \
1430 system.ads<system-darwin-ppc.ads
1432 TOOLS_TARGET_PAIRS = \
1433 mlib-tgt.adb<mlib-tgt-darwin.adb
1435 GNATLIB_SHARED = gnatlib-shared-darwin
1436 SO_OPTS = -Wl,-flat_namespace
1437 RANLIB = ranlib -c
1438 GMEM_LIB = gmemlib
1440 LIBRARY_VERSION := $(LIB_VERSION)
1441 soext = .dylib
1442 endif
1444 # The runtime library for gnat comprises two directories. One contains the
1445 # Ada source files that the compiler (gnat1) needs -- these files are listed
1446 # by ADA_INCLUDE_SRCS -- and the other contains the object files and their
1447 # corresponding .ali files for the parts written in Ada, libgnat.a for
1448 # the parts of the runtime written in C, and libgthreads.a for the pthreads
1449 # emulation library. LIBGNAT_OBJS lists the objects that go into libgnat.a,
1450 # while GNATRTL_OBJS lists the object files compiled from Ada sources that
1451 # go into the directory. The pthreads emulation is built in the threads
1452 # subdirectory and copied.
1453 LIBGNAT_SRCS = ada.h adaint.c adaint.h argv.c cio.c cstreams.c \
1454 errno.c exit.c cal.c ctrl_c.c \
1455 raise.h raise.c sysdep.c aux-io.c init.c seh_init.c \
1456 final.c tracebak.c tb-alvms.c tb-alvxw.c expect.c mkdir.c socket.c gsocket.h \
1457 $(EXTRA_LIBGNAT_SRCS)
1459 LIBGNAT_OBJS = adaint.o argv.o cio.o cstreams.o ctrl_c.o errno.o exit.o \
1460 raise.o sysdep.o aux-io.o init.o seh_init.o cal.o final.o \
1461 tracebak.o expect.o mkdir.o socket.o $(EXTRA_LIBGNAT_OBJS)
1463 # NOTE ??? - when the -I option for compiling Ada code is made to work,
1464 # the library installation will change and there will be a
1465 # GNAT_RTL_SRCS. Right now we count on being able to build GNATRTL_OBJS
1466 # from ADA_INCLUDE_SRCS.
1468 # GNATRTL_NONTASKING_OBJS and GNATRTL_TASKING_OBJS can be found in
1469 # the following include file:
1471 include $(fsrcdir)/Makefile.rtl
1473 GNATRTL_OBJS = $(GNATRTL_NONTASKING_OBJS) $(GNATRTL_TASKING_OBJS) \
1474 g-trasym.o memtrack.o
1476 # Default run time files
1478 ADA_INCLUDE_SRCS =\
1479 ada.ads calendar.ads directio.ads gnat.ads interfac.ads ioexcept.ads \
1480 machcode.ads text_io.ads unchconv.ads unchdeal.ads \
1481 sequenio.ads system.ads Makefile.adalib memtrack.adb \
1482 a-*.adb a-*.ads g-*.ad? i-*.ad? \
1483 s-[a-o]*.adb s-[p-z]*.adb \
1484 s-[a-o]*.ads s-[p-z]*.ads
1486 LIBGNAT=../rts/libgnat.a
1487 TOOLS_FLAGS_TO_PASS= \
1488 "CC=$(CC)" \
1489 "CFLAGS=$(CFLAGS)" \
1490 "LDFLAGS=$(LDFLAGS)" \
1491 "ADAFLAGS=$(ADAFLAGS)" \
1492 "INCLUDES=$(INCLUDES_FOR_SUBDIR)"\
1493 "ADA_INCLUDES=$(ADA_INCLUDES) $(ADA_INCLUDES_FOR_SUBDIR)"\
1494 "libsubdir=$(libsubdir)" \
1495 "exeext=$(exeext)" \
1496 "fsrcdir=$(fsrcdir)" \
1497 "srcdir=$(fsrcdir)" \
1498 "TOOLS_LIBS=$(TOOLS_LIBS) $(TGT_LIB)" \
1499 "GNATMAKE=$(GNATMAKE)" \
1500 "GNATLINK=$(GNATLINK)" \
1501 "GNATBIND=$(GNATBIND)"
1503 GCC_LINK="$(CC) -static-libgcc $(ADA_INCLUDES)"
1505 # Build directory for the tools. Let's copy the target-dependent
1506 # sources using the same mechanism as for gnatlib. The other sources are
1507 # accessed using the vpath directive below
1509 ../stamp-tools:
1510 -$(RM) tools/*
1511 -$(RMDIR) tools
1512 -$(MKDIR) tools
1513 -(cd tools; $(LN_S) ../sdefault.adb .)
1514 -$(foreach PAIR,$(TOOLS_TARGET_PAIRS), \
1515 $(RM) tools/$(word 1,$(subst <, ,$(PAIR)));\
1516 $(LN_S) $(fsrcdir)/$(word 2,$(subst <, ,$(PAIR))) \
1517 tools/$(word 1,$(subst <, ,$(PAIR)));)
1518 touch ../stamp-tools
1520 # when compiling the tools, the runtime has to be first on the path so that
1521 # it hides the runtime files lying with the rest of the sources
1522 ifeq ($(TOOLSCASE),native)
1523 vpath %.ads ../rts ../
1524 vpath %.adb ../rts ../
1525 vpath %.c ../rts ../
1526 vpath %.h ../rts ../
1527 endif
1529 # in the cross tools case, everything is compiled with the native
1530 # gnatmake/link. Therefore only -I needs to be modified in ADA_INCLUDES
1531 ifeq ($(TOOLSCASE),cross)
1532 vpath %.ads ../
1533 vpath %.adb ../
1534 vpath %.c ../
1535 vpath %.h ../
1536 endif
1538 # gnatmake/link tools cannot always be built with gnatmake/link for bootstrap
1539 # reasons: gnatmake should be built with a recent compiler, a recent compiler
1540 # may not generate ALI files compatible with an old gnatmake so it is important
1541 # to be able to build gnatmake without a version of gnatmake around. Once
1542 # everything has been compiled once, gnatmake can be recompiled with itself
1543 # (see target gnattools1-re)
1544 gnattools1: ../stamp-tools ../stamp-gnatlib
1545 $(MAKE) -C tools -f ../Makefile $(TOOLS_FLAGS_TO_PASS) \
1546 TOOLSCASE=native \
1547 ../../gnatmake$(exeext) ../../gnatlink$(exeext) ../../gnatbl$(exeext)
1549 # gnatmake/link can be built with recent gnatmake/link if they are available.
1550 # This is especially convenient for building cross tools or for rebuilding
1551 # the tools when the original bootstrap has already be done.
1552 gnattools1-re: ../stamp-tools
1553 $(MAKE) -C tools -f ../Makefile $(TOOLS_FLAGS_TO_PASS) \
1554 TOOLSCASE=cross INCLUDES="" gnatmake-re gnatlink-re
1556 # these tools are built with gnatmake & are common to native and cross
1557 gnattools2: ../stamp-tools
1558 $(MAKE) -C tools -f ../Makefile $(TOOLS_FLAGS_TO_PASS) \
1559 TOOLSCASE=native \
1560 ../../gnatchop$(exeext) ../../gnat$(exeext) ../../gnatkr$(exeext) \
1561 ../../gnatls$(exeext) ../../gnatprep$(exeext) \
1562 ../../gnatxref$(exeext) \
1563 ../../gnatfind$(exeext) ../../gnatname$(exeext) \
1564 ../../gnatclean$(exeext) ../../gprmake$(exeext)
1566 # These tools are only built for the native version.
1567 gnattools3: ../stamp-tools
1568 ifneq ($(EXTRA_GNATTOOLS),)
1569 $(MAKE) -C tools -f ../Makefile $(TOOLS_FLAGS_TO_PASS) \
1570 TOOLSCASE=native top_builddir=../../.. $(EXTRA_GNATTOOLS)
1571 endif
1573 # those tools are only built for the cross version
1574 gnattools4: ../stamp-tools
1575 $(MAKE) -C tools -f ../Makefile $(TOOLS_FLAGS_TO_PASS) \
1576 TOOLSCASE=cross top_buildir=../../.. \
1577 ../../vxaddr2line$(exeext)
1579 ../../gnatchop$(exeext): ../stamp-tools
1580 $(GNATMAKE) -c $(ADA_INCLUDES) gnatchop --GCC="$(CC) $(ALL_ADAFLAGS)"
1581 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatchop
1582 $(GNATLINK) -v gnatchop -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1584 ../../gnat$(exeext): ../stamp-tools
1585 $(GNATMAKE) -c $(ADA_INCLUDES) gnatcmd --GCC="$(CC) $(ALL_ADAFLAGS)"
1586 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatcmd
1587 $(GNATLINK) -v gnatcmd -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1589 ../../gnatkr$(exeext): ../stamp-tools
1590 $(GNATMAKE) -c $(ADA_INCLUDES) gnatkr --GCC="$(CC) $(ALL_ADAFLAGS)"
1591 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatkr
1592 $(GNATLINK) -v gnatkr -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1594 ../../gnatls$(exeext): ../stamp-tools
1595 $(GNATMAKE) -c $(ADA_INCLUDES) gnatls --GCC="$(CC) $(ALL_ADAFLAGS)"
1596 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatls
1597 $(GNATLINK) -v gnatls -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1599 ../../gnatname$(exeext): ../stamp-tools
1600 $(GNATMAKE) -c $(ADA_INCLUDES) gnatname --GCC="$(CC) $(ALL_ADAFLAGS)"
1601 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatname
1602 $(GNATLINK) -v gnatname -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1604 ../../gprmake$(exeext): ../stamp-tools
1605 $(GNATMAKE) -c $(ADA_INCLUDES) gprmake --GCC="$(CC) $(ALL_ADAFLAGS)"
1606 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gprmake
1607 $(GNATLINK) -v gprmake -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1609 ../../gnatprep$(exeext): ../stamp-tools
1610 $(GNATMAKE) -c $(ADA_INCLUDES) gnatprep --GCC="$(CC) $(ALL_ADAFLAGS)"
1611 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatprep
1612 $(GNATLINK) -v gnatprep -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1614 ../../gnatxref$(exeext): ../stamp-tools
1615 $(GNATMAKE) -c $(ADA_INCLUDES) gnatxref --GCC="$(CC) $(ALL_ADAFLAGS)"
1616 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatxref
1617 $(GNATLINK) -v gnatxref -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1619 ../../gnatfind$(exeext): ../stamp-tools
1620 $(GNATMAKE) -c $(ADA_INCLUDES) gnatfind --GCC="$(CC) $(ALL_ADAFLAGS)"
1621 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatfind
1622 $(GNATLINK) -v gnatfind -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1624 ../../gnatclean$(exeext): ../stamp-tools
1625 $(GNATMAKE) -c $(ADA_INCLUDES) gnatclean --GCC="$(CC) $(ALL_ADAFLAGS)"
1626 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatclean
1627 $(GNATLINK) -v gnatclean -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1629 ../../gnatsym$(exeext): ../stamp-tools
1630 $(GNATMAKE) -c $(ADA_INCLUDES) gnatsym --GCC="$(CC) $(ALL_ADAFLAGS)"
1631 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatsym
1632 $(GNATLINK) -v gnatsym -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1634 ../../gnatdll$(exeext): ../stamp-tools
1635 $(GNATMAKE) -c $(ADA_INCLUDES) gnatdll --GCC="$(CC) $(ALL_ADAFLAGS)"
1636 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) $(GNATBIND_FLAGS) gnatdll
1637 $(GNATLINK) -v gnatdll -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1639 ../../vxaddr2line$(exeext): ../stamp-tools
1640 $(GNATMAKE) -c $(ADA_INCLUDES) vxaddr2line --GCC="$(CC) $(ALL_ADAFLAGS)"
1641 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) vxaddr2line
1642 $(GNATLINK) -v vxaddr2line -o $@ --GCC=$(GCC_LINK) $(CLIB)
1644 gnatmake-re: ../stamp-tools link.o
1645 $(GNATMAKE) $(ADA_INCLUDES) -u sdefault --GCC="$(CC) $(MOST_ADA_FLAGS)"
1646 $(GNATMAKE) -c $(ADA_INCLUDES) gnatmake --GCC="$(CC) $(ALL_ADAFLAGS)"
1647 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatmake
1648 $(GNATLINK) -v gnatmake -o ../../gnatmake$(exeext) \
1649 --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1651 # Note the use of the "mv" command in order to allow gnatlink to be linked with
1652 # with the former version of gnatlink itself which cannot override itself.
1653 gnatlink-re: ../stamp-tools link.o
1654 $(GNATMAKE) -c $(ADA_INCLUDES) gnatlink --GCC="$(CC) $(ALL_ADAFLAGS)"
1655 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatlink
1656 $(GNATLINK) -v gnatlink -o ../../gnatlinknew$(exeext) \
1657 --GCC=$(GCC_LINK) $(TOOLS_LIBS)
1658 $(MV) ../../gnatlinknew$(exeext) ../../gnatlink$(exeext)
1660 # Needs to be built with CC=gcc
1661 # Since the RTL should be built with the latest compiler, remove the
1662 # stamp target in the parent directory whenever gnat1 is rebuilt
1664 # Likewise for the tools
1665 ../../gnatmake$(exeext): $(P) b_gnatm.o link.o $(GNATMAKE_OBJS)
1666 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ b_gnatm.o $(GNATMAKE_OBJS) \
1667 $(TOOLS_LIBS)
1669 ../../gnatlink$(exeext): $(P) b_gnatl.o link.o $(GNATLINK_OBJS)
1670 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ b_gnatl.o $(GNATLINK_OBJS) \
1671 $(TOOLS_LIBS)
1673 ../../gnatbl$(exeext): gnatbl.o
1674 $(CC) -o $@ $(ALL_CFLAGS) $(LDFLAGS) gnatbl.o $(TOOLS_LIBS)
1676 gnatbl.o: gnatbl.c adaint.h
1677 $(CC) $(ALL_CFLAGS) $(INCLUDES) -c $< $(OUTPUT_OPTION)
1679 ../stamp-gnatlib:
1680 @if [ ! -f stamp-gnatlib ] ; \
1681 then \
1682 $(ECHO) You must first build the GNAT library: make gnatlib; \
1683 false; \
1684 else \
1685 true; \
1688 install-gnatlib: ../stamp-gnatlib
1689 # Create the directory before deleting it, in case the directory is
1690 # a list of directories (as it may be on VMS). This ensures we are
1691 # deleting the right one.
1692 -$(MKDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1693 -$(MKDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1694 $(RMDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1695 $(RMDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1696 -$(MKDIR) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1697 -$(MKDIR) $(DESTDIR)$(ADA_INCLUDE_DIR)
1698 for file in rts/*.ali; do \
1699 $(INSTALL_DATA_DATE) $$file $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1700 done
1701 -$(INSTALL_DATA) rts/g-trasym$(objext) $(DESTDIR)$(ADA_RTL_OBJ_DIR)
1702 -cd rts; for file in *$(arext);do \
1703 $(INSTALL_DATA) $$file $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1704 $(RANLIB) $(RANLIB_FLAGS) $(DESTDIR)$(ADA_RTL_OBJ_DIR)/$$file; \
1705 done
1706 -$(foreach file, $(EXTRA_ADALIB_FILES), \
1707 $(INSTALL_DATA_DATE) rts/$(file) $(DESTDIR)$(ADA_RTL_OBJ_DIR) && \
1708 ) true
1709 # Install the shared libraries, if any, using $(INSTALL) instead
1710 # of $(INSTALL_DATA). The latter may force a mode inappropriate
1711 # for shared libraries on some targets, e.g. on HP-UX where the x
1712 # permission is required.
1713 for file in gnat gnarl; do \
1714 if [ -f rts/lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) ]; then \
1715 $(INSTALL) rts/lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) \
1716 $(DESTDIR)$(ADA_RTL_OBJ_DIR); \
1717 fi; \
1718 if [ -f rts/lib$${file}$(soext) ]; then \
1719 $(LN_S) lib$${file}$(hyphen)$(LIBRARY_VERSION)$(soext) \
1720 $(DESTDIR)$(ADA_RTL_OBJ_DIR)/lib$${file}$(soext); \
1721 fi; \
1722 done
1723 # This copy must be done preserving the date on the original file.
1724 for file in rts/*.adb rts/*.ads; do \
1725 $(INSTALL_DATA_DATE) $$file $(DESTDIR)$(ADA_INCLUDE_DIR); \
1726 done
1727 cd $(DESTDIR)$(ADA_INCLUDE_DIR); $(CHMOD) a-wx *.adb
1728 cd $(DESTDIR)$(ADA_INCLUDE_DIR); $(CHMOD) a-wx *.ads
1730 ../stamp-gnatlib2:
1731 $(RM) rts/s-*.ali
1732 $(RM) rts/s-*$(objext)
1733 $(RM) rts/a-*.ali
1734 $(RM) rts/a-*$(objext)
1735 $(RM) rts/*.ali
1736 $(RM) rts/*$(objext)
1737 $(RM) rts/*$(arext)
1738 $(RM) rts/*$(soext)
1739 touch ../stamp-gnatlib2
1740 $(RM) ../stamp-gnatlib
1742 # NOTE: The $(foreach ...) commands assume ";" is the valid separator between
1743 # successive target commands. Although the Gnu make documentation
1744 # implies this is true on all systems, I suspect it may not be, So care
1745 # has been taken to allow a sed script to look for ";)" and substitue
1746 # for ";" the appropriate character in the range of lines below
1747 # beginning with "GNULLI Begin" and ending with "GNULLI End"
1749 # GNULLI Begin ###########################################################
1751 ../stamp-gnatlib1: Makefile ../stamp-gnatlib2
1752 $(RMDIR) rts
1753 $(MKDIR) rts
1754 $(CHMOD) u+w rts
1755 # Copy target independent sources
1756 $(foreach f,$(ADA_INCLUDE_SRCS) $(LIBGNAT_SRCS), \
1757 $(LN_S) $(fsrcpfx)$(f) rts ;) true
1758 # Remove files to be replaced by target dependent sources
1759 $(RM) $(foreach PAIR,$(LIBGNAT_TARGET_PAIRS), \
1760 rts/$(word 1,$(subst <, ,$(PAIR))))
1761 $(RM) rts/*-*-*.ads rts/*-*-*.adb
1762 # Copy new target dependent sources
1763 $(foreach PAIR,$(LIBGNAT_TARGET_PAIRS), \
1764 $(LN_S) $(fsrcpfx)$(word 2,$(subst <, ,$(PAIR))) \
1765 rts/$(word 1,$(subst <, ,$(PAIR)));)
1766 $(RM) ../stamp-gnatlib
1767 touch ../stamp-gnatlib1
1769 # GNULLI End #############################################################
1771 # Don't use semicolon separated shell commands that involve list expansions.
1772 # The semicolon triggers a call to DCL on VMS and DCL can't handle command
1773 # line lengths in excess of 256 characters.
1774 # Example: cd rts; ar rc libfoo.a $(LONG_LIST_OF_OBJS)
1775 # is guaranteed to overflow the buffer.
1777 gnatlib: ../stamp-gnatlib1 ../stamp-gnatlib2
1778 $(MAKE) -C rts CC="../../xgcc -B../../" \
1779 INCLUDES="$(INCLUDES_FOR_SUBDIR) -I./../.." \
1780 CFLAGS="$(GNATLIBCFLAGS_FOR_C)" \
1781 srcdir=$(fsrcdir) \
1782 -f ../Makefile $(LIBGNAT_OBJS)
1783 $(MAKE) -C rts CC="../../xgcc -B../../" \
1784 ADA_INCLUDES="" \
1785 CFLAGS="$(GNATLIBCFLAGS)" \
1786 ADAFLAGS="$(GNATLIBFLAGS)" \
1787 srcdir=$(fsrcdir) \
1788 -f ../Makefile \
1789 $(GNATRTL_OBJS)
1790 $(RM) rts/libgnat$(arext) rts/libgnarl$(arext)
1791 $(AR) $(AR_FLAGS) rts/libgnat$(arext) \
1792 $(addprefix rts/,$(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS))
1793 ifneq ($(PREFIX_OBJS),)
1794 $(AR) $(AR_FLAGS) rts/libgccprefix$(arext) $(PREFIX_OBJS);
1795 endif
1796 -$(RANLIB) $(RANLIB_FLAGS) rts/libgnat$(arext)
1797 $(AR) $(AR_FLAGS) rts/libgnarl$(arext) \
1798 $(addprefix rts/,$(GNATRTL_TASKING_OBJS))
1799 -$(RANLIB) $(RANLIB_FLAGS) rts/libgnarl$(arext)
1800 ifeq ($(GMEM_LIB),gmemlib)
1801 $(AR) $(AR_FLAGS) rts/libgmem$(arext) rts/memtrack.o
1802 -$(RANLIB) $(RANLIB_FLAGS) rts/libgmem$(arext)
1803 endif
1804 $(CHMOD) a-wx rts/*.ali
1805 touch ../stamp-gnatlib
1807 # Warning: this target assumes that LIBRARY_VERSION has been set correctly.
1808 gnatlib-shared-default:
1809 $(MAKE) $(FLAGS_TO_PASS) \
1810 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1811 GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1812 THREAD_KIND="$(THREAD_KIND)" \
1813 gnatlib
1814 $(RM) rts/libgna*$(soext)
1815 cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1816 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1817 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1818 $(SO_OPTS)libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1819 $(MISCLIB) -lm
1820 cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1821 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1822 $(GNATRTL_TASKING_OBJS) \
1823 $(SO_OPTS)libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1824 $(THREADSLIB)
1825 cd rts; $(LN_S) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1826 libgnat$(soext)
1827 cd rts; $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1828 libgnarl$(soext)
1830 gnatlib-shared-dual:
1831 $(MAKE) $(FLAGS_TO_PASS) \
1832 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1833 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1834 THREAD_KIND="$(THREAD_KIND)" \
1835 gnatlib-shared-default
1836 $(MV) rts/libgna*$(soext) .
1837 $(RM) ../stamp-gnatlib2
1838 $(MAKE) $(FLAGS_TO_PASS) \
1839 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1840 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1841 THREAD_KIND="$(THREAD_KIND)" \
1842 gnatlib
1843 $(MV) libgna*$(soext) rts
1845 gnatlib-shared-dual-win32:
1846 $(MAKE) $(FLAGS_TO_PASS) \
1847 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1848 GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1849 THREAD_KIND="$(THREAD_KIND)" \
1850 gnatlib-shared-win32
1851 $(MV) rts/libgna*$(soext) .
1852 $(RM) ../stamp-gnatlib2
1853 $(MAKE) $(FLAGS_TO_PASS) \
1854 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1855 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1856 THREAD_KIND="$(THREAD_KIND)" \
1857 gnatlib
1858 $(MV) libgna*$(soext) rts
1860 # ??? we need to add the option to support auto-import of arrays/records to
1861 # the GNATLIBFLAGS when this will be supported by GNAT. At this point we will
1862 # use the gnatlib-shared-dual-win32 target to build the GNAT runtimes on
1863 # Windows.
1864 gnatlib-shared-win32:
1865 $(MAKE) $(FLAGS_TO_PASS) \
1866 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1867 GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS)" \
1868 THREAD_KIND="$(THREAD_KIND)" \
1869 gnatlib
1870 $(RM) rts/libgna*$(soext)
1871 cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1872 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1873 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1874 $(SO_OPTS)libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) $(MISCLIB)
1875 cd rts; ../../xgcc -B../../ -shared $(TARGET_LIBGCC2_CFLAGS) \
1876 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1877 $(GNATRTL_TASKING_OBJS) \
1878 $(SO_OPTS)libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1879 $(THREADSLIB) -Wl,libgnat$(hyphen)$(LIBRARY_VERSION)$(soext)
1881 gnatlib-shared-darwin:
1882 $(MAKE) $(FLAGS_TO_PASS) \
1883 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1884 GNATLIBCFLAGS="$(GNATLIBCFLAGS) $(TARGET_LIBGCC2_CFLAGS) \
1885 -fno-common" \
1886 THREAD_KIND="$(THREAD_KIND)" \
1887 gnatlib
1888 $(RM) rts/libgnat$(soext) rts/libgnarl$(soext)
1889 cd rts; ../../xgcc -B../../ -dynamiclib $(TARGET_LIBGCC2_CFLAGS) \
1890 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1891 $(GNATRTL_NONTASKING_OBJS) $(LIBGNAT_OBJS) \
1892 $(SO_OPTS) \
1893 $(MISCLIB) -lm
1894 cd rts; ../../xgcc -B../../ -dynamiclib $(TARGET_LIBGCC2_CFLAGS) \
1895 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1896 $(GNATRTL_TASKING_OBJS) \
1897 $(SO_OPTS) \
1898 $(THREADSLIB) -Wl,libgnat$(hyphen)$(LIBRARY_VERSION)$(soext)
1899 cd rts; $(LN_S) libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1900 libgnat$(soext)
1901 cd rts; $(LN_S) libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1902 libgnarl$(soext)
1904 gnatlib-shared-vms:
1905 $(MAKE) $(FLAGS_TO_PASS) \
1906 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1907 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1908 THREAD_KIND="$(THREAD_KIND)" \
1909 gnatlib
1910 $(RM) rts/libgna*$(soext)
1911 cd rts && echo "case_sensitive=yes" > SYMVEC_$$$$.opt && \
1912 objdump --syms $(LIBGNAT_OBJS) $(GNATRTL_NONTASKING_OBJS) | \
1913 $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt && \
1914 echo "case_sensitive=NO" >> SYMVEC_$$$$.opt && \
1915 ../../xgcc -g -B../../ -nostartfiles -shared -shared-libgcc \
1916 -o libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) libgnat.a \
1917 sys\$$library:trace.exe \
1918 --for-linker=/noinform \
1919 --for-linker=SYMVEC_$$$$.opt \
1920 --for-linker=gsmatch=equal,$(GSMATCH_VERSION)
1921 cd rts && echo "case_sensitive=yes" > SYMVEC_$$$$.opt && \
1922 objdump --syms $(GNATRTL_TASKING_OBJS) | \
1923 $(SHLIB_SYMVEC) >> SYMVEC_$$$$.opt && \
1924 echo "case_sensitive=NO" >> SYMVEC_$$$$.opt && \
1925 ../../xgcc -g -B../../ -nostartfiles -shared -shared-libgcc \
1926 -o libgnarl$(hyphen)$(LIBRARY_VERSION)$(soext) \
1927 libgnarl.a libgnat$(hyphen)$(LIBRARY_VERSION)$(soext) \
1928 sys\$$library:trace.exe \
1929 --for-linker=/noinform \
1930 --for-linker=SYMVEC_$$$$.opt \
1931 --for-linker=gsmatch=equal,$(GSMATCH_VERSION)
1933 gnatlib-shared:
1934 $(MAKE) $(FLAGS_TO_PASS) \
1935 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1936 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1937 THREAD_KIND="$(THREAD_KIND)" \
1938 TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" \
1939 $(GNATLIB_SHARED)
1941 gnatlib-sjlj: ../stamp-gnatlib1
1942 sed -e 's/ZCX_By_Default.*/ZCX_By_Default : constant Boolean := False;/' rts/system.ads > rts/s.ads
1943 $(MV) rts/s.ads rts/system.ads
1944 $(MAKE) $(FLAGS_TO_PASS) \
1945 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1946 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1947 THREAD_KIND="$(THREAD_KIND)" \
1948 TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" gnatlib
1950 gnatlib-zcx: ../stamp-gnatlib1
1951 sed -e 's/ZCX_By_Default.*/ZCX_By_Default : constant Boolean := True;/' rts/system.ads > rts/s.ads
1952 $(MV) rts/s.ads rts/system.ads
1953 $(MAKE) $(FLAGS_TO_PASS) \
1954 GNATLIBFLAGS="$(GNATLIBFLAGS)" \
1955 GNATLIBCFLAGS="$(GNATLIBCFLAGS)" \
1956 THREAD_KIND="$(THREAD_KIND)" \
1957 TARGET_LIBGCC2_CFLAGS="$(TARGET_LIBGCC2_CFLAGS)" gnatlib
1959 # .s files for cross-building
1960 gnat-cross: force
1961 make $(GNAT1_ADA_OBJS) CC="gcc -B../stage1/" CFLAGS="-S -gnatp"
1963 # Compiling object files from source files.
1965 # Note that dependencies on obstack.h are not written
1966 # because that file is not part of GCC.
1967 # Dependencies on gvarargs.h are not written
1968 # because all that file does, when not compiling with GCC,
1969 # is include the system varargs.h.
1971 b_gnatl.c : $(GNATLINK_OBJS)
1972 $(GNATBIND) -C $(ADA_INCLUDES) -o b_gnatl.c gnatlink.ali
1973 b_gnatl.o : b_gnatl.c
1975 b_gnatm.c : $(GNATMAKE_OBJS)
1976 $(GNATBIND) -C $(ADA_INCLUDES) -o b_gnatm.c gnatmake.ali
1977 b_gnatm.o : b_gnatm.c
1979 ADA_INCLUDE_DIR = $(libsubdir)/adainclude
1980 ADA_RTL_OBJ_DIR = $(libsubdir)/adalib
1982 # force no sibling call optimization on s-traceb.o so the number of stack
1983 # frames to be skipped when computing a call chain is not modified by
1984 # optimization. However we can do that only when building the runtime
1985 # (not the compiler) because the -fno-optimize-sibling-calls exists
1986 # only in GCC 3.
1988 ifneq (,$(findstring xgcc,$(CC)))
1989 NO_SIBLING_ADAFLAGS=-fno-optimize-sibling-calls
1990 else
1991 NO_SIBLING_ADAFLAGS=
1992 endif
1994 s-traceb.o : s-traceb.adb
1995 $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) \
1996 $(NO_SIBLING_ADAFLAGS) $(ADA_INCLUDES) \
1997 $< $(OUTPUT_OPTION)
1999 # force debugging information on s-tasdeb.o so that it is always
2000 # possible to set conditional breakpoints on tasks.
2002 s-tasdeb.o : s-tasdeb.adb s-tasdeb.ads
2003 $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O0 $(ADA_INCLUDES) \
2004 $< $(OUTPUT_OPTION)
2006 # force debugging information on a-except.o so that it is always
2007 # possible to set conditional breakpoints on exceptions.
2008 # use -O1 otherwise gdb isn't able to get a full backtrace on mips targets.
2010 a-except.o : a-except.adb a-except.ads
2011 $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O1 -fno-inline \
2012 $(ADA_INCLUDES) $< $(OUTPUT_OPTION)
2014 # force debugging information on s-assert.o so that it is always
2015 # possible to set breakpoint on assert failures.
2017 s-assert.o : s-assert.adb s-assert.ads a-except.ads
2018 $(CC) -c $(ALL_ADAFLAGS) $(FORCE_DEBUG_ADAFLAGS) -O2 $(ADA_INCLUDES) \
2019 $< $(OUTPUT_OPTION)
2021 adadecode.o : adadecode.c adadecode.h
2022 aux-io.o : aux-io.c
2023 argv.o : argv.c
2024 cal.o : cal.c
2025 deftarg.o : deftarg.c
2026 errno.o : errno.c
2027 exit.o : raise.h exit.c
2028 expect.o : expect.c
2029 final.o : raise.h final.c
2030 gmem.o : gmem.c
2031 link.o : link.c
2032 mkdir.o : mkdir.c
2033 socket.o : socket.c gsocket.h
2034 sysdep.o : sysdep.c
2036 gen-soccon: gen-soccon.c gsocket.h
2037 $(CC) $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2038 $(ALL_CPPFLAGS) $(INCLUDES) -DTARGET=\"$(target_alias)\" \
2039 $< $(OUTPUT_OPTION)
2041 cio.o : cio.c
2042 $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2043 $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2045 init.o : init.c ada.h types.h raise.h
2046 $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2047 $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2049 # No optimization to compile this file as optimizations (-O1 or above) breaks
2050 # the SEH handling on Windows. The reasons are not clear.
2051 seh_init.o : seh_init.c raise.h
2052 $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) -O0 \
2053 $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2055 raise.o : raise.c raise.h
2056 $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(RT_FLAGS) \
2057 $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
2059 # Need to keep the frame pointer in this file to pop the stack properly on
2060 # some targets.
2061 tracebak.o : tracebak.c tb-alvms.c tb-alvxw.c
2062 $(CC) -c $(ALL_CFLAGS) $(ADA_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2063 -fno-omit-frame-pointer $< $(OUTPUT_OPTION)
2065 # In GNU Make, ignore whether `stage*' exists.
2066 .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
2067 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2069 force:
2071 # Gnatlbr is only used on VMS
2073 ../../gnatlbr$(exeext): ../../prefix.o
2074 $(GNATMAKE) -c $(ADA_INCLUDES) gnatlbr --GCC="$(CC) $(ALL_ADAFLAGS)"
2075 $(GNATBIND) $(ADA_INCLUDES) $(GNATBIND_FLAGS) gnatlbr
2076 $(GNATLINK) -v gnatlbr -o $@ --GCC=$(GCC_LINK) $(TOOLS_LIBS)