Set num_threads to 50 on 32-bit hppa in two libgomp loop tests
[official-gcc.git] / libphobos / Makefile.am
blobc3a22a0981ff4bc673c8376adde3a3b9b7b2fec4
1 # Makefile for the toplevel directory of the D Standard library.
2 # Copyright (C) 2006-2024 Free Software Foundation, Inc.
4 # GCC is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 3, or (at your option)
7 # any later version.
9 # GCC is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with GCC; see the file COPYING3.  If not see
16 # <http://www.gnu.org/licenses/>.
18 if ENABLE_LIBPHOBOS
19   SUBDIRS = libdruntime src testsuite
20 else
21   SUBDIRS =
22 endif
24 ACLOCAL_AMFLAGS = -I . -I .. -I ../config
26 # Multilib support.
27 MAKEOVERRIDES=
29 # Work around what appears to be a GNU make bug handling MAKEFLAGS
30 # values defined in terms of make variables, as is the case for CC and
31 # friends when we are called from the top level Makefile.
32 AM_MAKEFLAGS = \
33         "AR_FLAGS=$(AR_FLAGS)" \
34         "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
35         "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
36         "CCASFLAGS=$(CCASFLAGS)" \
37         "CFLAGS=$(CFLAGS)" \
38         "CXXFLAGS=$(CXXFLAGS)" \
39         "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
40         "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
41         "EXPECT=$(EXPECT)" \
42         "GDC_FOR_TARGET=$(GDC_FOR_TARGET)" \
43         "GDC=$(GDC)" \
44         "GDCFLAGS=$(GDCFLAGS)" \
45         "INSTALL=$(INSTALL)" \
46         "INSTALL_DATA=$(INSTALL_DATA)" \
47         "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
48         "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
49         "LDFLAGS=$(LDFLAGS)" \
50         "LIBCFLAGS=$(LIBCFLAGS)" \
51         "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
52         "MAKE=$(MAKE)" \
53         "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
54         "PICFLAG=$(PICFLAG)" \
55         "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
56         "SHELL=$(SHELL)" \
57         "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
58         "exec_prefix=$(exec_prefix)" \
59         "infodir=$(infodir)" \
60         "libdir=$(libdir)" \
61         "includedir=$(includedir)" \
62         "prefix=$(prefix)" \
63         "tooldir=$(tooldir)" \
64         "gdc_include_dir=$(gdc_include_dir)" \
65         "AR=$(AR)" \
66         "AS=$(AS)" \
67         "LD=$(LD)" \
68         "RANLIB=$(RANLIB)" \
69         "NM=$(NM)" \
70         "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
71         "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
72         "DESTDIR=$(DESTDIR)" \
73         "WERROR=$(WERROR)"
75 # Subdir rules rely on $(FLAGS_TO_PASS)
76 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
78 include $(top_srcdir)/../multilib.am