]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/src/filesystem/Makefile.in
Implement C++17 Filesystem library
[thirdparty/gcc.git] / libstdc++-v3 / src / filesystem / Makefile.in
CommitLineData
6ef93676 1# Makefile.in generated by automake 1.11.6 from Makefile.am.
0ca7ba9a
JW
2# @configure_input@
3
4# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
6ef93676
MH
5# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
6# Foundation, Inc.
0ca7ba9a
JW
7# This Makefile.in is free software; the Free Software Foundation
8# gives unlimited permission to copy and/or distribute it,
9# with or without modifications, as long as this notice is preserved.
10
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
13# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
14# PARTICULAR PURPOSE.
15
16@SET_MAKE@
17
18VPATH = @srcdir@
6ef93676
MH
19am__make_dryrun = \
20 { \
21 am__dry=no; \
22 case $$MAKEFLAGS in \
23 *\\[\ \ ]*) \
24 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
25 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
26 *) \
27 for am__flg in $$MAKEFLAGS; do \
28 case $$am__flg in \
29 *=*|--*) ;; \
30 *n*) am__dry=yes; break;; \
31 esac; \
32 done;; \
33 esac; \
34 test $$am__dry = yes; \
35 }
0ca7ba9a
JW
36pkgdatadir = $(datadir)/@PACKAGE@
37pkgincludedir = $(includedir)/@PACKAGE@
38pkglibdir = $(libdir)/@PACKAGE@
39pkglibexecdir = $(libexecdir)/@PACKAGE@
40am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
41install_sh_DATA = $(install_sh) -c -m 644
42install_sh_PROGRAM = $(install_sh) -c
43install_sh_SCRIPT = $(install_sh) -c
44INSTALL_HEADER = $(INSTALL_DATA)
45transform = $(program_transform_name)
46NORMAL_INSTALL = :
47PRE_INSTALL = :
48POST_INSTALL = :
49NORMAL_UNINSTALL = :
50PRE_UNINSTALL = :
51POST_UNINSTALL = :
52build_triplet = @build@
53host_triplet = @host@
54target_triplet = @target@
55DIST_COMMON = $(top_srcdir)/fragment.am $(srcdir)/Makefile.in \
56 $(srcdir)/Makefile.am
57subdir = src/filesystem
58ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
59am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
60 $(top_srcdir)/../config/enable.m4 \
61 $(top_srcdir)/../config/futex.m4 \
1ec62aa9 62 $(top_srcdir)/../config/hwcaps.m4 \
0ca7ba9a
JW
63 $(top_srcdir)/../config/iconv.m4 \
64 $(top_srcdir)/../config/lead-dot.m4 \
65 $(top_srcdir)/../config/lib-ld.m4 \
66 $(top_srcdir)/../config/lib-link.m4 \
67 $(top_srcdir)/../config/lib-prefix.m4 \
68 $(top_srcdir)/../config/lthostflags.m4 \
69 $(top_srcdir)/../config/multi.m4 \
70 $(top_srcdir)/../config/no-executables.m4 \
71 $(top_srcdir)/../config/override.m4 \
72 $(top_srcdir)/../config/stdint.m4 \
73 $(top_srcdir)/../config/unwind_ipinfo.m4 \
74 $(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
75 $(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
76 $(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/crossconfig.m4 \
77 $(top_srcdir)/linkage.m4 $(top_srcdir)/acinclude.m4 \
78 $(top_srcdir)/../config/gc++filt.m4 \
79 $(top_srcdir)/../config/tls.m4 $(top_srcdir)/../config/gthr.m4 \
80 $(top_srcdir)/configure.ac
81am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
82 $(ACLOCAL_M4)
83CONFIG_HEADER = $(top_builddir)/config.h
84CONFIG_CLEAN_FILES =
85CONFIG_CLEAN_VPATH_FILES =
86am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
87am__vpath_adj = case $$p in \
88 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
89 *) f=$$p;; \
90 esac;
91am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
92am__install_max = 40
93am__nobase_strip_setup = \
94 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
95am__nobase_strip = \
96 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
97am__nobase_list = $(am__nobase_strip_setup); \
98 for p in $$list; do echo "$$p $$p"; done | \
99 sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
100 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
101 if (++n[$$2] == $(am__install_max)) \
102 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
103 END { for (dir in files) print dir, files[dir] }'
104am__base_list = \
105 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
106 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
6ef93676
MH
107am__uninstall_files_from_dir = { \
108 test -z "$$files" \
109 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
110 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
111 $(am__cd) "$$dir" && rm -f $$files; }; \
112 }
0ca7ba9a
JW
113am__installdirs = "$(DESTDIR)$(toolexeclibdir)"
114LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
115libstdc__fs_la_LIBADD =
8b756210 116@ENABLE_DUAL_ABI_TRUE@am__objects_1 = cow-dir.lo cow-ops.lo \
641cb5a6
JW
117@ENABLE_DUAL_ABI_TRUE@ cow-path.lo cow-std-dir.lo \
118@ENABLE_DUAL_ABI_TRUE@ cow-std-ops.lo cow-std-path.lo
119am__objects_2 = dir.lo ops.lo path.lo std-dir.lo std-ops.lo \
120 std-path.lo $(am__objects_1)
8b756210 121am_libstdc__fs_la_OBJECTS = $(am__objects_2)
0ca7ba9a
JW
122libstdc__fs_la_OBJECTS = $(am_libstdc__fs_la_OBJECTS)
123DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
124depcomp =
125am__depfiles_maybe =
126CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
127 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
128CXXLD = $(CXX)
129SOURCES = $(libstdc__fs_la_SOURCES)
6ef93676
MH
130am__can_run_installinfo = \
131 case $$AM_UPDATE_INFO_DIR in \
132 n|no|NO) false;; \
133 *) (install-info --version) >/dev/null 2>&1;; \
134 esac
0ca7ba9a
JW
135ETAGS = etags
136CTAGS = ctags
137ABI_TWEAKS_SRCDIR = @ABI_TWEAKS_SRCDIR@
138ACLOCAL = @ACLOCAL@
139ALLOCATOR_H = @ALLOCATOR_H@
140ALLOCATOR_NAME = @ALLOCATOR_NAME@
141AMTAR = @AMTAR@
142AR = @AR@
143AS = @AS@
144ATOMICITY_SRCDIR = @ATOMICITY_SRCDIR@
145ATOMIC_FLAGS = @ATOMIC_FLAGS@
146ATOMIC_WORD_SRCDIR = @ATOMIC_WORD_SRCDIR@
147AUTOCONF = @AUTOCONF@
148AUTOHEADER = @AUTOHEADER@
149AUTOMAKE = @AUTOMAKE@
150AWK = @AWK@
151BASIC_FILE_CC = @BASIC_FILE_CC@
152BASIC_FILE_H = @BASIC_FILE_H@
153CC = @CC@
154CCODECVT_CC = @CCODECVT_CC@
155CCOLLATE_CC = @CCOLLATE_CC@
156CCTYPE_CC = @CCTYPE_CC@
157CFLAGS = @CFLAGS@
158CLOCALE_CC = @CLOCALE_CC@
159CLOCALE_H = @CLOCALE_H@
160CLOCALE_INTERNAL_H = @CLOCALE_INTERNAL_H@
161CMESSAGES_CC = @CMESSAGES_CC@
162CMESSAGES_H = @CMESSAGES_H@
163CMONEY_CC = @CMONEY_CC@
164CNUMERIC_CC = @CNUMERIC_CC@
165CPP = @CPP@
166CPPFLAGS = @CPPFLAGS@
167CPU_DEFINES_SRCDIR = @CPU_DEFINES_SRCDIR@
168CPU_OPT_BITS_RANDOM = @CPU_OPT_BITS_RANDOM@
169CPU_OPT_EXT_RANDOM = @CPU_OPT_EXT_RANDOM@
170CSTDIO_H = @CSTDIO_H@
171CTIME_CC = @CTIME_CC@
172CTIME_H = @CTIME_H@
173CXX = @CXX@
174CXXCPP = @CXXCPP@
175CXXFILT = @CXXFILT@
176CXXFLAGS = @CXXFLAGS@
177CYGPATH_W = @CYGPATH_W@
178C_INCLUDE_DIR = @C_INCLUDE_DIR@
179DBLATEX = @DBLATEX@
180DEBUG_FLAGS = @DEBUG_FLAGS@
181DEFS = @DEFS@
182DOT = @DOT@
183DOXYGEN = @DOXYGEN@
184DSYMUTIL = @DSYMUTIL@
185DUMPBIN = @DUMPBIN@
186ECHO_C = @ECHO_C@
187ECHO_N = @ECHO_N@
188ECHO_T = @ECHO_T@
189EGREP = @EGREP@
190ERROR_CONSTANTS_SRCDIR = @ERROR_CONSTANTS_SRCDIR@
191EXEEXT = @EXEEXT@
192EXTRA_CXX_FLAGS = @EXTRA_CXX_FLAGS@
193FGREP = @FGREP@
194GLIBCXX_INCLUDES = @GLIBCXX_INCLUDES@
195GLIBCXX_LIBS = @GLIBCXX_LIBS@
196GREP = @GREP@
1ec62aa9 197HWCAP_CFLAGS = @HWCAP_CFLAGS@
0ca7ba9a
JW
198INSTALL = @INSTALL@
199INSTALL_DATA = @INSTALL_DATA@
200INSTALL_PROGRAM = @INSTALL_PROGRAM@
201INSTALL_SCRIPT = @INSTALL_SCRIPT@
202INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
203LD = @LD@
204LDFLAGS = @LDFLAGS@
205LIBICONV = @LIBICONV@
206LIBOBJS = @LIBOBJS@
207LIBS = @LIBS@
208LIBTOOL = @LIBTOOL@
209LIPO = @LIPO@
210LN_S = @LN_S@
6d49b790 211LONG_DOUBLE_COMPAT_FLAGS = @LONG_DOUBLE_COMPAT_FLAGS@
0ca7ba9a
JW
212LTLIBICONV = @LTLIBICONV@
213LTLIBOBJS = @LTLIBOBJS@
214MAINT = @MAINT@
215MAKEINFO = @MAKEINFO@
216MKDIR_P = @MKDIR_P@
217NM = @NM@
218NMEDIT = @NMEDIT@
219OBJDUMP = @OBJDUMP@
220OBJEXT = @OBJEXT@
221OPTIMIZE_CXXFLAGS = @OPTIMIZE_CXXFLAGS@
222OPT_LDFLAGS = @OPT_LDFLAGS@
223OS_INC_SRCDIR = @OS_INC_SRCDIR@
224OTOOL = @OTOOL@
225OTOOL64 = @OTOOL64@
226PACKAGE = @PACKAGE@
227PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
228PACKAGE_NAME = @PACKAGE_NAME@
229PACKAGE_STRING = @PACKAGE_STRING@
230PACKAGE_TARNAME = @PACKAGE_TARNAME@
231PACKAGE_URL = @PACKAGE_URL@
232PACKAGE_VERSION = @PACKAGE_VERSION@
233PATH_SEPARATOR = @PATH_SEPARATOR@
234PDFLATEX = @PDFLATEX@
235RANLIB = @RANLIB@
236SECTION_FLAGS = @SECTION_FLAGS@
237SECTION_LDFLAGS = @SECTION_LDFLAGS@
238SED = @SED@
239SET_MAKE = @SET_MAKE@
240SHELL = @SHELL@
241STRIP = @STRIP@
242SYMVER_FILE = @SYMVER_FILE@
243TOPLEVEL_INCLUDES = @TOPLEVEL_INCLUDES@
244USE_NLS = @USE_NLS@
245VERSION = @VERSION@
246VTV_CXXFLAGS = @VTV_CXXFLAGS@
247VTV_CXXLINKFLAGS = @VTV_CXXLINKFLAGS@
248VTV_PCH_CXXFLAGS = @VTV_PCH_CXXFLAGS@
249WARN_FLAGS = @WARN_FLAGS@
250WERROR = @WERROR@
251XMLLINT = @XMLLINT@
252XSLTPROC = @XSLTPROC@
253XSL_STYLE_DIR = @XSL_STYLE_DIR@
254abs_builddir = @abs_builddir@
255abs_srcdir = @abs_srcdir@
256abs_top_builddir = @abs_top_builddir@
257abs_top_srcdir = @abs_top_srcdir@
258ac_ct_CC = @ac_ct_CC@
259ac_ct_CXX = @ac_ct_CXX@
260ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
261am__leading_dot = @am__leading_dot@
262am__tar = @am__tar@
263am__untar = @am__untar@
264baseline_dir = @baseline_dir@
265baseline_subdir_switch = @baseline_subdir_switch@
266bindir = @bindir@
267build = @build@
268build_alias = @build_alias@
269build_cpu = @build_cpu@
270build_os = @build_os@
271build_vendor = @build_vendor@
272builddir = @builddir@
273check_msgfmt = @check_msgfmt@
274datadir = @datadir@
275datarootdir = @datarootdir@
276docdir = @docdir@
277dvidir = @dvidir@
278enable_shared = @enable_shared@
279enable_static = @enable_static@
280exec_prefix = @exec_prefix@
3c36aa6b 281get_gcc_base_ver = @get_gcc_base_ver@
0ca7ba9a
JW
282glibcxx_MOFILES = @glibcxx_MOFILES@
283glibcxx_PCHFLAGS = @glibcxx_PCHFLAGS@
284glibcxx_POFILES = @glibcxx_POFILES@
285glibcxx_builddir = @glibcxx_builddir@
286glibcxx_compiler_pic_flag = @glibcxx_compiler_pic_flag@
287glibcxx_compiler_shared_flag = @glibcxx_compiler_shared_flag@
288glibcxx_cxx98_abi = @glibcxx_cxx98_abi@
289glibcxx_localedir = @glibcxx_localedir@
290glibcxx_lt_pic_flag = @glibcxx_lt_pic_flag@
291glibcxx_prefixdir = @glibcxx_prefixdir@
292glibcxx_srcdir = @glibcxx_srcdir@
293glibcxx_toolexecdir = @glibcxx_toolexecdir@
294glibcxx_toolexeclibdir = @glibcxx_toolexeclibdir@
295gxx_include_dir = @gxx_include_dir@
296host = @host@
297host_alias = @host_alias@
298host_cpu = @host_cpu@
299host_os = @host_os@
300host_vendor = @host_vendor@
301htmldir = @htmldir@
302includedir = @includedir@
303infodir = @infodir@
304install_sh = @install_sh@
305libdir = @libdir@
306libexecdir = @libexecdir@
307libtool_VERSION = @libtool_VERSION@
308localedir = @localedir@
309localstatedir = @localstatedir@
310lt_host_flags = @lt_host_flags@
311mandir = @mandir@
312mkdir_p = @mkdir_p@
313multi_basedir = @multi_basedir@
314oldincludedir = @oldincludedir@
315pdfdir = @pdfdir@
316port_specific_symbol_files = @port_specific_symbol_files@
317prefix = @prefix@
318program_transform_name = @program_transform_name@
319psdir = @psdir@
320python_mod_dir = @python_mod_dir@
321sbindir = @sbindir@
322sharedstatedir = @sharedstatedir@
323srcdir = @srcdir@
324sysconfdir = @sysconfdir@
325target = @target@
326target_alias = @target_alias@
327target_cpu = @target_cpu@
328target_os = @target_os@
329target_vendor = @target_vendor@
330thread_header = @thread_header@
331top_build_prefix = @top_build_prefix@
332top_builddir = @top_builddir@
333top_srcdir = @top_srcdir@
334toplevel_builddir = @toplevel_builddir@
335toplevel_srcdir = @toplevel_srcdir@
336
337# May be used by various substitution variables.
3c36aa6b 338gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
0ca7ba9a
JW
339MAINT_CHARSET = latin1
340mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
341PWD_COMMAND = $${PWDCMD-pwd}
342STAMP = echo timestamp >
343toolexecdir = $(glibcxx_toolexecdir)
344toolexeclibdir = $(glibcxx_toolexeclibdir)
345@ENABLE_WERROR_FALSE@WERROR_FLAG =
346@ENABLE_WERROR_TRUE@WERROR_FLAG = $(WERROR)
347@ENABLE_EXTERN_TEMPLATE_FALSE@XTEMPLATE_FLAGS =
348@ENABLE_EXTERN_TEMPLATE_TRUE@XTEMPLATE_FLAGS = -fno-implicit-templates
349
350# These bits are all figured out from configure. Look in acinclude.m4
351# or configure.ac to see how they are set. See GLIBCXX_EXPORT_FLAGS.
352CONFIG_CXXFLAGS = \
1ec62aa9 353 $(SECTION_FLAGS) $(HWCAP_CFLAGS) -frandom-seed=$@
0ca7ba9a
JW
354
355WARN_CXXFLAGS = \
356 $(WARN_FLAGS) $(WERROR_FLAG) -fdiagnostics-show-location=once
357
358
359# -I/-D flags to pass when compiling.
74b7ec8c 360AM_CPPFLAGS = $(GLIBCXX_INCLUDES) $(CPPFLAGS)
0ca7ba9a
JW
361toolexeclib_LTLIBRARIES = libstdc++fs.la
362headers =
8b756210
JW
363@ENABLE_DUAL_ABI_FALSE@cxx11_abi_sources =
364@ENABLE_DUAL_ABI_TRUE@cxx11_abi_sources = \
365@ENABLE_DUAL_ABI_TRUE@ cow-dir.cc \
366@ENABLE_DUAL_ABI_TRUE@ cow-ops.cc \
641cb5a6
JW
367@ENABLE_DUAL_ABI_TRUE@ cow-path.cc \
368@ENABLE_DUAL_ABI_TRUE@ cow-std-dir.cc \
369@ENABLE_DUAL_ABI_TRUE@ cow-std-ops.cc \
370@ENABLE_DUAL_ABI_TRUE@ cow-std-path.cc
8b756210 371
0ca7ba9a
JW
372sources = \
373 dir.cc \
374 ops.cc \
8b756210 375 path.cc \
641cb5a6
JW
376 std-dir.cc \
377 std-ops.cc \
378 std-path.cc \
8b756210 379 ${cxx11_abi_sources}
0ca7ba9a
JW
380
381
382# vpath % $(top_srcdir)/src/filesystem
383libstdc__fs_la_SOURCES = $(sources)
384
385# AM_CXXFLAGS needs to be in each subdirectory so that it can be
386# modified in a per-library or per-sub-library way. Need to manually
387# set this option because CONFIG_CXXFLAGS has to be after
388# OPTIMIZE_CXXFLAGS on the compile line so that -O2 can be overridden
389# as the occasion call for it.
390AM_CXXFLAGS = \
391 $(glibcxx_lt_pic_flag) $(glibcxx_compiler_shared_flag) \
641cb5a6 392 -std=gnu++17 \
0ca7ba9a
JW
393 $(WARN_CXXFLAGS) $(OPTIMIZE_CXXFLAGS) $(CONFIG_CXXFLAGS)
394
395AM_MAKEFLAGS = \
396 "gxx_include_dir=$(gxx_include_dir)"
397
398
399# Libtool notes
400
401# 1) In general, libtool expects an argument such as `--tag=CXX' when
402# using the C++ compiler, because that will enable the settings
403# detected when C++ support was being configured. However, when no
404# such flag is given in the command line, libtool attempts to figure
405# it out by matching the compiler name in each configuration section
406# against a prefix of the command line. The problem is that, if the
407# compiler name and its initial flags stored in the libtool
408# configuration file don't match those in the command line, libtool
409# can't decide which configuration to use, and it gives up. The
410# correct solution is to add `--tag CXX' to LTCXXCOMPILE and maybe
411# CXXLINK, just after $(LIBTOOL), so that libtool doesn't have to
412# attempt to infer which configuration to use.
f92ab29f 413#
0ca7ba9a
JW
414# The second tag argument, `--tag disable-shared` means that libtool
415# only compiles each source once, for static objects. In actuality,
416# glibcxx_lt_pic_flag and glibcxx_compiler_shared_flag are added to
417# the libtool command that is used create the object, which is
418# suitable for shared libraries. The `--tag disable-shared` must be
419# placed after --tag CXX lest things CXX undo the affect of
420# disable-shared.
421
422# 2) Need to explicitly set LTCXXCOMPILE so that EXTRA_CXX_FLAGS is
423# last. (That way, things like -O2 passed down from the toplevel can
424# be overridden by --enable-debug.)
425LTCXXCOMPILE = \
426 $(LIBTOOL) --tag CXX --tag disable-shared \
427 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
428 --mode=compile $(CXX) $(TOPLEVEL_INCLUDES) \
429 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) $(EXTRA_CXX_FLAGS)
430
431LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
432
433# 3) We'd have a problem when building the shared libstdc++ object if
434# the rules automake generates would be used. We cannot allow g++ to
435# be used since this would add -lstdc++ to the link line which of
436# course is problematic at this point. So, we get the top-level
437# directory to configure libstdc++-v3 to use gcc as the C++
438# compilation driver.
439CXXLINK = \
440 $(LIBTOOL) --tag CXX --tag disable-shared \
441 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
442 --mode=link $(CXX) \
443 $(OPT_LDFLAGS) $(SECTION_LDFLAGS) $(AM_CXXFLAGS) $(LTLDFLAGS) -o $@
444
445
446# By adding these files here, automake will remove them for 'make clean'
447CLEANFILES = stamp-*
448all: all-am
449
450.SUFFIXES:
451.SUFFIXES: .cc .lo .o .obj
452$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/fragment.am $(am__configure_deps)
453 @for dep in $?; do \
454 case '$(am__configure_deps)' in \
455 *$$dep*) \
456 ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
457 && { if test -f $@; then exit 0; else break; fi; }; \
458 exit 1;; \
459 esac; \
460 done; \
461 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/filesystem/Makefile'; \
462 $(am__cd) $(top_srcdir) && \
463 $(AUTOMAKE) --foreign --ignore-deps src/filesystem/Makefile
464.PRECIOUS: Makefile
465Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
466 @case '$?' in \
467 *config.status*) \
468 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
469 *) \
470 echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
471 cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
472 esac;
6ef93676 473$(top_srcdir)/fragment.am:
0ca7ba9a
JW
474
475$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
476 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
477
478$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
479 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
480$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
481 cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
482$(am__aclocal_m4_deps):
483install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
484 @$(NORMAL_INSTALL)
0ca7ba9a
JW
485 @list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
486 list2=; for p in $$list; do \
487 if test -f $$p; then \
488 list2="$$list2 $$p"; \
489 else :; fi; \
490 done; \
491 test -z "$$list2" || { \
6ef93676
MH
492 echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
493 $(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
0ca7ba9a
JW
494 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(toolexeclibdir)'"; \
495 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(toolexeclibdir)"; \
496 }
497
498uninstall-toolexeclibLTLIBRARIES:
499 @$(NORMAL_UNINSTALL)
500 @list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
501 for p in $$list; do \
502 $(am__strip_dir) \
503 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(toolexeclibdir)/$$f'"; \
504 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(toolexeclibdir)/$$f"; \
505 done
506
507clean-toolexeclibLTLIBRARIES:
508 -test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
509 @list='$(toolexeclib_LTLIBRARIES)'; for p in $$list; do \
510 dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
511 test "$$dir" != "$$p" || dir=.; \
512 echo "rm -f \"$${dir}/so_locations\""; \
513 rm -f "$${dir}/so_locations"; \
514 done
6ef93676 515libstdc++fs.la: $(libstdc__fs_la_OBJECTS) $(libstdc__fs_la_DEPENDENCIES) $(EXTRA_libstdc__fs_la_DEPENDENCIES)
0ca7ba9a
JW
516 $(CXXLINK) -rpath $(toolexeclibdir) $(libstdc__fs_la_OBJECTS) $(libstdc__fs_la_LIBADD) $(LIBS)
517
518mostlyclean-compile:
519 -rm -f *.$(OBJEXT)
520
521distclean-compile:
522 -rm -f *.tab.c
523
524.cc.o:
525 $(CXXCOMPILE) -c -o $@ $<
526
527.cc.obj:
528 $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
529
530.cc.lo:
531 $(LTCXXCOMPILE) -c -o $@ $<
532
533mostlyclean-libtool:
534 -rm -f *.lo
535
536clean-libtool:
537 -rm -rf .libs _libs
538
539ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
540 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
541 unique=`for i in $$list; do \
542 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
543 done | \
544 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
545 END { if (nonempty) { for (i in files) print i; }; }'`; \
546 mkid -fID $$unique
547tags: TAGS
548
549TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
550 $(TAGS_FILES) $(LISP)
551 set x; \
552 here=`pwd`; \
553 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
554 unique=`for i in $$list; do \
555 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
556 done | \
557 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
558 END { if (nonempty) { for (i in files) print i; }; }'`; \
559 shift; \
560 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
561 test -n "$$unique" || unique=$$empty_fix; \
562 if test $$# -gt 0; then \
563 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
564 "$$@" $$unique; \
565 else \
566 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
567 $$unique; \
568 fi; \
569 fi
570ctags: CTAGS
571CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
572 $(TAGS_FILES) $(LISP)
573 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
574 unique=`for i in $$list; do \
575 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
576 done | \
577 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
578 END { if (nonempty) { for (i in files) print i; }; }'`; \
579 test -z "$(CTAGS_ARGS)$$unique" \
580 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
581 $$unique
582
583GTAGS:
584 here=`$(am__cd) $(top_builddir) && pwd` \
585 && $(am__cd) $(top_srcdir) \
586 && gtags -i $(GTAGS_ARGS) "$$here"
587
588distclean-tags:
589 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
590check-am: all-am
591check: check-am
592all-am: Makefile $(LTLIBRARIES)
593installdirs:
594 for dir in "$(DESTDIR)$(toolexeclibdir)"; do \
595 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
596 done
597install: install-am
598install-exec: install-exec-am
599install-data: install-data-am
600uninstall: uninstall-am
601
602install-am: all-am
603 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
604
605installcheck: installcheck-am
606install-strip:
6ef93676
MH
607 if test -z '$(STRIP)'; then \
608 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
609 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
610 install; \
611 else \
612 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
613 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
614 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
615 fi
0ca7ba9a
JW
616mostlyclean-generic:
617
618clean-generic:
619 -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
620
621distclean-generic:
622 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
623 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
624
625maintainer-clean-generic:
626 @echo "This command is intended for maintainers to use"
627 @echo "it deletes files that may require special tools to rebuild."
628clean: clean-am
629
630clean-am: clean-generic clean-libtool clean-toolexeclibLTLIBRARIES \
631 mostlyclean-am
632
633distclean: distclean-am
634 -rm -f Makefile
635distclean-am: clean-am distclean-compile distclean-generic \
636 distclean-tags
637
638dvi: dvi-am
639
640dvi-am:
641
642html: html-am
643
644html-am:
645
646info: info-am
647
648info-am:
649
650install-data-am:
651
652install-dvi: install-dvi-am
653
654install-dvi-am:
655
656install-exec-am: install-toolexeclibLTLIBRARIES
657
658install-html: install-html-am
659
660install-html-am:
661
662install-info: install-info-am
663
664install-info-am:
665
666install-man:
667
668install-pdf: install-pdf-am
669
670install-pdf-am:
671
672install-ps: install-ps-am
673
674install-ps-am:
675
676installcheck-am:
677
678maintainer-clean: maintainer-clean-am
679 -rm -f Makefile
680maintainer-clean-am: distclean-am maintainer-clean-generic
681
682mostlyclean: mostlyclean-am
683
684mostlyclean-am: mostlyclean-compile mostlyclean-generic \
685 mostlyclean-libtool
686
687pdf: pdf-am
688
689pdf-am:
690
691ps: ps-am
692
693ps-am:
694
695uninstall-am: uninstall-toolexeclibLTLIBRARIES
696
697.MAKE: install-am install-strip
698
699.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
700 clean-libtool clean-toolexeclibLTLIBRARIES ctags distclean \
701 distclean-compile distclean-generic distclean-libtool \
702 distclean-tags dvi dvi-am html html-am info info-am install \
703 install-am install-data install-data-am install-dvi \
704 install-dvi-am install-exec install-exec-am install-html \
705 install-html-am install-info install-info-am install-man \
706 install-pdf install-pdf-am install-ps install-ps-am \
707 install-strip install-toolexeclibLTLIBRARIES installcheck \
708 installcheck-am installdirs maintainer-clean \
709 maintainer-clean-generic mostlyclean mostlyclean-compile \
710 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
711 tags uninstall uninstall-am uninstall-toolexeclibLTLIBRARIES
712
713
714# Tell versions [3.59,3.63) of GNU make to not export all variables.
715# Otherwise a system limit (for SysV at least) may be exceeded.
716.NOEXPORT: