]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/Makefile.am
Remove m_nloops field from loop_versioning
[thirdparty/gcc.git] / libphobos / Makefile.am
CommitLineData
b4c522fa 1# Makefile for the toplevel directory of the D Standard library.
a945c346 2# Copyright (C) 2006-2024 Free Software Foundation, Inc.
b4c522fa
IB
3#
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.
8#
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.
13#
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/>.
17
7d31d331
RO
18if ENABLE_LIBPHOBOS
19 SUBDIRS = libdruntime src testsuite
20else
21 SUBDIRS =
22endif
b4c522fa
IB
23
24ACLOCAL_AMFLAGS = -I . -I .. -I ../config
25
26# Multilib support.
27MAKEOVERRIDES=
28
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.
32AM_MAKEFLAGS = \
33 "AR_FLAGS=$(AR_FLAGS)" \
34 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
35 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
0ed75760
IB
36 "CCASFLAGS=$(CCASFLAGS)" \
37 "CFLAGS=$(CFLAGS)" \
38 "CXXFLAGS=$(CXXFLAGS)" \
b4c522fa 39 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
0ed75760 40 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
05d353b7 41 "EXPECT=$(EXPECT)" \
b4c522fa
IB
42 "GDC_FOR_TARGET=$(GDC_FOR_TARGET)" \
43 "GDC=$(GDC)" \
0ed75760 44 "GDCFLAGS=$(GDCFLAGS)" \
b4c522fa
IB
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)"
74
75# Subdir rules rely on $(FLAGS_TO_PASS)
76FLAGS_TO_PASS = $(AM_MAKEFLAGS)
22e05272
JM
77
78include $(top_srcdir)/../multilib.am