]> git.ipfire.org Git - thirdparty/gcc.git/blame - libphobos/Makefile.in
Work around Solaris ld bug linking __tls_get_addr on 64-bit x86
[thirdparty/gcc.git] / libphobos / Makefile.in
CommitLineData
f00f02a3 1# Makefile.in generated by automake 1.15.1 from Makefile.am.
03385ed3 2# @configure_input@
3
f00f02a3 4# Copyright (C) 1994-2017 Free Software Foundation, Inc.
5
03385ed3 6# This Makefile.in is free software; the Free Software Foundation
7# gives unlimited permission to copy and/or distribute it,
8# with or without modifications, as long as this notice is preserved.
9
10# This program is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
12# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13# PARTICULAR PURPOSE.
14
15@SET_MAKE@
16
17# Makefile for the toplevel directory of the D Standard library.
59b584a4 18# Copyright (C) 2006-2019 Free Software Foundation, Inc.
03385ed3 19#
20# GCC is free software; you can redistribute it and/or modify
21# it under the terms of the GNU General Public License as published by
22# the Free Software Foundation; either version 3, or (at your option)
23# any later version.
24#
25# GCC is distributed in the hope that it will be useful,
26# but WITHOUT ANY WARRANTY; without even the implied warranty of
27# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
28# GNU General Public License for more details.
29#
30# You should have received a copy of the GNU General Public License
31# along with GCC; see the file COPYING3. If not see
32# <http://www.gnu.org/licenses/>.
33VPATH = @srcdir@
f00f02a3 34am__is_gnu_make = { \
35 if test -z '$(MAKELEVEL)'; then \
36 false; \
37 elif test -n '$(MAKE_HOST)'; then \
38 true; \
39 elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
40 true; \
41 else \
42 false; \
43 fi; \
44}
45am__make_running_with_option = \
46 case $${target_option-} in \
47 ?) ;; \
48 *) echo "am__make_running_with_option: internal error: invalid" \
49 "target option '$${target_option-}' specified" >&2; \
50 exit 1;; \
51 esac; \
52 has_opt=no; \
53 sane_makeflags=$$MAKEFLAGS; \
54 if $(am__is_gnu_make); then \
55 sane_makeflags=$$MFLAGS; \
56 else \
03385ed3 57 case $$MAKEFLAGS in \
58 *\\[\ \ ]*) \
f00f02a3 59 bs=\\; \
60 sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
61 | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
62 esac; \
63 fi; \
64 skip_next=no; \
65 strip_trailopt () \
66 { \
67 flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
68 }; \
69 for flg in $$sane_makeflags; do \
70 test $$skip_next = yes && { skip_next=no; continue; }; \
71 case $$flg in \
72 *=*|--*) continue;; \
73 -*I) strip_trailopt 'I'; skip_next=yes;; \
74 -*I?*) strip_trailopt 'I';; \
75 -*O) strip_trailopt 'O'; skip_next=yes;; \
76 -*O?*) strip_trailopt 'O';; \
77 -*l) strip_trailopt 'l'; skip_next=yes;; \
78 -*l?*) strip_trailopt 'l';; \
79 -[dEDm]) skip_next=yes;; \
80 -[JT]) skip_next=yes;; \
81 esac; \
82 case $$flg in \
83 *$$target_option*) has_opt=yes; break;; \
03385ed3 84 esac; \
f00f02a3 85 done; \
86 test $$has_opt = yes
87am__make_dryrun = (target_option=n; $(am__make_running_with_option))
88am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
03385ed3 89pkgdatadir = $(datadir)/@PACKAGE@
90pkgincludedir = $(includedir)/@PACKAGE@
91pkglibdir = $(libdir)/@PACKAGE@
92pkglibexecdir = $(libexecdir)/@PACKAGE@
93am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
94install_sh_DATA = $(install_sh) -c -m 644
95install_sh_PROGRAM = $(install_sh) -c
96install_sh_SCRIPT = $(install_sh) -c
97INSTALL_HEADER = $(INSTALL_DATA)
98transform = $(program_transform_name)
99NORMAL_INSTALL = :
100PRE_INSTALL = :
101POST_INSTALL = :
102NORMAL_UNINSTALL = :
103PRE_UNINSTALL = :
104POST_UNINSTALL = :
105build_triplet = @build@
106host_triplet = @host@
107target_triplet = @target@
108subdir = .
03385ed3 109ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
110am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
111 $(top_srcdir)/../config/lead-dot.m4 \
112 $(top_srcdir)/../config/multi.m4 \
113 $(top_srcdir)/../config/override.m4 \
114 $(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
115 $(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
116 $(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/acinclude.m4 \
117 $(top_srcdir)/m4/gcc_support.m4 $(top_srcdir)/m4/autoconf.m4 \
118 $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/gdc.m4 \
119 $(top_srcdir)/m4/druntime.m4 $(top_srcdir)/m4/druntime/cpu.m4 \
120 $(top_srcdir)/m4/druntime/os.m4 \
121 $(top_srcdir)/m4/druntime/libraries.m4 \
122 $(top_srcdir)/configure.ac
123am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
124 $(ACLOCAL_M4)
f00f02a3 125DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
126 $(am__configure_deps)
03385ed3 127am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
128 configure.lineno config.status.lineno
129mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
130CONFIG_HEADER = config.h
131CONFIG_CLEAN_FILES = libdruntime/gcc/config.d \
132 libdruntime/gcc/libbacktrace.d
133CONFIG_CLEAN_VPATH_FILES =
f00f02a3 134AM_V_P = $(am__v_P_@AM_V@)
135am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
136am__v_P_0 = false
137am__v_P_1 = :
138AM_V_GEN = $(am__v_GEN_@AM_V@)
139am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
140am__v_GEN_0 = @echo " GEN " $@;
141am__v_GEN_1 =
142AM_V_at = $(am__v_at_@AM_V@)
143am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
144am__v_at_0 = @
145am__v_at_1 =
03385ed3 146depcomp =
147am__depfiles_maybe =
148SOURCES =
f00f02a3 149RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
150 ctags-recursive dvi-recursive html-recursive info-recursive \
151 install-data-recursive install-dvi-recursive \
152 install-exec-recursive install-html-recursive \
153 install-info-recursive install-pdf-recursive \
154 install-ps-recursive install-recursive installcheck-recursive \
155 installdirs-recursive pdf-recursive ps-recursive \
156 tags-recursive uninstall-recursive
03385ed3 157am__can_run_installinfo = \
158 case $$AM_UPDATE_INFO_DIR in \
159 n|no|NO) false;; \
160 *) (install-info --version) >/dev/null 2>&1;; \
161 esac
162RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
163 distclean-recursive maintainer-clean-recursive
f00f02a3 164am__recursive_targets = \
165 $(RECURSIVE_TARGETS) \
166 $(RECURSIVE_CLEAN_TARGETS) \
167 $(am__extra_recursive_targets)
168AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
169 cscope
170am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
171 $(LISP)config.h.in
172# Read a list of newline-separated strings from the standard input,
173# and print each of them once, without duplicates. Input order is
174# *not* preserved.
175am__uniquify_input = $(AWK) '\
176 BEGIN { nonempty = 0; } \
177 { items[$$0] = 1; nonempty = 1; } \
178 END { if (nonempty) { for (i in items) print i; }; } \
179'
180# Make sure the list of sources is unique. This is necessary because,
181# e.g., the same source file might be shared among _SOURCES variables
182# for different programs/libraries.
183am__define_uniq_tagged_files = \
184 list='$(am__tagged_files)'; \
185 unique=`for i in $$list; do \
186 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
187 done | $(am__uniquify_input)`
03385ed3 188ETAGS = etags
189CTAGS = ctags
f00f02a3 190CSCOPE = cscope
03385ed3 191DIST_SUBDIRS = $(SUBDIRS)
192ACLOCAL = @ACLOCAL@
193AMTAR = @AMTAR@
f00f02a3 194AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
03385ed3 195AR = @AR@
196AUTOCONF = @AUTOCONF@
197AUTOHEADER = @AUTOHEADER@
198AUTOMAKE = @AUTOMAKE@
199AWK = @AWK@
200BACKTRACE_SUPPORTED = @BACKTRACE_SUPPORTED@
201BACKTRACE_SUPPORTS_THREADS = @BACKTRACE_SUPPORTS_THREADS@
202BACKTRACE_USES_MALLOC = @BACKTRACE_USES_MALLOC@
203CC = @CC@
204CCAS = @CCAS@
205CCASFLAGS = @CCASFLAGS@
206CC_FOR_BUILD = @CC_FOR_BUILD@
207CFLAGS = @CFLAGS@
208CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@
209CPP = @CPP@
210CPPFLAGS = @CPPFLAGS@
211CYGPATH_W = @CYGPATH_W@
212DCFG_ARM_EABI_UNWINDER = @DCFG_ARM_EABI_UNWINDER@
213DCFG_HAVE_64BIT_ATOMICS = @DCFG_HAVE_64BIT_ATOMICS@
214DCFG_HAVE_ATOMIC_BUILTINS = @DCFG_HAVE_ATOMIC_BUILTINS@
215DCFG_HAVE_LIBATOMIC = @DCFG_HAVE_LIBATOMIC@
f667f7c1 216DCFG_HAVE_QSORT_R = @DCFG_HAVE_QSORT_R@
03385ed3 217DCFG_MINFO_BRACKETING = @DCFG_MINFO_BRACKETING@
218DCFG_THREAD_MODEL = @DCFG_THREAD_MODEL@
219DEFS = @DEFS@
03385ed3 220DSYMUTIL = @DSYMUTIL@
221DUMPBIN = @DUMPBIN@
222ECHO_C = @ECHO_C@
223ECHO_N = @ECHO_N@
224ECHO_T = @ECHO_T@
225EGREP = @EGREP@
226EXEEXT = @EXEEXT@
227FGREP = @FGREP@
228GDC = @GDC@
229GDCFLAGS = @GDCFLAGS@
230GDCFLAGSX = @GDCFLAGSX@
231GREP = @GREP@
232INSTALL = @INSTALL@
233INSTALL_DATA = @INSTALL_DATA@
234INSTALL_PROGRAM = @INSTALL_PROGRAM@
235INSTALL_SCRIPT = @INSTALL_SCRIPT@
236INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
237LD = @LD@
238LDFLAGS = @LDFLAGS@
239LIBATOMIC = @LIBATOMIC@
240LIBBACKTRACE = @LIBBACKTRACE@
241LIBOBJS = @LIBOBJS@
242LIBS = @LIBS@
243LIBTOOL = @LIBTOOL@
e60a24bd 244LIBZ = @LIBZ@
03385ed3 245LIPO = @LIPO@
246LN_S = @LN_S@
247LTLIBOBJS = @LTLIBOBJS@
248MAINT = @MAINT@
249MAKEINFO = @MAKEINFO@
250MKDIR_P = @MKDIR_P@
251NM = @NM@
252NMEDIT = @NMEDIT@
253OBJDUMP = @OBJDUMP@
254OBJEXT = @OBJEXT@
5b79027a 255OS_LINK_SPEC = @OS_LINK_SPEC@
03385ed3 256OTOOL = @OTOOL@
257OTOOL64 = @OTOOL64@
258PACKAGE = @PACKAGE@
259PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
260PACKAGE_NAME = @PACKAGE_NAME@
261PACKAGE_STRING = @PACKAGE_STRING@
262PACKAGE_TARNAME = @PACKAGE_TARNAME@
263PACKAGE_URL = @PACKAGE_URL@
264PACKAGE_VERSION = @PACKAGE_VERSION@
265PATH_SEPARATOR = @PATH_SEPARATOR@
03385ed3 266RANLIB = @RANLIB@
267SED = @SED@
268SET_MAKE = @SET_MAKE@
269SHELL = @SHELL@
270SPEC_PHOBOS_DEPS = @SPEC_PHOBOS_DEPS@
271STRIP = @STRIP@
272VERSION = @VERSION@
273abs_builddir = @abs_builddir@
274abs_srcdir = @abs_srcdir@
275abs_top_builddir = @abs_top_builddir@
276abs_top_srcdir = @abs_top_srcdir@
277ac_ct_CC = @ac_ct_CC@
278ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
279am__leading_dot = @am__leading_dot@
280am__tar = @am__tar@
281am__untar = @am__untar@
282bindir = @bindir@
283build = @build@
284build_alias = @build_alias@
285build_cpu = @build_cpu@
286build_os = @build_os@
287build_vendor = @build_vendor@
288builddir = @builddir@
289datadir = @datadir@
290datarootdir = @datarootdir@
291docdir = @docdir@
292dvidir = @dvidir@
293exec_prefix = @exec_prefix@
294gcc_version = @gcc_version@
295gdc_include_dir = @gdc_include_dir@
296get_gcc_base_ver = @get_gcc_base_ver@
297host = @host@
298host_alias = @host_alias@
299host_cpu = @host_cpu@
300host_os = @host_os@
301host_vendor = @host_vendor@
302htmldir = @htmldir@
303includedir = @includedir@
304infodir = @infodir@
305install_sh = @install_sh@
306libdir = @libdir@
307libexecdir = @libexecdir@
308libphobos_builddir = @libphobos_builddir@
309libphobos_srcdir = @libphobos_srcdir@
5114391d 310libphobos_toolexecdir = @libphobos_toolexecdir@
311libphobos_toolexeclibdir = @libphobos_toolexeclibdir@
345422ff 312libtool_VERSION = @libtool_VERSION@
03385ed3 313localedir = @localedir@
314localstatedir = @localstatedir@
315mandir = @mandir@
316mkdir_p = @mkdir_p@
317multi_basedir = @multi_basedir@
318oldincludedir = @oldincludedir@
319pdfdir = @pdfdir@
320phobos_compiler_pic_flag = @phobos_compiler_pic_flag@
321phobos_compiler_shared_flag = @phobos_compiler_shared_flag@
322prefix = @prefix@
323program_transform_name = @program_transform_name@
324psdir = @psdir@
325sbindir = @sbindir@
326sharedstatedir = @sharedstatedir@
327srcdir = @srcdir@
328sysconfdir = @sysconfdir@
329target = @target@
330target_alias = @target_alias@
331target_cpu = @target_cpu@
332target_os = @target_os@
333target_vendor = @target_vendor@
03385ed3 334top_build_prefix = @top_build_prefix@
335top_builddir = @top_builddir@
336top_srcdir = @top_srcdir@
337SUBDIRS = libdruntime src testsuite
338ACLOCAL_AMFLAGS = -I . -I .. -I ../config
339
340# Multilib support.
341MAKEOVERRIDES =
342
343# Work around what appears to be a GNU make bug handling MAKEFLAGS
344# values defined in terms of make variables, as is the case for CC and
345# friends when we are called from the top level Makefile.
346AM_MAKEFLAGS = \
347 "AR_FLAGS=$(AR_FLAGS)" \
348 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
349 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
7c4affc0 350 "CCASFLAGS=$(CCASFLAGS)" \
03385ed3 351 "CFLAGS=$(CFLAGS)" \
352 "CXXFLAGS=$(CXXFLAGS)" \
353 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
354 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
355 "GDC_FOR_TARGET=$(GDC_FOR_TARGET)" \
356 "GDC=$(GDC)" \
7c4affc0 357 "GDCFLAGS=$(GDCFLAGS)" \
03385ed3 358 "INSTALL=$(INSTALL)" \
359 "INSTALL_DATA=$(INSTALL_DATA)" \
360 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
361 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
362 "LDFLAGS=$(LDFLAGS)" \
363 "LIBCFLAGS=$(LIBCFLAGS)" \
364 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
365 "MAKE=$(MAKE)" \
366 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
367 "PICFLAG=$(PICFLAG)" \
368 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
369 "SHELL=$(SHELL)" \
370 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
371 "exec_prefix=$(exec_prefix)" \
372 "infodir=$(infodir)" \
373 "libdir=$(libdir)" \
374 "includedir=$(includedir)" \
375 "prefix=$(prefix)" \
376 "tooldir=$(tooldir)" \
377 "gdc_include_dir=$(gdc_include_dir)" \
378 "AR=$(AR)" \
379 "AS=$(AS)" \
380 "LD=$(LD)" \
381 "RANLIB=$(RANLIB)" \
382 "NM=$(NM)" \
383 "NM_FOR_BUILD=$(NM_FOR_BUILD)" \
384 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
385 "DESTDIR=$(DESTDIR)" \
386 "WERROR=$(WERROR)"
387
388
389# Subdir rules rely on $(FLAGS_TO_PASS)
390FLAGS_TO_PASS = $(AM_MAKEFLAGS)
f00f02a3 391MULTISRCTOP =
392MULTIBUILDTOP =
393MULTIDIRS =
394MULTISUBDIR =
395MULTIDO = true
396MULTICLEAN = true
03385ed3 397all: config.h
398 $(MAKE) $(AM_MAKEFLAGS) all-recursive
399
400.SUFFIXES:
401am--refresh: Makefile
402 @:
f00f02a3 403$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/../multilib.am $(am__configure_deps)
03385ed3 404 @for dep in $?; do \
405 case '$(am__configure_deps)' in \
406 *$$dep*) \
407 echo ' cd $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps'; \
408 $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps \
409 && exit 0; \
410 exit 1;; \
411 esac; \
412 done; \
413 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps Makefile'; \
414 $(am__cd) $(top_srcdir) && \
415 $(AUTOMAKE) --foreign --ignore-deps Makefile
03385ed3 416Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
417 @case '$?' in \
418 *config.status*) \
419 echo ' $(SHELL) ./config.status'; \
420 $(SHELL) ./config.status;; \
421 *) \
422 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
423 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
424 esac;
f00f02a3 425$(top_srcdir)/../multilib.am $(am__empty):
03385ed3 426
427$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
428 $(SHELL) ./config.status --recheck
429
430$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
431 $(am__cd) $(srcdir) && $(AUTOCONF)
432$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
433 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
434$(am__aclocal_m4_deps):
435
436config.h: stamp-h1
f00f02a3 437 @test -f $@ || rm -f stamp-h1
438 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
03385ed3 439
440stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
441 @rm -f stamp-h1
442 cd $(top_builddir) && $(SHELL) ./config.status config.h
443$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
444 ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
445 rm -f stamp-h1
446 touch $@
447
448distclean-hdr:
449 -rm -f config.h stamp-h1
450libdruntime/gcc/config.d: $(top_builddir)/config.status $(top_srcdir)/libdruntime/gcc/config.d.in
451 cd $(top_builddir) && $(SHELL) ./config.status $@
452libdruntime/gcc/libbacktrace.d: $(top_builddir)/config.status $(top_srcdir)/libdruntime/gcc/libbacktrace.d.in
453 cd $(top_builddir) && $(SHELL) ./config.status $@
454
455mostlyclean-libtool:
456 -rm -f *.lo
457
458clean-libtool:
459 -rm -rf .libs _libs
460
461distclean-libtool:
462 -rm -f libtool config.lt
463
03385ed3 464# This directory's subdirectories are mostly independent; you can cd
f00f02a3 465# into them and run 'make' without going through this Makefile.
466# To change the values of 'make' variables: instead of editing Makefiles,
467# (1) if the variable is set in 'config.status', edit 'config.status'
468# (which will cause the Makefiles to be regenerated when you run 'make');
469# (2) otherwise, pass the desired values on the 'make' command line.
470$(am__recursive_targets):
471 @fail=; \
472 if $(am__make_keepgoing); then \
473 failcom='fail=yes'; \
474 else \
475 failcom='exit 1'; \
476 fi; \
03385ed3 477 dot_seen=no; \
478 target=`echo $@ | sed s/-recursive//`; \
f00f02a3 479 case "$@" in \
480 distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
481 *) list='$(SUBDIRS)' ;; \
482 esac; \
483 for subdir in $$list; do \
03385ed3 484 echo "Making $$target in $$subdir"; \
485 if test "$$subdir" = "."; then \
486 dot_seen=yes; \
487 local_target="$$target-am"; \
488 else \
489 local_target="$$target"; \
490 fi; \
491 ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
492 || eval $$failcom; \
493 done; \
494 if test "$$dot_seen" = "no"; then \
495 $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
496 fi; test -z "$$fail"
497
f00f02a3 498ID: $(am__tagged_files)
499 $(am__define_uniq_tagged_files); mkid -fID $$unique
500tags: tags-recursive
501TAGS: tags
502
503tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
03385ed3 504 set x; \
505 here=`pwd`; \
506 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
507 include_option=--etags-include; \
508 empty_fix=.; \
509 else \
510 include_option=--include; \
511 empty_fix=; \
512 fi; \
513 list='$(SUBDIRS)'; for subdir in $$list; do \
514 if test "$$subdir" = .; then :; else \
515 test ! -f $$subdir/TAGS || \
516 set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
517 fi; \
518 done; \
f00f02a3 519 $(am__define_uniq_tagged_files); \
03385ed3 520 shift; \
521 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
522 test -n "$$unique" || unique=$$empty_fix; \
523 if test $$# -gt 0; then \
524 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
525 "$$@" $$unique; \
526 else \
527 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
528 $$unique; \
529 fi; \
530 fi
f00f02a3 531ctags: ctags-recursive
532
533CTAGS: ctags
534ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
535 $(am__define_uniq_tagged_files); \
03385ed3 536 test -z "$(CTAGS_ARGS)$$unique" \
537 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
538 $$unique
539
540GTAGS:
541 here=`$(am__cd) $(top_builddir) && pwd` \
542 && $(am__cd) $(top_srcdir) \
543 && gtags -i $(GTAGS_ARGS) "$$here"
f00f02a3 544cscope: cscope.files
545 test ! -s cscope.files \
546 || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
547clean-cscope:
548 -rm -f cscope.files
549cscope.files: clean-cscope cscopelist
550cscopelist: cscopelist-recursive
551
552cscopelist-am: $(am__tagged_files)
553 list='$(am__tagged_files)'; \
554 case "$(srcdir)" in \
555 [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
556 *) sdir=$(subdir)/$(srcdir) ;; \
557 esac; \
558 for i in $$list; do \
559 if test -f "$$i"; then \
560 echo "$(subdir)/$$i"; \
561 else \
562 echo "$$sdir/$$i"; \
563 fi; \
564 done >> $(top_builddir)/cscope.files
03385ed3 565
566distclean-tags:
567 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
f00f02a3 568 -rm -f cscope.out cscope.in.out cscope.po.out cscope.files
03385ed3 569check-am: all-am
570check: check-recursive
f00f02a3 571all-am: Makefile config.h all-local
03385ed3 572installdirs: installdirs-recursive
573installdirs-am:
574install: install-recursive
575install-exec: install-exec-recursive
576install-data: install-data-recursive
577uninstall: uninstall-recursive
578
579install-am: all-am
580 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
581
582installcheck: installcheck-recursive
583install-strip:
584 if test -z '$(STRIP)'; then \
585 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
586 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
587 install; \
588 else \
589 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
590 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
591 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
592 fi
593mostlyclean-generic:
594
595clean-generic:
596
597distclean-generic:
598 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
599 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
600
601maintainer-clean-generic:
602 @echo "This command is intended for maintainers to use"
603 @echo "it deletes files that may require special tools to rebuild."
f00f02a3 604clean: clean-recursive
03385ed3 605
f00f02a3 606clean-am: clean-generic clean-libtool clean-local mostlyclean-am
03385ed3 607
f00f02a3 608distclean: distclean-recursive
03385ed3 609 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
610 -rm -f Makefile
611distclean-am: clean-am distclean-generic distclean-hdr \
f00f02a3 612 distclean-libtool distclean-local distclean-tags
03385ed3 613
614dvi: dvi-recursive
615
616dvi-am:
617
618html: html-recursive
619
620html-am:
621
622info: info-recursive
623
624info-am:
625
626install-data-am:
627
628install-dvi: install-dvi-recursive
629
630install-dvi-am:
631
f00f02a3 632install-exec-am: install-exec-local
03385ed3 633
634install-html: install-html-recursive
635
636install-html-am:
637
638install-info: install-info-recursive
639
640install-info-am:
641
642install-man:
643
644install-pdf: install-pdf-recursive
645
646install-pdf-am:
647
648install-ps: install-ps-recursive
649
650install-ps-am:
651
652installcheck-am:
653
f00f02a3 654maintainer-clean: maintainer-clean-recursive
03385ed3 655 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
656 -rm -rf $(top_srcdir)/autom4te.cache
657 -rm -f Makefile
f00f02a3 658maintainer-clean-am: distclean-am maintainer-clean-generic \
659 maintainer-clean-local
03385ed3 660
f00f02a3 661mostlyclean: mostlyclean-recursive
03385ed3 662
f00f02a3 663mostlyclean-am: mostlyclean-generic mostlyclean-libtool \
664 mostlyclean-local
03385ed3 665
666pdf: pdf-recursive
667
668pdf-am:
669
670ps: ps-recursive
671
672ps-am:
673
674uninstall-am:
675
f00f02a3 676.MAKE: $(am__recursive_targets) all install-am install-strip
03385ed3 677
f00f02a3 678.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am all-local \
679 am--refresh check check-am clean clean-cscope clean-generic \
680 clean-libtool clean-local cscope cscopelist-am ctags ctags-am \
03385ed3 681 distclean distclean-generic distclean-hdr distclean-libtool \
f00f02a3 682 distclean-local distclean-tags dvi dvi-am html html-am info \
03385ed3 683 info-am install install-am install-data install-data-am \
684 install-dvi install-dvi-am install-exec install-exec-am \
f00f02a3 685 install-exec-local install-html install-html-am install-info \
686 install-info-am install-man install-pdf install-pdf-am \
03385ed3 687 install-ps install-ps-am install-strip installcheck \
688 installcheck-am installdirs installdirs-am maintainer-clean \
f00f02a3 689 maintainer-clean-generic maintainer-clean-local mostlyclean \
690 mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \
691 pdf-am ps ps-am tags tags-am uninstall uninstall-am
692
693.PRECIOUS: Makefile
694
695
696# GNU Make needs to see an explicit $(MAKE) variable in the command it
697# runs to enable its job server during parallel builds. Hence the
698# comments below.
699all-multi:
700 $(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
701install-multi:
702 $(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)
703mostlyclean-multi:
704 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
705clean-multi:
706 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
707distclean-multi:
708 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
709maintainer-clean-multi:
710 $(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)
711
712.MAKE .PHONY: all-multi clean-multi distclean-multi install-am \
713 install-multi maintainer-clean-multi mostlyclean-multi
714
715install-exec-local: install-multi
03385ed3 716
f00f02a3 717all-local: all-multi
718mostlyclean-local: mostlyclean-multi
719clean-local: clean-multi
720distclean-local: distclean-multi
721maintainer-clean-local: maintainer-clean-multi
03385ed3 722
723# Tell versions [3.59,3.63) of GNU make to not export all variables.
724# Otherwise a system limit (for SysV at least) may be exceeded.
725.NOEXPORT: