annotate libhsail-rt/Makefile.in @ 144:8f4e72ab4e11

fix segmentation fault caused by nothing next cur_op to end
author Takahiro SHIMIZU <anatofuz@cr.ie.u-ryukyu.ac.jp>
date Sun, 23 Dec 2018 21:23:56 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 # Makefile.in generated by automake 1.11.6 from Makefile.am.
kono
parents:
diff changeset
2 # @configure_input@
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
kono
parents:
diff changeset
5 # 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software
kono
parents:
diff changeset
6 # Foundation, Inc.
kono
parents:
diff changeset
7 # This Makefile.in is free software; the Free Software Foundation
kono
parents:
diff changeset
8 # gives unlimited permission to copy and/or distribute it,
kono
parents:
diff changeset
9 # with or without modifications, as long as this notice is preserved.
kono
parents:
diff changeset
10
kono
parents:
diff changeset
11 # This program is distributed in the hope that it will be useful,
kono
parents:
diff changeset
12 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
kono
parents:
diff changeset
13 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
kono
parents:
diff changeset
14 # PARTICULAR PURPOSE.
kono
parents:
diff changeset
15
kono
parents:
diff changeset
16 @SET_MAKE@
kono
parents:
diff changeset
17
kono
parents:
diff changeset
18 # Makefile.am -- libhsail-rt library Makefile.
kono
parents:
diff changeset
19
kono
parents:
diff changeset
20 # Starting point copied from libcilkrts:
kono
parents:
diff changeset
21 # @copyright
kono
parents:
diff changeset
22 # Copyright (C) 2011, 2013, Intel Corporation
kono
parents:
diff changeset
23 # All rights reserved.
kono
parents:
diff changeset
24 #
kono
parents:
diff changeset
25 # @copyright
kono
parents:
diff changeset
26 # Redistribution and use in source and binary forms, with or without
kono
parents:
diff changeset
27 # modification, are permitted provided that the following conditions
kono
parents:
diff changeset
28 # are met:
kono
parents:
diff changeset
29 #
kono
parents:
diff changeset
30 # * Redistributions of source code must retain the above copyright
kono
parents:
diff changeset
31 # notice, this list of conditions and the following disclaimer.
kono
parents:
diff changeset
32 # * Redistributions in binary form must reproduce the above copyright
kono
parents:
diff changeset
33 # notice, this list of conditions and the following disclaimer in
kono
parents:
diff changeset
34 # the documentation and/or other materials provided with the
kono
parents:
diff changeset
35 # distribution.
kono
parents:
diff changeset
36 # * Neither the name of Intel Corporation nor the names of its
kono
parents:
diff changeset
37 # contributors may be used to endorse or promote products derived
kono
parents:
diff changeset
38 # from this software without specific prior written permission.
kono
parents:
diff changeset
39 #
kono
parents:
diff changeset
40 # @copyright
kono
parents:
diff changeset
41 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
kono
parents:
diff changeset
42 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
kono
parents:
diff changeset
43 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
kono
parents:
diff changeset
44 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
kono
parents:
diff changeset
45 # HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
kono
parents:
diff changeset
46 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
kono
parents:
diff changeset
47 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
kono
parents:
diff changeset
48 # OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
kono
parents:
diff changeset
49 # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
kono
parents:
diff changeset
50 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY
kono
parents:
diff changeset
51 # WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
kono
parents:
diff changeset
52 # POSSIBILITY OF SUCH DAMAGE.
kono
parents:
diff changeset
53
kono
parents:
diff changeset
54 # libhsail-rt modifications:
kono
parents:
diff changeset
55 # Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
kono
parents:
diff changeset
56 # for General Processor Tech.
kono
parents:
diff changeset
57 # Use of this source code is governed by a BSD-style
kono
parents:
diff changeset
58 # license that can be found in the LICENSE file.
kono
parents:
diff changeset
59
kono
parents:
diff changeset
60 # Process this file with autoreconf to produce Makefile.in.
kono
parents:
diff changeset
61
kono
parents:
diff changeset
62 VPATH = @srcdir@
kono
parents:
diff changeset
63 am__make_dryrun = \
kono
parents:
diff changeset
64 { \
kono
parents:
diff changeset
65 am__dry=no; \
kono
parents:
diff changeset
66 case $$MAKEFLAGS in \
kono
parents:
diff changeset
67 *\\[\ \ ]*) \
kono
parents:
diff changeset
68 echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
kono
parents:
diff changeset
69 | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
kono
parents:
diff changeset
70 *) \
kono
parents:
diff changeset
71 for am__flg in $$MAKEFLAGS; do \
kono
parents:
diff changeset
72 case $$am__flg in \
kono
parents:
diff changeset
73 *=*|--*) ;; \
kono
parents:
diff changeset
74 *n*) am__dry=yes; break;; \
kono
parents:
diff changeset
75 esac; \
kono
parents:
diff changeset
76 done;; \
kono
parents:
diff changeset
77 esac; \
kono
parents:
diff changeset
78 test $$am__dry = yes; \
kono
parents:
diff changeset
79 }
kono
parents:
diff changeset
80 pkgdatadir = $(datadir)/@PACKAGE@
kono
parents:
diff changeset
81 pkgincludedir = $(includedir)/@PACKAGE@
kono
parents:
diff changeset
82 pkglibdir = $(libdir)/@PACKAGE@
kono
parents:
diff changeset
83 pkglibexecdir = $(libexecdir)/@PACKAGE@
kono
parents:
diff changeset
84 am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
kono
parents:
diff changeset
85 install_sh_DATA = $(install_sh) -c -m 644
kono
parents:
diff changeset
86 install_sh_PROGRAM = $(install_sh) -c
kono
parents:
diff changeset
87 install_sh_SCRIPT = $(install_sh) -c
kono
parents:
diff changeset
88 INSTALL_HEADER = $(INSTALL_DATA)
kono
parents:
diff changeset
89 transform = $(program_transform_name)
kono
parents:
diff changeset
90 NORMAL_INSTALL = :
kono
parents:
diff changeset
91 PRE_INSTALL = :
kono
parents:
diff changeset
92 POST_INSTALL = :
kono
parents:
diff changeset
93 NORMAL_UNINSTALL = :
kono
parents:
diff changeset
94 PRE_UNINSTALL = :
kono
parents:
diff changeset
95 POST_UNINSTALL = :
kono
parents:
diff changeset
96 build_triplet = @build@
kono
parents:
diff changeset
97 host_triplet = @host@
kono
parents:
diff changeset
98 target_triplet = @target@
kono
parents:
diff changeset
99 subdir = .
kono
parents:
diff changeset
100 DIST_COMMON = README ChangeLog $(srcdir)/Makefile.in \
kono
parents:
diff changeset
101 $(srcdir)/Makefile.am $(top_srcdir)/configure \
kono
parents:
diff changeset
102 $(am__configure_deps) $(srcdir)/target-config.h.in \
kono
parents:
diff changeset
103 $(srcdir)/../mkinstalldirs $(srcdir)/../depcomp
kono
parents:
diff changeset
104 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
kono
parents:
diff changeset
105 am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
kono
parents:
diff changeset
106 $(top_srcdir)/../config/depstand.m4 \
kono
parents:
diff changeset
107 $(top_srcdir)/../config/lead-dot.m4 \
kono
parents:
diff changeset
108 $(top_srcdir)/../config/override.m4 \
kono
parents:
diff changeset
109 $(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
kono
parents:
diff changeset
110 $(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
kono
parents:
diff changeset
111 $(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
kono
parents:
diff changeset
112 am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
kono
parents:
diff changeset
113 $(ACLOCAL_M4)
kono
parents:
diff changeset
114 am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
kono
parents:
diff changeset
115 configure.lineno config.status.lineno
kono
parents:
diff changeset
116 CONFIG_HEADER = target-config.h
kono
parents:
diff changeset
117 CONFIG_CLEAN_FILES =
kono
parents:
diff changeset
118 CONFIG_CLEAN_VPATH_FILES =
kono
parents:
diff changeset
119 am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
kono
parents:
diff changeset
120 am__vpath_adj = case $$p in \
kono
parents:
diff changeset
121 $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
kono
parents:
diff changeset
122 *) f=$$p;; \
kono
parents:
diff changeset
123 esac;
kono
parents:
diff changeset
124 am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
kono
parents:
diff changeset
125 am__install_max = 40
kono
parents:
diff changeset
126 am__nobase_strip_setup = \
kono
parents:
diff changeset
127 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
kono
parents:
diff changeset
128 am__nobase_strip = \
kono
parents:
diff changeset
129 for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
kono
parents:
diff changeset
130 am__nobase_list = $(am__nobase_strip_setup); \
kono
parents:
diff changeset
131 for p in $$list; do echo "$$p $$p"; done | \
kono
parents:
diff changeset
132 sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
kono
parents:
diff changeset
133 $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
kono
parents:
diff changeset
134 if (++n[$$2] == $(am__install_max)) \
kono
parents:
diff changeset
135 { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
kono
parents:
diff changeset
136 END { for (dir in files) print dir, files[dir] }'
kono
parents:
diff changeset
137 am__base_list = \
kono
parents:
diff changeset
138 sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
kono
parents:
diff changeset
139 sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
kono
parents:
diff changeset
140 am__uninstall_files_from_dir = { \
kono
parents:
diff changeset
141 test -z "$$files" \
kono
parents:
diff changeset
142 || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
kono
parents:
diff changeset
143 || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
kono
parents:
diff changeset
144 $(am__cd) "$$dir" && rm -f $$files; }; \
kono
parents:
diff changeset
145 }
kono
parents:
diff changeset
146 am__installdirs = "$(DESTDIR)$(toolexeclibdir)"
kono
parents:
diff changeset
147 LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
kono
parents:
diff changeset
148 libhsail_rt_la_LIBADD =
kono
parents:
diff changeset
149 am__dirstamp = $(am__leading_dot)dirstamp
kono
parents:
diff changeset
150 am__objects_1 = rt/arithmetic.lo rt/atomics.lo rt/bitstring.lo \
kono
parents:
diff changeset
151 rt/fbarrier.lo rt/fp16.lo rt/misc.lo rt/multimedia.lo \
kono
parents:
diff changeset
152 rt/queue.lo rt/sat_arithmetic.lo rt/segment.lo rt/workitems.lo \
kono
parents:
diff changeset
153 rt/fibers.lo
kono
parents:
diff changeset
154 am_libhsail_rt_la_OBJECTS = $(am__objects_1)
kono
parents:
diff changeset
155 libhsail_rt_la_OBJECTS = $(am_libhsail_rt_la_OBJECTS)
kono
parents:
diff changeset
156 libhsail_rt_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
kono
parents:
diff changeset
157 $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
kono
parents:
diff changeset
158 $(libhsail_rt_la_LDFLAGS) $(LDFLAGS) -o $@
kono
parents:
diff changeset
159 DEFAULT_INCLUDES = -I.@am__isrc@
kono
parents:
diff changeset
160 depcomp = $(SHELL) $(top_srcdir)/../depcomp
kono
parents:
diff changeset
161 am__depfiles_maybe = depfiles
kono
parents:
diff changeset
162 am__mv = mv -f
kono
parents:
diff changeset
163 COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
kono
parents:
diff changeset
164 $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
kono
parents:
diff changeset
165 LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
kono
parents:
diff changeset
166 --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
kono
parents:
diff changeset
167 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
kono
parents:
diff changeset
168 CCLD = $(CC)
kono
parents:
diff changeset
169 LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
kono
parents:
diff changeset
170 --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
kono
parents:
diff changeset
171 $(LDFLAGS) -o $@
kono
parents:
diff changeset
172 SOURCES = $(libhsail_rt_la_SOURCES)
kono
parents:
diff changeset
173 am__can_run_installinfo = \
kono
parents:
diff changeset
174 case $$AM_UPDATE_INFO_DIR in \
kono
parents:
diff changeset
175 n|no|NO) false;; \
kono
parents:
diff changeset
176 *) (install-info --version) >/dev/null 2>&1;; \
kono
parents:
diff changeset
177 esac
kono
parents:
diff changeset
178 ETAGS = etags
kono
parents:
diff changeset
179 CTAGS = ctags
kono
parents:
diff changeset
180 ACLOCAL = @ACLOCAL@
kono
parents:
diff changeset
181 AMTAR = @AMTAR@
kono
parents:
diff changeset
182 AR = @AR@
kono
parents:
diff changeset
183 AUTOCONF = @AUTOCONF@
kono
parents:
diff changeset
184 AUTOHEADER = @AUTOHEADER@
kono
parents:
diff changeset
185 AUTOMAKE = @AUTOMAKE@
kono
parents:
diff changeset
186 AWK = @AWK@
kono
parents:
diff changeset
187 CC = @CC@
kono
parents:
diff changeset
188 CCDEPMODE = @CCDEPMODE@
kono
parents:
diff changeset
189 CFLAGS = @CFLAGS@
kono
parents:
diff changeset
190 CPP = @CPP@
kono
parents:
diff changeset
191 CPPFLAGS = @CPPFLAGS@
kono
parents:
diff changeset
192 CXX = @CXX@
kono
parents:
diff changeset
193 CXXCPP = @CXXCPP@
kono
parents:
diff changeset
194 CXXDEPMODE = @CXXDEPMODE@
kono
parents:
diff changeset
195 CXXFLAGS = @CXXFLAGS@
kono
parents:
diff changeset
196 CYGPATH_W = @CYGPATH_W@
kono
parents:
diff changeset
197 DEFS = @DEFS@
kono
parents:
diff changeset
198 DEPDIR = @DEPDIR@
kono
parents:
diff changeset
199 DSYMUTIL = @DSYMUTIL@
kono
parents:
diff changeset
200 DUMPBIN = @DUMPBIN@
kono
parents:
diff changeset
201 ECHO_C = @ECHO_C@
kono
parents:
diff changeset
202 ECHO_N = @ECHO_N@
kono
parents:
diff changeset
203 ECHO_T = @ECHO_T@
kono
parents:
diff changeset
204 EGREP = @EGREP@
kono
parents:
diff changeset
205 EXEEXT = @EXEEXT@
kono
parents:
diff changeset
206 FGREP = @FGREP@
kono
parents:
diff changeset
207 GREP = @GREP@
kono
parents:
diff changeset
208 INSTALL = @INSTALL@
kono
parents:
diff changeset
209 INSTALL_DATA = @INSTALL_DATA@
kono
parents:
diff changeset
210 INSTALL_PROGRAM = @INSTALL_PROGRAM@
kono
parents:
diff changeset
211 INSTALL_SCRIPT = @INSTALL_SCRIPT@
kono
parents:
diff changeset
212 INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
kono
parents:
diff changeset
213 LD = @LD@
kono
parents:
diff changeset
214 LDFLAGS = @LDFLAGS@
kono
parents:
diff changeset
215 LIBOBJS = @LIBOBJS@
kono
parents:
diff changeset
216 LIBS = @LIBS@
kono
parents:
diff changeset
217 LIBTOOL = @LIBTOOL@
kono
parents:
diff changeset
218 LIPO = @LIPO@
kono
parents:
diff changeset
219 LN_S = @LN_S@
kono
parents:
diff changeset
220 LTLIBOBJS = @LTLIBOBJS@
kono
parents:
diff changeset
221 MAINT = @MAINT@
kono
parents:
diff changeset
222 MAKEINFO = @MAKEINFO@
kono
parents:
diff changeset
223 MKDIR_P = @MKDIR_P@
kono
parents:
diff changeset
224 NM = @NM@
kono
parents:
diff changeset
225 NMEDIT = @NMEDIT@
kono
parents:
diff changeset
226 OBJDUMP = @OBJDUMP@
kono
parents:
diff changeset
227 OBJEXT = @OBJEXT@
kono
parents:
diff changeset
228 OTOOL = @OTOOL@
kono
parents:
diff changeset
229 OTOOL64 = @OTOOL64@
kono
parents:
diff changeset
230 PACKAGE = @PACKAGE@
kono
parents:
diff changeset
231 PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
kono
parents:
diff changeset
232 PACKAGE_NAME = @PACKAGE_NAME@
kono
parents:
diff changeset
233 PACKAGE_STRING = @PACKAGE_STRING@
kono
parents:
diff changeset
234 PACKAGE_TARNAME = @PACKAGE_TARNAME@
kono
parents:
diff changeset
235 PACKAGE_URL = @PACKAGE_URL@
kono
parents:
diff changeset
236 PACKAGE_VERSION = @PACKAGE_VERSION@
kono
parents:
diff changeset
237 PATH_SEPARATOR = @PATH_SEPARATOR@
kono
parents:
diff changeset
238 RANLIB = @RANLIB@
kono
parents:
diff changeset
239 SED = @SED@
kono
parents:
diff changeset
240 SET_MAKE = @SET_MAKE@
kono
parents:
diff changeset
241 SHELL = @SHELL@
kono
parents:
diff changeset
242 STRIP = @STRIP@
kono
parents:
diff changeset
243 VERSION = @VERSION@
kono
parents:
diff changeset
244 abs_builddir = @abs_builddir@
kono
parents:
diff changeset
245 abs_srcdir = @abs_srcdir@
kono
parents:
diff changeset
246 abs_top_builddir = @abs_top_builddir@
kono
parents:
diff changeset
247 abs_top_srcdir = @abs_top_srcdir@
kono
parents:
diff changeset
248 ac_ct_CC = @ac_ct_CC@
kono
parents:
diff changeset
249 ac_ct_CXX = @ac_ct_CXX@
kono
parents:
diff changeset
250 ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
kono
parents:
diff changeset
251 am__include = @am__include@
kono
parents:
diff changeset
252 am__leading_dot = @am__leading_dot@
kono
parents:
diff changeset
253 am__quote = @am__quote@
kono
parents:
diff changeset
254 am__tar = @am__tar@
kono
parents:
diff changeset
255 am__untar = @am__untar@
kono
parents:
diff changeset
256 bindir = @bindir@
kono
parents:
diff changeset
257 build = @build@
kono
parents:
diff changeset
258 build_alias = @build_alias@
kono
parents:
diff changeset
259 build_cpu = @build_cpu@
kono
parents:
diff changeset
260 build_os = @build_os@
kono
parents:
diff changeset
261 build_vendor = @build_vendor@
kono
parents:
diff changeset
262 builddir = @builddir@
kono
parents:
diff changeset
263 config_dir = @config_dir@
kono
parents:
diff changeset
264 datadir = @datadir@
kono
parents:
diff changeset
265 datarootdir = @datarootdir@
kono
parents:
diff changeset
266 docdir = @docdir@
kono
parents:
diff changeset
267 dvidir = @dvidir@
kono
parents:
diff changeset
268 exec_prefix = @exec_prefix@
kono
parents:
diff changeset
269 get_gcc_base_ver = @get_gcc_base_ver@
kono
parents:
diff changeset
270 host = @host@
kono
parents:
diff changeset
271 host_alias = @host_alias@
kono
parents:
diff changeset
272 host_cpu = @host_cpu@
kono
parents:
diff changeset
273 host_os = @host_os@
kono
parents:
diff changeset
274 host_vendor = @host_vendor@
kono
parents:
diff changeset
275 htmldir = @htmldir@
kono
parents:
diff changeset
276 includedir = @includedir@
kono
parents:
diff changeset
277 infodir = @infodir@
kono
parents:
diff changeset
278 install_sh = @install_sh@
kono
parents:
diff changeset
279 libdir = @libdir@
kono
parents:
diff changeset
280 libexecdir = @libexecdir@
kono
parents:
diff changeset
281 localedir = @localedir@
kono
parents:
diff changeset
282 localstatedir = @localstatedir@
kono
parents:
diff changeset
283 mandir = @mandir@
kono
parents:
diff changeset
284 mkdir_p = @mkdir_p@
kono
parents:
diff changeset
285 oldincludedir = @oldincludedir@
kono
parents:
diff changeset
286 pdfdir = @pdfdir@
kono
parents:
diff changeset
287 prefix = @prefix@
kono
parents:
diff changeset
288 program_transform_name = @program_transform_name@
kono
parents:
diff changeset
289 psdir = @psdir@
kono
parents:
diff changeset
290 sbindir = @sbindir@
kono
parents:
diff changeset
291 sharedstatedir = @sharedstatedir@
kono
parents:
diff changeset
292 srcdir = @srcdir@
kono
parents:
diff changeset
293 sysconfdir = @sysconfdir@
kono
parents:
diff changeset
294 target = @target@
kono
parents:
diff changeset
295 target_alias = @target_alias@
kono
parents:
diff changeset
296 target_cpu = @target_cpu@
kono
parents:
diff changeset
297 target_os = @target_os@
kono
parents:
diff changeset
298 target_vendor = @target_vendor@
kono
parents:
diff changeset
299 toolexecdir = @toolexecdir@
kono
parents:
diff changeset
300 toolexeclibdir = @toolexeclibdir@
kono
parents:
diff changeset
301 top_build_prefix = @top_build_prefix@
kono
parents:
diff changeset
302 top_builddir = @top_builddir@
kono
parents:
diff changeset
303 top_srcdir = @top_srcdir@
kono
parents:
diff changeset
304 AUTOMAKE_OPTIONS = foreign subdir-objects
kono
parents:
diff changeset
305 gcc_version := $(shell @get_gcc_base_ver@ $(top_srcdir)/../gcc/BASE-VER)
kono
parents:
diff changeset
306 MAINT_CHARSET = latin1
kono
parents:
diff changeset
307 mkinstalldirs = $(SHELL) $(toplevel_srcdir)/mkinstalldirs
kono
parents:
diff changeset
308 ACLOCAL_AMFLAGS = -I .. -I ../config
kono
parents:
diff changeset
309 WARN_CFLAGS = $(WARN_FLAGS) $(WERROR)
kono
parents:
diff changeset
310
kono
parents:
diff changeset
311 # -I/-D flags to pass when compiling.
kono
parents:
diff changeset
312 AM_CPPFLAGS = -I$(srcdir)/rt -I$(srcdir)/include/internal
kono
parents:
diff changeset
313 AM_CFLAGS = \
kono
parents:
diff changeset
314 -I $(srcdir)/../include \
kono
parents:
diff changeset
315 -I $(srcdir)/../libgcc \
kono
parents:
diff changeset
316 -I $(MULTIBUILDTOP)../../gcc/include $(PTH_CFLAGS)
kono
parents:
diff changeset
317
kono
parents:
diff changeset
318 toolexeclib_LTLIBRARIES = libhsail-rt.la
kono
parents:
diff changeset
319 runtime_files = \
kono
parents:
diff changeset
320 rt/arithmetic.c \
kono
parents:
diff changeset
321 rt/atomics.c \
kono
parents:
diff changeset
322 rt/bitstring.c \
kono
parents:
diff changeset
323 rt/fbarrier.c \
kono
parents:
diff changeset
324 rt/fp16.c \
kono
parents:
diff changeset
325 rt/misc.c \
kono
parents:
diff changeset
326 rt/multimedia.c \
kono
parents:
diff changeset
327 rt/queue.c \
kono
parents:
diff changeset
328 rt/sat_arithmetic.c \
kono
parents:
diff changeset
329 rt/segment.c \
kono
parents:
diff changeset
330 rt/workitems.c \
kono
parents:
diff changeset
331 rt/fibers.c
kono
parents:
diff changeset
332
kono
parents:
diff changeset
333 libhsail_rt_la_SOURCES = $(runtime_files)
kono
parents:
diff changeset
334 libhsail_rt_la_LDFLAGS = -rpath '$(libdir)'
kono
parents:
diff changeset
335
kono
parents:
diff changeset
336 # Work around what appears to be a GNU make bug handling MAKEFLAGS
kono
parents:
diff changeset
337 # values defined in terms of make variables, as is the case for CC and
kono
parents:
diff changeset
338 # friends when we are called from the top level Makefile.
kono
parents:
diff changeset
339 AM_MAKEFLAGS = \
kono
parents:
diff changeset
340 "AR_FLAGS=$(AR_FLAGS)" \
kono
parents:
diff changeset
341 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
kono
parents:
diff changeset
342 "CFLAGS=$(CFLAGS)" \
kono
parents:
diff changeset
343 "CXXFLAGS=$(CXXFLAGS)" \
kono
parents:
diff changeset
344 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
kono
parents:
diff changeset
345 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
kono
parents:
diff changeset
346 "INSTALL=$(INSTALL)" \
kono
parents:
diff changeset
347 "INSTALL_DATA=$(INSTALL_DATA)" \
kono
parents:
diff changeset
348 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
kono
parents:
diff changeset
349 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
kono
parents:
diff changeset
350 "JC1FLAGS=$(JC1FLAGS)" \
kono
parents:
diff changeset
351 "LDFLAGS=$(LDFLAGS)" \
kono
parents:
diff changeset
352 "LIBCFLAGS=$(LIBCFLAGS)" \
kono
parents:
diff changeset
353 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
kono
parents:
diff changeset
354 "MAKE=$(MAKE)" \
kono
parents:
diff changeset
355 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
kono
parents:
diff changeset
356 "PICFLAG=$(PICFLAG)" \
kono
parents:
diff changeset
357 "PICFLAG_FOR_TARGET=$(PICFLAG_FOR_TARGET)" \
kono
parents:
diff changeset
358 "SHELL=$(SHELL)" \
kono
parents:
diff changeset
359 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
kono
parents:
diff changeset
360 "exec_prefix=$(exec_prefix)" \
kono
parents:
diff changeset
361 "infodir=$(infodir)" \
kono
parents:
diff changeset
362 "libdir=$(libdir)" \
kono
parents:
diff changeset
363 "prefix=$(prefix)" \
kono
parents:
diff changeset
364 "includedir=$(includedir)" \
kono
parents:
diff changeset
365 "AR=$(AR)" \
kono
parents:
diff changeset
366 "AS=$(AS)" \
kono
parents:
diff changeset
367 "LD=$(LD)" \
kono
parents:
diff changeset
368 "LIBCFLAGS=$(LIBCFLAGS)" \
kono
parents:
diff changeset
369 "NM=$(NM)" \
kono
parents:
diff changeset
370 "PICFLAG=$(PICFLAG)" \
kono
parents:
diff changeset
371 "RANLIB=$(RANLIB)" \
kono
parents:
diff changeset
372 "DESTDIR=$(DESTDIR)"
kono
parents:
diff changeset
373
kono
parents:
diff changeset
374 MAKEOVERRIDES =
kono
parents:
diff changeset
375 all: target-config.h
kono
parents:
diff changeset
376 $(MAKE) $(AM_MAKEFLAGS) all-am
kono
parents:
diff changeset
377
kono
parents:
diff changeset
378 .SUFFIXES:
kono
parents:
diff changeset
379 .SUFFIXES: .c .lo .o .obj
kono
parents:
diff changeset
380 am--refresh: Makefile
kono
parents:
diff changeset
381 @:
kono
parents:
diff changeset
382 $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
kono
parents:
diff changeset
383 @for dep in $?; do \
kono
parents:
diff changeset
384 case '$(am__configure_deps)' in \
kono
parents:
diff changeset
385 *$$dep*) \
kono
parents:
diff changeset
386 echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
kono
parents:
diff changeset
387 $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
kono
parents:
diff changeset
388 && exit 0; \
kono
parents:
diff changeset
389 exit 1;; \
kono
parents:
diff changeset
390 esac; \
kono
parents:
diff changeset
391 done; \
kono
parents:
diff changeset
392 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
kono
parents:
diff changeset
393 $(am__cd) $(top_srcdir) && \
kono
parents:
diff changeset
394 $(AUTOMAKE) --foreign Makefile
kono
parents:
diff changeset
395 .PRECIOUS: Makefile
kono
parents:
diff changeset
396 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
kono
parents:
diff changeset
397 @case '$?' in \
kono
parents:
diff changeset
398 *config.status*) \
kono
parents:
diff changeset
399 echo ' $(SHELL) ./config.status'; \
kono
parents:
diff changeset
400 $(SHELL) ./config.status;; \
kono
parents:
diff changeset
401 *) \
kono
parents:
diff changeset
402 echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
kono
parents:
diff changeset
403 cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
kono
parents:
diff changeset
404 esac;
kono
parents:
diff changeset
405
kono
parents:
diff changeset
406 $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
kono
parents:
diff changeset
407 $(SHELL) ./config.status --recheck
kono
parents:
diff changeset
408
kono
parents:
diff changeset
409 $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
kono
parents:
diff changeset
410 $(am__cd) $(srcdir) && $(AUTOCONF)
kono
parents:
diff changeset
411 $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
kono
parents:
diff changeset
412 $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
kono
parents:
diff changeset
413 $(am__aclocal_m4_deps):
kono
parents:
diff changeset
414
kono
parents:
diff changeset
415 target-config.h: stamp-h1
kono
parents:
diff changeset
416 @if test ! -f $@; then rm -f stamp-h1; else :; fi
kono
parents:
diff changeset
417 @if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi
kono
parents:
diff changeset
418
kono
parents:
diff changeset
419 stamp-h1: $(srcdir)/target-config.h.in $(top_builddir)/config.status
kono
parents:
diff changeset
420 @rm -f stamp-h1
kono
parents:
diff changeset
421 cd $(top_builddir) && $(SHELL) ./config.status target-config.h
kono
parents:
diff changeset
422 $(srcdir)/target-config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
kono
parents:
diff changeset
423 ($(am__cd) $(top_srcdir) && $(AUTOHEADER))
kono
parents:
diff changeset
424 rm -f stamp-h1
kono
parents:
diff changeset
425 touch $@
kono
parents:
diff changeset
426
kono
parents:
diff changeset
427 distclean-hdr:
kono
parents:
diff changeset
428 -rm -f target-config.h stamp-h1
kono
parents:
diff changeset
429 install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
kono
parents:
diff changeset
430 @$(NORMAL_INSTALL)
kono
parents:
diff changeset
431 @list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
kono
parents:
diff changeset
432 list2=; for p in $$list; do \
kono
parents:
diff changeset
433 if test -f $$p; then \
kono
parents:
diff changeset
434 list2="$$list2 $$p"; \
kono
parents:
diff changeset
435 else :; fi; \
kono
parents:
diff changeset
436 done; \
kono
parents:
diff changeset
437 test -z "$$list2" || { \
kono
parents:
diff changeset
438 echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
kono
parents:
diff changeset
439 $(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
kono
parents:
diff changeset
440 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(toolexeclibdir)'"; \
kono
parents:
diff changeset
441 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(toolexeclibdir)"; \
kono
parents:
diff changeset
442 }
kono
parents:
diff changeset
443
kono
parents:
diff changeset
444 uninstall-toolexeclibLTLIBRARIES:
kono
parents:
diff changeset
445 @$(NORMAL_UNINSTALL)
kono
parents:
diff changeset
446 @list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
kono
parents:
diff changeset
447 for p in $$list; do \
kono
parents:
diff changeset
448 $(am__strip_dir) \
kono
parents:
diff changeset
449 echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(toolexeclibdir)/$$f'"; \
kono
parents:
diff changeset
450 $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(toolexeclibdir)/$$f"; \
kono
parents:
diff changeset
451 done
kono
parents:
diff changeset
452
kono
parents:
diff changeset
453 clean-toolexeclibLTLIBRARIES:
kono
parents:
diff changeset
454 -test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
kono
parents:
diff changeset
455 @list='$(toolexeclib_LTLIBRARIES)'; for p in $$list; do \
kono
parents:
diff changeset
456 dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
kono
parents:
diff changeset
457 test "$$dir" != "$$p" || dir=.; \
kono
parents:
diff changeset
458 echo "rm -f \"$${dir}/so_locations\""; \
kono
parents:
diff changeset
459 rm -f "$${dir}/so_locations"; \
kono
parents:
diff changeset
460 done
kono
parents:
diff changeset
461 rt/$(am__dirstamp):
kono
parents:
diff changeset
462 @$(MKDIR_P) rt
kono
parents:
diff changeset
463 @: > rt/$(am__dirstamp)
kono
parents:
diff changeset
464 rt/$(DEPDIR)/$(am__dirstamp):
kono
parents:
diff changeset
465 @$(MKDIR_P) rt/$(DEPDIR)
kono
parents:
diff changeset
466 @: > rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
467 rt/arithmetic.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
468 rt/atomics.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
469 rt/bitstring.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
470 rt/fbarrier.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
471 rt/fp16.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
472 rt/misc.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
473 rt/multimedia.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
474 rt/queue.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
475 rt/sat_arithmetic.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
476 rt/segment.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
477 rt/workitems.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
478 rt/fibers.lo: rt/$(am__dirstamp) rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
479 libhsail-rt.la: $(libhsail_rt_la_OBJECTS) $(libhsail_rt_la_DEPENDENCIES) $(EXTRA_libhsail_rt_la_DEPENDENCIES)
kono
parents:
diff changeset
480 $(libhsail_rt_la_LINK) -rpath $(toolexeclibdir) $(libhsail_rt_la_OBJECTS) $(libhsail_rt_la_LIBADD) $(LIBS)
kono
parents:
diff changeset
481
kono
parents:
diff changeset
482 mostlyclean-compile:
kono
parents:
diff changeset
483 -rm -f *.$(OBJEXT)
kono
parents:
diff changeset
484 -rm -f rt/arithmetic.$(OBJEXT)
kono
parents:
diff changeset
485 -rm -f rt/arithmetic.lo
kono
parents:
diff changeset
486 -rm -f rt/atomics.$(OBJEXT)
kono
parents:
diff changeset
487 -rm -f rt/atomics.lo
kono
parents:
diff changeset
488 -rm -f rt/bitstring.$(OBJEXT)
kono
parents:
diff changeset
489 -rm -f rt/bitstring.lo
kono
parents:
diff changeset
490 -rm -f rt/fbarrier.$(OBJEXT)
kono
parents:
diff changeset
491 -rm -f rt/fbarrier.lo
kono
parents:
diff changeset
492 -rm -f rt/fibers.$(OBJEXT)
kono
parents:
diff changeset
493 -rm -f rt/fibers.lo
kono
parents:
diff changeset
494 -rm -f rt/fp16.$(OBJEXT)
kono
parents:
diff changeset
495 -rm -f rt/fp16.lo
kono
parents:
diff changeset
496 -rm -f rt/misc.$(OBJEXT)
kono
parents:
diff changeset
497 -rm -f rt/misc.lo
kono
parents:
diff changeset
498 -rm -f rt/multimedia.$(OBJEXT)
kono
parents:
diff changeset
499 -rm -f rt/multimedia.lo
kono
parents:
diff changeset
500 -rm -f rt/queue.$(OBJEXT)
kono
parents:
diff changeset
501 -rm -f rt/queue.lo
kono
parents:
diff changeset
502 -rm -f rt/sat_arithmetic.$(OBJEXT)
kono
parents:
diff changeset
503 -rm -f rt/sat_arithmetic.lo
kono
parents:
diff changeset
504 -rm -f rt/segment.$(OBJEXT)
kono
parents:
diff changeset
505 -rm -f rt/segment.lo
kono
parents:
diff changeset
506 -rm -f rt/workitems.$(OBJEXT)
kono
parents:
diff changeset
507 -rm -f rt/workitems.lo
kono
parents:
diff changeset
508
kono
parents:
diff changeset
509 distclean-compile:
kono
parents:
diff changeset
510 -rm -f *.tab.c
kono
parents:
diff changeset
511
kono
parents:
diff changeset
512 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/arithmetic.Plo@am__quote@
kono
parents:
diff changeset
513 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/atomics.Plo@am__quote@
kono
parents:
diff changeset
514 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/bitstring.Plo@am__quote@
kono
parents:
diff changeset
515 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/fbarrier.Plo@am__quote@
kono
parents:
diff changeset
516 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/fibers.Plo@am__quote@
kono
parents:
diff changeset
517 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/fp16.Plo@am__quote@
kono
parents:
diff changeset
518 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/misc.Plo@am__quote@
kono
parents:
diff changeset
519 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/multimedia.Plo@am__quote@
kono
parents:
diff changeset
520 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/queue.Plo@am__quote@
kono
parents:
diff changeset
521 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/sat_arithmetic.Plo@am__quote@
kono
parents:
diff changeset
522 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/segment.Plo@am__quote@
kono
parents:
diff changeset
523 @AMDEP_TRUE@@am__include@ @am__quote@rt/$(DEPDIR)/workitems.Plo@am__quote@
kono
parents:
diff changeset
524
kono
parents:
diff changeset
525 .c.o:
kono
parents:
diff changeset
526 @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
kono
parents:
diff changeset
527 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
kono
parents:
diff changeset
528 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
kono
parents:
diff changeset
529 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
kono
parents:
diff changeset
530 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
kono
parents:
diff changeset
531 @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ $<
kono
parents:
diff changeset
532
kono
parents:
diff changeset
533 .c.obj:
kono
parents:
diff changeset
534 @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
kono
parents:
diff changeset
535 @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
kono
parents:
diff changeset
536 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
kono
parents:
diff changeset
537 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
kono
parents:
diff changeset
538 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
kono
parents:
diff changeset
539 @am__fastdepCC_FALSE@ $(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
kono
parents:
diff changeset
540
kono
parents:
diff changeset
541 .c.lo:
kono
parents:
diff changeset
542 @am__fastdepCC_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
kono
parents:
diff changeset
543 @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
kono
parents:
diff changeset
544 @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
kono
parents:
diff changeset
545 @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
kono
parents:
diff changeset
546 @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
kono
parents:
diff changeset
547 @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
kono
parents:
diff changeset
548
kono
parents:
diff changeset
549 mostlyclean-libtool:
kono
parents:
diff changeset
550 -rm -f *.lo
kono
parents:
diff changeset
551
kono
parents:
diff changeset
552 clean-libtool:
kono
parents:
diff changeset
553 -rm -rf .libs _libs
kono
parents:
diff changeset
554 -rm -rf rt/.libs rt/_libs
kono
parents:
diff changeset
555
kono
parents:
diff changeset
556 distclean-libtool:
kono
parents:
diff changeset
557 -rm -f libtool config.lt
kono
parents:
diff changeset
558
kono
parents:
diff changeset
559 ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
kono
parents:
diff changeset
560 list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
kono
parents:
diff changeset
561 unique=`for i in $$list; do \
kono
parents:
diff changeset
562 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
kono
parents:
diff changeset
563 done | \
kono
parents:
diff changeset
564 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
kono
parents:
diff changeset
565 END { if (nonempty) { for (i in files) print i; }; }'`; \
kono
parents:
diff changeset
566 mkid -fID $$unique
kono
parents:
diff changeset
567 tags: TAGS
kono
parents:
diff changeset
568
kono
parents:
diff changeset
569 TAGS: $(HEADERS) $(SOURCES) target-config.h.in $(TAGS_DEPENDENCIES) \
kono
parents:
diff changeset
570 $(TAGS_FILES) $(LISP)
kono
parents:
diff changeset
571 set x; \
kono
parents:
diff changeset
572 here=`pwd`; \
kono
parents:
diff changeset
573 list='$(SOURCES) $(HEADERS) target-config.h.in $(LISP) $(TAGS_FILES)'; \
kono
parents:
diff changeset
574 unique=`for i in $$list; do \
kono
parents:
diff changeset
575 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
kono
parents:
diff changeset
576 done | \
kono
parents:
diff changeset
577 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
kono
parents:
diff changeset
578 END { if (nonempty) { for (i in files) print i; }; }'`; \
kono
parents:
diff changeset
579 shift; \
kono
parents:
diff changeset
580 if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
kono
parents:
diff changeset
581 test -n "$$unique" || unique=$$empty_fix; \
kono
parents:
diff changeset
582 if test $$# -gt 0; then \
kono
parents:
diff changeset
583 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
kono
parents:
diff changeset
584 "$$@" $$unique; \
kono
parents:
diff changeset
585 else \
kono
parents:
diff changeset
586 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
kono
parents:
diff changeset
587 $$unique; \
kono
parents:
diff changeset
588 fi; \
kono
parents:
diff changeset
589 fi
kono
parents:
diff changeset
590 ctags: CTAGS
kono
parents:
diff changeset
591 CTAGS: $(HEADERS) $(SOURCES) target-config.h.in $(TAGS_DEPENDENCIES) \
kono
parents:
diff changeset
592 $(TAGS_FILES) $(LISP)
kono
parents:
diff changeset
593 list='$(SOURCES) $(HEADERS) target-config.h.in $(LISP) $(TAGS_FILES)'; \
kono
parents:
diff changeset
594 unique=`for i in $$list; do \
kono
parents:
diff changeset
595 if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
kono
parents:
diff changeset
596 done | \
kono
parents:
diff changeset
597 $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
kono
parents:
diff changeset
598 END { if (nonempty) { for (i in files) print i; }; }'`; \
kono
parents:
diff changeset
599 test -z "$(CTAGS_ARGS)$$unique" \
kono
parents:
diff changeset
600 || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
kono
parents:
diff changeset
601 $$unique
kono
parents:
diff changeset
602
kono
parents:
diff changeset
603 GTAGS:
kono
parents:
diff changeset
604 here=`$(am__cd) $(top_builddir) && pwd` \
kono
parents:
diff changeset
605 && $(am__cd) $(top_srcdir) \
kono
parents:
diff changeset
606 && gtags -i $(GTAGS_ARGS) "$$here"
kono
parents:
diff changeset
607
kono
parents:
diff changeset
608 distclean-tags:
kono
parents:
diff changeset
609 -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
kono
parents:
diff changeset
610 check-am: all-am
kono
parents:
diff changeset
611 check: check-am
kono
parents:
diff changeset
612 all-am: Makefile $(LTLIBRARIES) target-config.h
kono
parents:
diff changeset
613 installdirs:
kono
parents:
diff changeset
614 for dir in "$(DESTDIR)$(toolexeclibdir)"; do \
kono
parents:
diff changeset
615 test -z "$$dir" || $(MKDIR_P) "$$dir"; \
kono
parents:
diff changeset
616 done
kono
parents:
diff changeset
617 install: install-am
kono
parents:
diff changeset
618 install-exec: install-exec-am
kono
parents:
diff changeset
619 install-data: install-data-am
kono
parents:
diff changeset
620 uninstall: uninstall-am
kono
parents:
diff changeset
621
kono
parents:
diff changeset
622 install-am: all-am
kono
parents:
diff changeset
623 @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
kono
parents:
diff changeset
624
kono
parents:
diff changeset
625 installcheck: installcheck-am
kono
parents:
diff changeset
626 install-strip:
kono
parents:
diff changeset
627 if test -z '$(STRIP)'; then \
kono
parents:
diff changeset
628 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
kono
parents:
diff changeset
629 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
kono
parents:
diff changeset
630 install; \
kono
parents:
diff changeset
631 else \
kono
parents:
diff changeset
632 $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
kono
parents:
diff changeset
633 install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
kono
parents:
diff changeset
634 "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
kono
parents:
diff changeset
635 fi
kono
parents:
diff changeset
636 mostlyclean-generic:
kono
parents:
diff changeset
637
kono
parents:
diff changeset
638 clean-generic:
kono
parents:
diff changeset
639
kono
parents:
diff changeset
640 distclean-generic:
kono
parents:
diff changeset
641 -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
kono
parents:
diff changeset
642 -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
kono
parents:
diff changeset
643 -rm -f rt/$(DEPDIR)/$(am__dirstamp)
kono
parents:
diff changeset
644 -rm -f rt/$(am__dirstamp)
kono
parents:
diff changeset
645
kono
parents:
diff changeset
646 maintainer-clean-generic:
kono
parents:
diff changeset
647 @echo "This command is intended for maintainers to use"
kono
parents:
diff changeset
648 @echo "it deletes files that may require special tools to rebuild."
kono
parents:
diff changeset
649 clean: clean-am
kono
parents:
diff changeset
650
kono
parents:
diff changeset
651 clean-am: clean-generic clean-libtool clean-toolexeclibLTLIBRARIES \
kono
parents:
diff changeset
652 mostlyclean-am
kono
parents:
diff changeset
653
kono
parents:
diff changeset
654 distclean: distclean-am
kono
parents:
diff changeset
655 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
kono
parents:
diff changeset
656 -rm -rf rt/$(DEPDIR)
kono
parents:
diff changeset
657 -rm -f Makefile
kono
parents:
diff changeset
658 distclean-am: clean-am distclean-compile distclean-generic \
kono
parents:
diff changeset
659 distclean-hdr distclean-libtool distclean-tags
kono
parents:
diff changeset
660
kono
parents:
diff changeset
661 dvi: dvi-am
kono
parents:
diff changeset
662
kono
parents:
diff changeset
663 dvi-am:
kono
parents:
diff changeset
664
kono
parents:
diff changeset
665 html: html-am
kono
parents:
diff changeset
666
kono
parents:
diff changeset
667 html-am:
kono
parents:
diff changeset
668
kono
parents:
diff changeset
669 info: info-am
kono
parents:
diff changeset
670
kono
parents:
diff changeset
671 info-am:
kono
parents:
diff changeset
672
kono
parents:
diff changeset
673 install-data-am:
kono
parents:
diff changeset
674
kono
parents:
diff changeset
675 install-dvi: install-dvi-am
kono
parents:
diff changeset
676
kono
parents:
diff changeset
677 install-dvi-am:
kono
parents:
diff changeset
678
kono
parents:
diff changeset
679 install-exec-am: install-toolexeclibLTLIBRARIES
kono
parents:
diff changeset
680
kono
parents:
diff changeset
681 install-html: install-html-am
kono
parents:
diff changeset
682
kono
parents:
diff changeset
683 install-html-am:
kono
parents:
diff changeset
684
kono
parents:
diff changeset
685 install-info: install-info-am
kono
parents:
diff changeset
686
kono
parents:
diff changeset
687 install-info-am:
kono
parents:
diff changeset
688
kono
parents:
diff changeset
689 install-man:
kono
parents:
diff changeset
690
kono
parents:
diff changeset
691 install-pdf: install-pdf-am
kono
parents:
diff changeset
692
kono
parents:
diff changeset
693 install-pdf-am:
kono
parents:
diff changeset
694
kono
parents:
diff changeset
695 install-ps: install-ps-am
kono
parents:
diff changeset
696
kono
parents:
diff changeset
697 install-ps-am:
kono
parents:
diff changeset
698
kono
parents:
diff changeset
699 installcheck-am:
kono
parents:
diff changeset
700
kono
parents:
diff changeset
701 maintainer-clean: maintainer-clean-am
kono
parents:
diff changeset
702 -rm -f $(am__CONFIG_DISTCLEAN_FILES)
kono
parents:
diff changeset
703 -rm -rf $(top_srcdir)/autom4te.cache
kono
parents:
diff changeset
704 -rm -rf rt/$(DEPDIR)
kono
parents:
diff changeset
705 -rm -f Makefile
kono
parents:
diff changeset
706 maintainer-clean-am: distclean-am maintainer-clean-generic
kono
parents:
diff changeset
707
kono
parents:
diff changeset
708 mostlyclean: mostlyclean-am
kono
parents:
diff changeset
709
kono
parents:
diff changeset
710 mostlyclean-am: mostlyclean-compile mostlyclean-generic \
kono
parents:
diff changeset
711 mostlyclean-libtool
kono
parents:
diff changeset
712
kono
parents:
diff changeset
713 pdf: pdf-am
kono
parents:
diff changeset
714
kono
parents:
diff changeset
715 pdf-am:
kono
parents:
diff changeset
716
kono
parents:
diff changeset
717 ps: ps-am
kono
parents:
diff changeset
718
kono
parents:
diff changeset
719 ps-am:
kono
parents:
diff changeset
720
kono
parents:
diff changeset
721 uninstall-am: uninstall-toolexeclibLTLIBRARIES
kono
parents:
diff changeset
722
kono
parents:
diff changeset
723 .MAKE: all install-am install-strip
kono
parents:
diff changeset
724
kono
parents:
diff changeset
725 .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \
kono
parents:
diff changeset
726 clean-generic clean-libtool clean-toolexeclibLTLIBRARIES ctags \
kono
parents:
diff changeset
727 distclean distclean-compile distclean-generic distclean-hdr \
kono
parents:
diff changeset
728 distclean-libtool distclean-tags dvi dvi-am html html-am info \
kono
parents:
diff changeset
729 info-am install install-am install-data install-data-am \
kono
parents:
diff changeset
730 install-dvi install-dvi-am install-exec install-exec-am \
kono
parents:
diff changeset
731 install-html install-html-am install-info install-info-am \
kono
parents:
diff changeset
732 install-man install-pdf install-pdf-am install-ps \
kono
parents:
diff changeset
733 install-ps-am install-strip install-toolexeclibLTLIBRARIES \
kono
parents:
diff changeset
734 installcheck installcheck-am installdirs maintainer-clean \
kono
parents:
diff changeset
735 maintainer-clean-generic mostlyclean mostlyclean-compile \
kono
parents:
diff changeset
736 mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
kono
parents:
diff changeset
737 tags uninstall uninstall-am uninstall-toolexeclibLTLIBRARIES
kono
parents:
diff changeset
738
kono
parents:
diff changeset
739
kono
parents:
diff changeset
740 # Tell versions [3.59,3.63) of GNU make to not export all variables.
kono
parents:
diff changeset
741 # Otherwise a system limit (for SysV at least) may be exceeded.
kono
parents:
diff changeset
742 .NOEXPORT: