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)
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/>.
19 SUBDIRS = libdruntime src testsuite
24 ACLOCAL_AMFLAGS = -I . -I .. -I ../config
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.
33 "AR_FLAGS=$(AR_FLAGS)" \
34 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
35 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
36 "CCASFLAGS=$(CCASFLAGS)" \
38 "CXXFLAGS=$(CXXFLAGS)" \
39 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
40 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
42 "GDC_FOR_TARGET=$(GDC_FOR_TARGET)" \
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)" \
53 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
54 "PICFLAG=$(PICFLAG)" \
55 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
57 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
58 "exec_prefix=$(exec_prefix)" \
59 "infodir=$(infodir)" \
61 "includedir=$(includedir)" \
63 "tooldir=$(tooldir)" \
64 "gdc_include_dir=$(gdc_include_dir)" \
70 "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
71 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
72 "DESTDIR=$(DESTDIR)" \
75 # Subdir rules rely on $(FLAGS_TO_PASS)
76 FLAGS_TO_PASS = $(AM_MAKEFLAGS)
78 include $(top_srcdir)/../multilib.am