~ubuntu-branches/ubuntu/trusty/sysprof/trusty

« back to all changes in this revision

Viewing changes to Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Ritesh Raj Sarraf
  • Date: 2011-06-13 23:05:39 UTC
  • mfrom: (8.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110613230539-426qhsc3k996edou
Tags: 1.1.6-2
Upload to unstable 

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
 
15
15
@SET_MAKE@
16
16
 
 
17
#SUBDIRS = $(MODULE_SUBDIR)
 
18
#DIST_SUBDIRS = module
 
19
 
17
20
srcdir = @srcdir@
18
21
top_srcdir = @top_srcdir@
19
22
VPATH = @srcdir@
35
38
NORMAL_UNINSTALL = :
36
39
PRE_UNINSTALL = :
37
40
POST_UNINSTALL = :
 
41
@BUILD_GUI_TRUE@am__append_1 = sysprof 
38
42
ACLOCAL = @ACLOCAL@
39
43
AMDEP_FALSE = @AMDEP_FALSE@
40
44
AMDEP_TRUE = @AMDEP_TRUE@
43
47
AUTOHEADER = @AUTOHEADER@
44
48
AUTOMAKE = @AUTOMAKE@
45
49
AWK = @AWK@
 
50
BUILD_GUI_FALSE = @BUILD_GUI_FALSE@
 
51
BUILD_GUI_TRUE = @BUILD_GUI_TRUE@
46
52
CC = @CC@
47
53
CCDEPMODE = @CCDEPMODE@
48
54
CFLAGS = @CFLAGS@
 
55
CORE_DEP_CFLAGS = @CORE_DEP_CFLAGS@
 
56
CORE_DEP_LIBS = @CORE_DEP_LIBS@
49
57
CPPFLAGS = @CPPFLAGS@
50
58
CYGPATH_W = @CYGPATH_W@
51
59
DEFS = @DEFS@
52
60
DEPDIR = @DEPDIR@
53
 
DEP_CFLAGS = @DEP_CFLAGS@
54
 
DEP_LIBS = @DEP_LIBS@
55
61
ECHO_C = @ECHO_C@
56
62
ECHO_N = @ECHO_N@
57
63
ECHO_T = @ECHO_T@
58
64
EXEEXT = @EXEEXT@
 
65
GUI_DEP_CFLAGS = @GUI_DEP_CFLAGS@
 
66
GUI_DEP_LIBS = @GUI_DEP_LIBS@
59
67
INSTALL_DATA = @INSTALL_DATA@
60
68
INSTALL_PROGRAM = @INSTALL_PROGRAM@
61
69
INSTALL_SCRIPT = @INSTALL_SCRIPT@
111
119
sharedstatedir = @sharedstatedir@
112
120
sysconfdir = @sysconfdir@
113
121
target_alias = @target_alias@
114
 
SUBDIRS = $(MODULE_SUBDIR)
115
 
DIST_SUBDIRS = module
116
 
 
117
 
bin_PROGRAMS = sysprof
118
 
pkgdata_DATA = sysprof.glade sysprof-icon.png
119
 
 
120
 
sysprof_SOURCES = \
121
 
        binfile.h               \
122
 
        binfile.c               \
123
 
        process.h               \
124
 
        process.c               \
125
 
        profile.h               \
126
 
        profile.c               \
127
 
        sfile.h                 \
128
 
        sfile.c                 \
129
 
        stackstash.h            \
130
 
        stackstash.c            \
131
 
        module/sysprof-module.h \
132
 
        sysprof.c               \
133
 
        treeviewutils.h         \
134
 
        treeviewutils.c         \
135
 
        watch.h                 \
136
 
        watch.c
137
 
 
138
 
 
139
 
sysprof_LDADD = $(DEP_LIBS)
140
 
 
141
 
INCLUDES = \
142
 
        $(DEP_CFLAGS)                              \
143
 
        -DDATADIR=\"$(pkgdatadir)\"                \
144
 
        -DPIXMAPDIR=\"$(datadir)/pixmaps\"
145
 
 
146
 
 
147
 
 
148
 
#       memprof.desktop         
149
 
#       memprof.spec.in
150
 
EXTRA_DIST = \
151
 
        sysprof.glade           \
152
 
        sysprof-icon.png        \
153
 
        module/sysprof-module.c \
154
 
        module/sysprof-module.h \
155
 
        module/Makefile
156
 
 
 
122
 
 
123
bin_PROGRAMS = sysprof-cli $(am__append_1)
 
124
 
 
125
SYSPROF_CORE = \
 
126
        binfile.h                               \
 
127
        binfile.c                               \
 
128
        collector.c                             \
 
129
        collector.h                             \
 
130
        demangle.c                              \
 
131
        elfparser.c                             \
 
132
        elfparser.h                             \
 
133
        profile.h                               \
 
134
        profile.c                               \
 
135
        sfile.h                                 \
 
136
        sfile.c                                 \
 
137
        sformat.h                               \
 
138
        sformat.c                               \
 
139
        stackstash.h                            \
 
140
        stackstash.c                            \
 
141
        tracker.h                               \
 
142
        tracker.c                               \
 
143
        unwind.h                                \
 
144
        unwind.c                                \
 
145
        watch.h                                 \
 
146
        watch.c                                 \
 
147
                                                \
 
148
        perf_counter.h                          \
 
149
        util.h
 
150
 
 
151
 
 
152
 
 
153
#       module/sysprof-module.h                 
 
154
 
 
155
#
 
156
# GUI version
 
157
#
 
158
@BUILD_GUI_TRUE@sysprof_SOURCES = \
 
159
@BUILD_GUI_TRUE@        $(SYSPROF_CORE)                         \
 
160
@BUILD_GUI_TRUE@        footreestore.c                          \
 
161
@BUILD_GUI_TRUE@        footreestore.h                          \
 
162
@BUILD_GUI_TRUE@        footreedatalist.h                       \
 
163
@BUILD_GUI_TRUE@        footreedatalist.c                       \
 
164
@BUILD_GUI_TRUE@        treeviewutils.h                         \
 
165
@BUILD_GUI_TRUE@        treeviewutils.c                         \
 
166
@BUILD_GUI_TRUE@        sysprof.c
 
167
 
 
168
 
 
169
@BUILD_GUI_TRUE@sysprof_CPPFLAGS = \
 
170
@BUILD_GUI_TRUE@        $(GUI_DEP_CFLAGS)                       \
 
171
@BUILD_GUI_TRUE@        -DDATADIR=\"$(pkgdatadir)\"             \
 
172
@BUILD_GUI_TRUE@        -DPIXMAPDIR=\"$(pixmapsdir)\"
 
173
 
 
174
 
 
175
@BUILD_GUI_TRUE@sysprof_LDADD = $(GUI_DEP_LIBS)
157
176
 
158
177
pixmapsdir = $(datadir)/pixmaps
159
 
pixmaps_DATA = sysprof-icon.png
 
178
 
 
179
dist_pkgdata_DATA = sysprof.glade
 
180
dist_pixmaps_DATA = sysprof-icon-16.png sysprof-icon-24.png sysprof-icon-32.png sysprof-icon-48.png
 
181
 
 
182
 
 
183
#
 
184
# Command line version
 
185
#
 
186
sysprof_cli_SOURCES = \
 
187
        $(SYSPROF_CORE)                         \
 
188
        signal-handler.h                        \
 
189
        signal-handler.c                        \
 
190
        sysprof-cli.c
 
191
 
 
192
 
 
193
sysprof_cli_CPPFLAGS = \
 
194
        $(CORE_DEP_CFLAGS)
 
195
 
 
196
 
 
197
sysprof_cli_LDADD = $(CORE_DEP_LIBS)
 
198
 
 
199
#
 
200
# Module stuff
 
201
#  
 
202
 
 
203
#EXTRA_DIST =                                   \
 
204
#       module/sysprof-module.c                 \
 
205
#       module/sysprof-module.h                 \
 
206
#       module/Makefile
 
207
 
 
208
#insert-module:
 
209
#       /sbin/modprobe -r sysprof-module
 
210
#       /sbin/modprobe sysprof-module
 
211
 
 
212
 
213
# Test programs
 
214
#
 
215
noinst_PROGRAMS = testelf testunwind
 
216
 
 
217
# testunwind
 
218
testunwind_SOURCES = \
 
219
        testunwind.c    \
 
220
        demangle.c      \
 
221
        elfparser.c     \
 
222
        elfparser.h     \
 
223
        unwind.c        \
 
224
        unwind.h
 
225
 
 
226
testunwind_CPPFLAGS = $(CORE_DEP_CFLAGS)
 
227
testunwind_LDADD = $(CORE_DEP_LIBS)
 
228
 
 
229
# testelf
 
230
testelf_SOURCES = \
 
231
        testelf.c       \
 
232
        demangle.c      \
 
233
        elfparser.c     \
 
234
        elfparser.h
 
235
 
 
236
 
 
237
testelf_CPPFLAGS = $(CORE_DEP_CFLAGS)
 
238
testelf_LDADD = $(CORE_DEP_LIBS)
160
239
subdir = .
161
240
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
162
241
mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs
163
242
CONFIG_HEADER = config.h
164
243
CONFIG_CLEAN_FILES =
165
 
bin_PROGRAMS = sysprof$(EXEEXT)
166
 
PROGRAMS = $(bin_PROGRAMS)
 
244
@BUILD_GUI_TRUE@bin_PROGRAMS = sysprof-cli$(EXEEXT) sysprof$(EXEEXT)
 
245
@BUILD_GUI_FALSE@bin_PROGRAMS = sysprof-cli$(EXEEXT)
 
246
noinst_PROGRAMS = testelf$(EXEEXT) testunwind$(EXEEXT)
 
247
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
167
248
 
168
 
am_sysprof_OBJECTS = binfile.$(OBJEXT) process.$(OBJEXT) \
169
 
        profile.$(OBJEXT) sfile.$(OBJEXT) stackstash.$(OBJEXT) \
170
 
        sysprof.$(OBJEXT) treeviewutils.$(OBJEXT) watch.$(OBJEXT)
 
249
am__sysprof_SOURCES_DIST = binfile.h binfile.c collector.c collector.h \
 
250
        demangle.c elfparser.c elfparser.h profile.h profile.c sfile.h \
 
251
        sfile.c sformat.h sformat.c stackstash.h stackstash.c tracker.h \
 
252
        tracker.c unwind.h unwind.c watch.h watch.c perf_counter.h \
 
253
        util.h footreestore.c footreestore.h footreedatalist.h \
 
254
        footreedatalist.c treeviewutils.h treeviewutils.c sysprof.c
 
255
am__objects_1 = sysprof-binfile.$(OBJEXT) sysprof-collector.$(OBJEXT) \
 
256
        sysprof-demangle.$(OBJEXT) sysprof-elfparser.$(OBJEXT) \
 
257
        sysprof-profile.$(OBJEXT) sysprof-sfile.$(OBJEXT) \
 
258
        sysprof-sformat.$(OBJEXT) sysprof-stackstash.$(OBJEXT) \
 
259
        sysprof-tracker.$(OBJEXT) sysprof-unwind.$(OBJEXT) \
 
260
        sysprof-watch.$(OBJEXT)
 
261
@BUILD_GUI_TRUE@am_sysprof_OBJECTS = $(am__objects_1) \
 
262
@BUILD_GUI_TRUE@        sysprof-footreestore.$(OBJEXT) \
 
263
@BUILD_GUI_TRUE@        sysprof-footreedatalist.$(OBJEXT) \
 
264
@BUILD_GUI_TRUE@        sysprof-treeviewutils.$(OBJEXT) \
 
265
@BUILD_GUI_TRUE@        sysprof-sysprof.$(OBJEXT)
171
266
sysprof_OBJECTS = $(am_sysprof_OBJECTS)
172
 
sysprof_DEPENDENCIES =
 
267
@BUILD_GUI_TRUE@sysprof_DEPENDENCIES =
 
268
@BUILD_GUI_FALSE@sysprof_DEPENDENCIES =
173
269
sysprof_LDFLAGS =
 
270
am__objects_2 = sysprof_cli-binfile.$(OBJEXT) \
 
271
        sysprof_cli-collector.$(OBJEXT) sysprof_cli-demangle.$(OBJEXT) \
 
272
        sysprof_cli-elfparser.$(OBJEXT) sysprof_cli-profile.$(OBJEXT) \
 
273
        sysprof_cli-sfile.$(OBJEXT) sysprof_cli-sformat.$(OBJEXT) \
 
274
        sysprof_cli-stackstash.$(OBJEXT) sysprof_cli-tracker.$(OBJEXT) \
 
275
        sysprof_cli-unwind.$(OBJEXT) sysprof_cli-watch.$(OBJEXT)
 
276
am_sysprof_cli_OBJECTS = $(am__objects_2) \
 
277
        sysprof_cli-signal-handler.$(OBJEXT) \
 
278
        sysprof_cli-sysprof-cli.$(OBJEXT)
 
279
sysprof_cli_OBJECTS = $(am_sysprof_cli_OBJECTS)
 
280
sysprof_cli_DEPENDENCIES =
 
281
sysprof_cli_LDFLAGS =
 
282
am_testelf_OBJECTS = testelf-testelf.$(OBJEXT) \
 
283
        testelf-demangle.$(OBJEXT) testelf-elfparser.$(OBJEXT)
 
284
testelf_OBJECTS = $(am_testelf_OBJECTS)
 
285
testelf_DEPENDENCIES =
 
286
testelf_LDFLAGS =
 
287
am_testunwind_OBJECTS = testunwind-testunwind.$(OBJEXT) \
 
288
        testunwind-demangle.$(OBJEXT) testunwind-elfparser.$(OBJEXT) \
 
289
        testunwind-unwind.$(OBJEXT)
 
290
testunwind_OBJECTS = $(am_testunwind_OBJECTS)
 
291
testunwind_DEPENDENCIES =
 
292
testunwind_LDFLAGS =
174
293
 
175
294
DEFAULT_INCLUDES =  -I. -I$(srcdir) -I.
176
295
depcomp = $(SHELL) $(top_srcdir)/depcomp
177
296
am__depfiles_maybe = depfiles
178
 
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/binfile.Po ./$(DEPDIR)/process.Po \
179
 
@AMDEP_TRUE@    ./$(DEPDIR)/profile.Po ./$(DEPDIR)/sfile.Po \
180
 
@AMDEP_TRUE@    ./$(DEPDIR)/stackstash.Po ./$(DEPDIR)/sysprof.Po \
181
 
@AMDEP_TRUE@    ./$(DEPDIR)/treeviewutils.Po ./$(DEPDIR)/watch.Po
 
297
@AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/sysprof-binfile.Po \
 
298
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-collector.Po \
 
299
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-demangle.Po \
 
300
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-elfparser.Po \
 
301
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-footreedatalist.Po \
 
302
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-footreestore.Po \
 
303
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-profile.Po \
 
304
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-sfile.Po \
 
305
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-sformat.Po \
 
306
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-stackstash.Po \
 
307
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-sysprof.Po \
 
308
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-tracker.Po \
 
309
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-treeviewutils.Po \
 
310
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-unwind.Po \
 
311
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof-watch.Po \
 
312
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-binfile.Po \
 
313
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-collector.Po \
 
314
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-demangle.Po \
 
315
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-elfparser.Po \
 
316
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-profile.Po \
 
317
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-sfile.Po \
 
318
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-sformat.Po \
 
319
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-signal-handler.Po \
 
320
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-stackstash.Po \
 
321
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-sysprof-cli.Po \
 
322
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-tracker.Po \
 
323
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-unwind.Po \
 
324
@AMDEP_TRUE@    ./$(DEPDIR)/sysprof_cli-watch.Po \
 
325
@AMDEP_TRUE@    ./$(DEPDIR)/testelf-demangle.Po \
 
326
@AMDEP_TRUE@    ./$(DEPDIR)/testelf-elfparser.Po \
 
327
@AMDEP_TRUE@    ./$(DEPDIR)/testelf-testelf.Po \
 
328
@AMDEP_TRUE@    ./$(DEPDIR)/testunwind-demangle.Po \
 
329
@AMDEP_TRUE@    ./$(DEPDIR)/testunwind-elfparser.Po \
 
330
@AMDEP_TRUE@    ./$(DEPDIR)/testunwind-testunwind.Po \
 
331
@AMDEP_TRUE@    ./$(DEPDIR)/testunwind-unwind.Po
182
332
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
183
333
        $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
184
334
CCLD = $(CC)
185
335
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
186
 
DIST_SOURCES = $(sysprof_SOURCES)
187
 
DATA = $(pixmaps_DATA) $(pkgdata_DATA)
188
 
 
189
 
 
190
 
RECURSIVE_TARGETS = info-recursive dvi-recursive pdf-recursive \
191
 
        ps-recursive install-info-recursive uninstall-info-recursive \
192
 
        all-recursive install-data-recursive install-exec-recursive \
193
 
        installdirs-recursive install-recursive uninstall-recursive \
194
 
        check-recursive installcheck-recursive
195
 
DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure AUTHORS \
196
 
        COPYING ChangeLog INSTALL Makefile.am NEWS TODO aclocal.m4 \
197
 
        compile config.h.in configure configure.ac depcomp install-sh \
198
 
        missing mkinstalldirs
199
 
SOURCES = $(sysprof_SOURCES)
 
336
DIST_SOURCES = $(am__sysprof_SOURCES_DIST) $(sysprof_cli_SOURCES) \
 
337
        $(testelf_SOURCES) $(testunwind_SOURCES)
 
338
DATA = $(dist_pixmaps_DATA) $(dist_pkgdata_DATA)
 
339
 
 
340
DIST_COMMON = README $(dist_pixmaps_DATA) $(dist_pkgdata_DATA) \
 
341
        $(srcdir)/Makefile.in $(srcdir)/configure \
 
342
        AUTHORS COPYING ChangeLog INSTALL Makefile.am NEWS TODO \
 
343
        aclocal.m4 compile config.h.in configure configure.ac depcomp \
 
344
        install-sh missing mkinstalldirs
 
345
SOURCES = $(sysprof_SOURCES) $(sysprof_cli_SOURCES) $(testelf_SOURCES) $(testunwind_SOURCES)
200
346
 
201
347
all: config.h
202
 
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
 
348
        $(MAKE) $(AM_MAKEFLAGS) all-am
203
349
 
204
350
.SUFFIXES:
205
351
.SUFFIXES: .c .o .obj
260
406
 
261
407
clean-binPROGRAMS:
262
408
        -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
 
409
 
 
410
clean-noinstPROGRAMS:
 
411
        -test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
263
412
sysprof$(EXEEXT): $(sysprof_OBJECTS) $(sysprof_DEPENDENCIES) 
264
413
        @rm -f sysprof$(EXEEXT)
265
414
        $(LINK) $(sysprof_LDFLAGS) $(sysprof_OBJECTS) $(sysprof_LDADD) $(LIBS)
 
415
sysprof-cli$(EXEEXT): $(sysprof_cli_OBJECTS) $(sysprof_cli_DEPENDENCIES) 
 
416
        @rm -f sysprof-cli$(EXEEXT)
 
417
        $(LINK) $(sysprof_cli_LDFLAGS) $(sysprof_cli_OBJECTS) $(sysprof_cli_LDADD) $(LIBS)
 
418
testelf$(EXEEXT): $(testelf_OBJECTS) $(testelf_DEPENDENCIES) 
 
419
        @rm -f testelf$(EXEEXT)
 
420
        $(LINK) $(testelf_LDFLAGS) $(testelf_OBJECTS) $(testelf_LDADD) $(LIBS)
 
421
testunwind$(EXEEXT): $(testunwind_OBJECTS) $(testunwind_DEPENDENCIES) 
 
422
        @rm -f testunwind$(EXEEXT)
 
423
        $(LINK) $(testunwind_LDFLAGS) $(testunwind_OBJECTS) $(testunwind_LDADD) $(LIBS)
266
424
 
267
425
mostlyclean-compile:
268
426
        -rm -f *.$(OBJEXT) core *.core
270
428
distclean-compile:
271
429
        -rm -f *.tab.c
272
430
 
273
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/binfile.Po@am__quote@
274
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/process.Po@am__quote@
275
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/profile.Po@am__quote@
276
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sfile.Po@am__quote@
277
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stackstash.Po@am__quote@
278
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof.Po@am__quote@
279
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/treeviewutils.Po@am__quote@
280
 
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/watch.Po@am__quote@
 
431
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-binfile.Po@am__quote@
 
432
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-collector.Po@am__quote@
 
433
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-demangle.Po@am__quote@
 
434
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-elfparser.Po@am__quote@
 
435
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-footreedatalist.Po@am__quote@
 
436
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-footreestore.Po@am__quote@
 
437
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-profile.Po@am__quote@
 
438
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-sfile.Po@am__quote@
 
439
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-sformat.Po@am__quote@
 
440
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-stackstash.Po@am__quote@
 
441
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-sysprof.Po@am__quote@
 
442
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-tracker.Po@am__quote@
 
443
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-treeviewutils.Po@am__quote@
 
444
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-unwind.Po@am__quote@
 
445
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof-watch.Po@am__quote@
 
446
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-binfile.Po@am__quote@
 
447
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-collector.Po@am__quote@
 
448
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-demangle.Po@am__quote@
 
449
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-elfparser.Po@am__quote@
 
450
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-profile.Po@am__quote@
 
451
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-sfile.Po@am__quote@
 
452
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-sformat.Po@am__quote@
 
453
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-signal-handler.Po@am__quote@
 
454
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-stackstash.Po@am__quote@
 
455
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-sysprof-cli.Po@am__quote@
 
456
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-tracker.Po@am__quote@
 
457
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-unwind.Po@am__quote@
 
458
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sysprof_cli-watch.Po@am__quote@
 
459
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testelf-demangle.Po@am__quote@
 
460
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testelf-elfparser.Po@am__quote@
 
461
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testelf-testelf.Po@am__quote@
 
462
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testunwind-demangle.Po@am__quote@
 
463
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testunwind-elfparser.Po@am__quote@
 
464
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testunwind-testunwind.Po@am__quote@
 
465
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testunwind-unwind.Po@am__quote@
281
466
 
282
467
.c.o:
283
468
@am__fastdepCC_TRUE@    if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \
300
485
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/$*.Po' tmpdepfile='$(DEPDIR)/$*.TPo' @AMDEPBACKSLASH@
301
486
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
302
487
@am__fastdepCC_FALSE@   $(COMPILE) -c `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`
 
488
 
 
489
sysprof-binfile.o: binfile.c
 
490
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-binfile.o -MD -MP -MF "$(DEPDIR)/sysprof-binfile.Tpo" \
 
491
@am__fastdepCC_TRUE@      -c -o sysprof-binfile.o `test -f 'binfile.c' || echo '$(srcdir)/'`binfile.c; \
 
492
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-binfile.Tpo" "$(DEPDIR)/sysprof-binfile.Po"; \
 
493
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-binfile.Tpo"; exit 1; \
 
494
@am__fastdepCC_TRUE@    fi
 
495
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='binfile.c' object='sysprof-binfile.o' libtool=no @AMDEPBACKSLASH@
 
496
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-binfile.Po' tmpdepfile='$(DEPDIR)/sysprof-binfile.TPo' @AMDEPBACKSLASH@
 
497
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
498
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-binfile.o `test -f 'binfile.c' || echo '$(srcdir)/'`binfile.c
 
499
 
 
500
sysprof-binfile.obj: binfile.c
 
501
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-binfile.obj -MD -MP -MF "$(DEPDIR)/sysprof-binfile.Tpo" \
 
502
@am__fastdepCC_TRUE@      -c -o sysprof-binfile.obj `if test -f 'binfile.c'; then $(CYGPATH_W) 'binfile.c'; else $(CYGPATH_W) '$(srcdir)/binfile.c'; fi`; \
 
503
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-binfile.Tpo" "$(DEPDIR)/sysprof-binfile.Po"; \
 
504
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-binfile.Tpo"; exit 1; \
 
505
@am__fastdepCC_TRUE@    fi
 
506
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='binfile.c' object='sysprof-binfile.obj' libtool=no @AMDEPBACKSLASH@
 
507
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-binfile.Po' tmpdepfile='$(DEPDIR)/sysprof-binfile.TPo' @AMDEPBACKSLASH@
 
508
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
509
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-binfile.obj `if test -f 'binfile.c'; then $(CYGPATH_W) 'binfile.c'; else $(CYGPATH_W) '$(srcdir)/binfile.c'; fi`
 
510
 
 
511
sysprof-collector.o: collector.c
 
512
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-collector.o -MD -MP -MF "$(DEPDIR)/sysprof-collector.Tpo" \
 
513
@am__fastdepCC_TRUE@      -c -o sysprof-collector.o `test -f 'collector.c' || echo '$(srcdir)/'`collector.c; \
 
514
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-collector.Tpo" "$(DEPDIR)/sysprof-collector.Po"; \
 
515
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-collector.Tpo"; exit 1; \
 
516
@am__fastdepCC_TRUE@    fi
 
517
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='collector.c' object='sysprof-collector.o' libtool=no @AMDEPBACKSLASH@
 
518
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-collector.Po' tmpdepfile='$(DEPDIR)/sysprof-collector.TPo' @AMDEPBACKSLASH@
 
519
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
520
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-collector.o `test -f 'collector.c' || echo '$(srcdir)/'`collector.c
 
521
 
 
522
sysprof-collector.obj: collector.c
 
523
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-collector.obj -MD -MP -MF "$(DEPDIR)/sysprof-collector.Tpo" \
 
524
@am__fastdepCC_TRUE@      -c -o sysprof-collector.obj `if test -f 'collector.c'; then $(CYGPATH_W) 'collector.c'; else $(CYGPATH_W) '$(srcdir)/collector.c'; fi`; \
 
525
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-collector.Tpo" "$(DEPDIR)/sysprof-collector.Po"; \
 
526
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-collector.Tpo"; exit 1; \
 
527
@am__fastdepCC_TRUE@    fi
 
528
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='collector.c' object='sysprof-collector.obj' libtool=no @AMDEPBACKSLASH@
 
529
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-collector.Po' tmpdepfile='$(DEPDIR)/sysprof-collector.TPo' @AMDEPBACKSLASH@
 
530
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
531
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-collector.obj `if test -f 'collector.c'; then $(CYGPATH_W) 'collector.c'; else $(CYGPATH_W) '$(srcdir)/collector.c'; fi`
 
532
 
 
533
sysprof-demangle.o: demangle.c
 
534
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-demangle.o -MD -MP -MF "$(DEPDIR)/sysprof-demangle.Tpo" \
 
535
@am__fastdepCC_TRUE@      -c -o sysprof-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c; \
 
536
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-demangle.Tpo" "$(DEPDIR)/sysprof-demangle.Po"; \
 
537
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-demangle.Tpo"; exit 1; \
 
538
@am__fastdepCC_TRUE@    fi
 
539
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='sysprof-demangle.o' libtool=no @AMDEPBACKSLASH@
 
540
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-demangle.Po' tmpdepfile='$(DEPDIR)/sysprof-demangle.TPo' @AMDEPBACKSLASH@
 
541
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
542
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c
 
543
 
 
544
sysprof-demangle.obj: demangle.c
 
545
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-demangle.obj -MD -MP -MF "$(DEPDIR)/sysprof-demangle.Tpo" \
 
546
@am__fastdepCC_TRUE@      -c -o sysprof-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`; \
 
547
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-demangle.Tpo" "$(DEPDIR)/sysprof-demangle.Po"; \
 
548
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-demangle.Tpo"; exit 1; \
 
549
@am__fastdepCC_TRUE@    fi
 
550
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='sysprof-demangle.obj' libtool=no @AMDEPBACKSLASH@
 
551
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-demangle.Po' tmpdepfile='$(DEPDIR)/sysprof-demangle.TPo' @AMDEPBACKSLASH@
 
552
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
553
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`
 
554
 
 
555
sysprof-elfparser.o: elfparser.c
 
556
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-elfparser.o -MD -MP -MF "$(DEPDIR)/sysprof-elfparser.Tpo" \
 
557
@am__fastdepCC_TRUE@      -c -o sysprof-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c; \
 
558
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-elfparser.Tpo" "$(DEPDIR)/sysprof-elfparser.Po"; \
 
559
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-elfparser.Tpo"; exit 1; \
 
560
@am__fastdepCC_TRUE@    fi
 
561
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='sysprof-elfparser.o' libtool=no @AMDEPBACKSLASH@
 
562
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-elfparser.Po' tmpdepfile='$(DEPDIR)/sysprof-elfparser.TPo' @AMDEPBACKSLASH@
 
563
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
564
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c
 
565
 
 
566
sysprof-elfparser.obj: elfparser.c
 
567
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-elfparser.obj -MD -MP -MF "$(DEPDIR)/sysprof-elfparser.Tpo" \
 
568
@am__fastdepCC_TRUE@      -c -o sysprof-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`; \
 
569
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-elfparser.Tpo" "$(DEPDIR)/sysprof-elfparser.Po"; \
 
570
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-elfparser.Tpo"; exit 1; \
 
571
@am__fastdepCC_TRUE@    fi
 
572
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='sysprof-elfparser.obj' libtool=no @AMDEPBACKSLASH@
 
573
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-elfparser.Po' tmpdepfile='$(DEPDIR)/sysprof-elfparser.TPo' @AMDEPBACKSLASH@
 
574
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
575
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`
 
576
 
 
577
sysprof-profile.o: profile.c
 
578
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-profile.o -MD -MP -MF "$(DEPDIR)/sysprof-profile.Tpo" \
 
579
@am__fastdepCC_TRUE@      -c -o sysprof-profile.o `test -f 'profile.c' || echo '$(srcdir)/'`profile.c; \
 
580
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-profile.Tpo" "$(DEPDIR)/sysprof-profile.Po"; \
 
581
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-profile.Tpo"; exit 1; \
 
582
@am__fastdepCC_TRUE@    fi
 
583
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='profile.c' object='sysprof-profile.o' libtool=no @AMDEPBACKSLASH@
 
584
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-profile.Po' tmpdepfile='$(DEPDIR)/sysprof-profile.TPo' @AMDEPBACKSLASH@
 
585
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
586
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-profile.o `test -f 'profile.c' || echo '$(srcdir)/'`profile.c
 
587
 
 
588
sysprof-profile.obj: profile.c
 
589
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-profile.obj -MD -MP -MF "$(DEPDIR)/sysprof-profile.Tpo" \
 
590
@am__fastdepCC_TRUE@      -c -o sysprof-profile.obj `if test -f 'profile.c'; then $(CYGPATH_W) 'profile.c'; else $(CYGPATH_W) '$(srcdir)/profile.c'; fi`; \
 
591
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-profile.Tpo" "$(DEPDIR)/sysprof-profile.Po"; \
 
592
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-profile.Tpo"; exit 1; \
 
593
@am__fastdepCC_TRUE@    fi
 
594
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='profile.c' object='sysprof-profile.obj' libtool=no @AMDEPBACKSLASH@
 
595
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-profile.Po' tmpdepfile='$(DEPDIR)/sysprof-profile.TPo' @AMDEPBACKSLASH@
 
596
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
597
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-profile.obj `if test -f 'profile.c'; then $(CYGPATH_W) 'profile.c'; else $(CYGPATH_W) '$(srcdir)/profile.c'; fi`
 
598
 
 
599
sysprof-sfile.o: sfile.c
 
600
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-sfile.o -MD -MP -MF "$(DEPDIR)/sysprof-sfile.Tpo" \
 
601
@am__fastdepCC_TRUE@      -c -o sysprof-sfile.o `test -f 'sfile.c' || echo '$(srcdir)/'`sfile.c; \
 
602
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-sfile.Tpo" "$(DEPDIR)/sysprof-sfile.Po"; \
 
603
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-sfile.Tpo"; exit 1; \
 
604
@am__fastdepCC_TRUE@    fi
 
605
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sfile.c' object='sysprof-sfile.o' libtool=no @AMDEPBACKSLASH@
 
606
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-sfile.Po' tmpdepfile='$(DEPDIR)/sysprof-sfile.TPo' @AMDEPBACKSLASH@
 
607
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
608
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-sfile.o `test -f 'sfile.c' || echo '$(srcdir)/'`sfile.c
 
609
 
 
610
sysprof-sfile.obj: sfile.c
 
611
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-sfile.obj -MD -MP -MF "$(DEPDIR)/sysprof-sfile.Tpo" \
 
612
@am__fastdepCC_TRUE@      -c -o sysprof-sfile.obj `if test -f 'sfile.c'; then $(CYGPATH_W) 'sfile.c'; else $(CYGPATH_W) '$(srcdir)/sfile.c'; fi`; \
 
613
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-sfile.Tpo" "$(DEPDIR)/sysprof-sfile.Po"; \
 
614
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-sfile.Tpo"; exit 1; \
 
615
@am__fastdepCC_TRUE@    fi
 
616
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sfile.c' object='sysprof-sfile.obj' libtool=no @AMDEPBACKSLASH@
 
617
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-sfile.Po' tmpdepfile='$(DEPDIR)/sysprof-sfile.TPo' @AMDEPBACKSLASH@
 
618
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
619
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-sfile.obj `if test -f 'sfile.c'; then $(CYGPATH_W) 'sfile.c'; else $(CYGPATH_W) '$(srcdir)/sfile.c'; fi`
 
620
 
 
621
sysprof-sformat.o: sformat.c
 
622
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-sformat.o -MD -MP -MF "$(DEPDIR)/sysprof-sformat.Tpo" \
 
623
@am__fastdepCC_TRUE@      -c -o sysprof-sformat.o `test -f 'sformat.c' || echo '$(srcdir)/'`sformat.c; \
 
624
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-sformat.Tpo" "$(DEPDIR)/sysprof-sformat.Po"; \
 
625
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-sformat.Tpo"; exit 1; \
 
626
@am__fastdepCC_TRUE@    fi
 
627
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sformat.c' object='sysprof-sformat.o' libtool=no @AMDEPBACKSLASH@
 
628
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-sformat.Po' tmpdepfile='$(DEPDIR)/sysprof-sformat.TPo' @AMDEPBACKSLASH@
 
629
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
630
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-sformat.o `test -f 'sformat.c' || echo '$(srcdir)/'`sformat.c
 
631
 
 
632
sysprof-sformat.obj: sformat.c
 
633
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-sformat.obj -MD -MP -MF "$(DEPDIR)/sysprof-sformat.Tpo" \
 
634
@am__fastdepCC_TRUE@      -c -o sysprof-sformat.obj `if test -f 'sformat.c'; then $(CYGPATH_W) 'sformat.c'; else $(CYGPATH_W) '$(srcdir)/sformat.c'; fi`; \
 
635
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-sformat.Tpo" "$(DEPDIR)/sysprof-sformat.Po"; \
 
636
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-sformat.Tpo"; exit 1; \
 
637
@am__fastdepCC_TRUE@    fi
 
638
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sformat.c' object='sysprof-sformat.obj' libtool=no @AMDEPBACKSLASH@
 
639
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-sformat.Po' tmpdepfile='$(DEPDIR)/sysprof-sformat.TPo' @AMDEPBACKSLASH@
 
640
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
641
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-sformat.obj `if test -f 'sformat.c'; then $(CYGPATH_W) 'sformat.c'; else $(CYGPATH_W) '$(srcdir)/sformat.c'; fi`
 
642
 
 
643
sysprof-stackstash.o: stackstash.c
 
644
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-stackstash.o -MD -MP -MF "$(DEPDIR)/sysprof-stackstash.Tpo" \
 
645
@am__fastdepCC_TRUE@      -c -o sysprof-stackstash.o `test -f 'stackstash.c' || echo '$(srcdir)/'`stackstash.c; \
 
646
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-stackstash.Tpo" "$(DEPDIR)/sysprof-stackstash.Po"; \
 
647
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-stackstash.Tpo"; exit 1; \
 
648
@am__fastdepCC_TRUE@    fi
 
649
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='stackstash.c' object='sysprof-stackstash.o' libtool=no @AMDEPBACKSLASH@
 
650
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-stackstash.Po' tmpdepfile='$(DEPDIR)/sysprof-stackstash.TPo' @AMDEPBACKSLASH@
 
651
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
652
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-stackstash.o `test -f 'stackstash.c' || echo '$(srcdir)/'`stackstash.c
 
653
 
 
654
sysprof-stackstash.obj: stackstash.c
 
655
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-stackstash.obj -MD -MP -MF "$(DEPDIR)/sysprof-stackstash.Tpo" \
 
656
@am__fastdepCC_TRUE@      -c -o sysprof-stackstash.obj `if test -f 'stackstash.c'; then $(CYGPATH_W) 'stackstash.c'; else $(CYGPATH_W) '$(srcdir)/stackstash.c'; fi`; \
 
657
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-stackstash.Tpo" "$(DEPDIR)/sysprof-stackstash.Po"; \
 
658
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-stackstash.Tpo"; exit 1; \
 
659
@am__fastdepCC_TRUE@    fi
 
660
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='stackstash.c' object='sysprof-stackstash.obj' libtool=no @AMDEPBACKSLASH@
 
661
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-stackstash.Po' tmpdepfile='$(DEPDIR)/sysprof-stackstash.TPo' @AMDEPBACKSLASH@
 
662
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
663
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-stackstash.obj `if test -f 'stackstash.c'; then $(CYGPATH_W) 'stackstash.c'; else $(CYGPATH_W) '$(srcdir)/stackstash.c'; fi`
 
664
 
 
665
sysprof-tracker.o: tracker.c
 
666
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-tracker.o -MD -MP -MF "$(DEPDIR)/sysprof-tracker.Tpo" \
 
667
@am__fastdepCC_TRUE@      -c -o sysprof-tracker.o `test -f 'tracker.c' || echo '$(srcdir)/'`tracker.c; \
 
668
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-tracker.Tpo" "$(DEPDIR)/sysprof-tracker.Po"; \
 
669
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-tracker.Tpo"; exit 1; \
 
670
@am__fastdepCC_TRUE@    fi
 
671
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tracker.c' object='sysprof-tracker.o' libtool=no @AMDEPBACKSLASH@
 
672
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-tracker.Po' tmpdepfile='$(DEPDIR)/sysprof-tracker.TPo' @AMDEPBACKSLASH@
 
673
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
674
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-tracker.o `test -f 'tracker.c' || echo '$(srcdir)/'`tracker.c
 
675
 
 
676
sysprof-tracker.obj: tracker.c
 
677
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-tracker.obj -MD -MP -MF "$(DEPDIR)/sysprof-tracker.Tpo" \
 
678
@am__fastdepCC_TRUE@      -c -o sysprof-tracker.obj `if test -f 'tracker.c'; then $(CYGPATH_W) 'tracker.c'; else $(CYGPATH_W) '$(srcdir)/tracker.c'; fi`; \
 
679
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-tracker.Tpo" "$(DEPDIR)/sysprof-tracker.Po"; \
 
680
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-tracker.Tpo"; exit 1; \
 
681
@am__fastdepCC_TRUE@    fi
 
682
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tracker.c' object='sysprof-tracker.obj' libtool=no @AMDEPBACKSLASH@
 
683
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-tracker.Po' tmpdepfile='$(DEPDIR)/sysprof-tracker.TPo' @AMDEPBACKSLASH@
 
684
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
685
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-tracker.obj `if test -f 'tracker.c'; then $(CYGPATH_W) 'tracker.c'; else $(CYGPATH_W) '$(srcdir)/tracker.c'; fi`
 
686
 
 
687
sysprof-unwind.o: unwind.c
 
688
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-unwind.o -MD -MP -MF "$(DEPDIR)/sysprof-unwind.Tpo" \
 
689
@am__fastdepCC_TRUE@      -c -o sysprof-unwind.o `test -f 'unwind.c' || echo '$(srcdir)/'`unwind.c; \
 
690
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-unwind.Tpo" "$(DEPDIR)/sysprof-unwind.Po"; \
 
691
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-unwind.Tpo"; exit 1; \
 
692
@am__fastdepCC_TRUE@    fi
 
693
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='unwind.c' object='sysprof-unwind.o' libtool=no @AMDEPBACKSLASH@
 
694
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-unwind.Po' tmpdepfile='$(DEPDIR)/sysprof-unwind.TPo' @AMDEPBACKSLASH@
 
695
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
696
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-unwind.o `test -f 'unwind.c' || echo '$(srcdir)/'`unwind.c
 
697
 
 
698
sysprof-unwind.obj: unwind.c
 
699
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-unwind.obj -MD -MP -MF "$(DEPDIR)/sysprof-unwind.Tpo" \
 
700
@am__fastdepCC_TRUE@      -c -o sysprof-unwind.obj `if test -f 'unwind.c'; then $(CYGPATH_W) 'unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind.c'; fi`; \
 
701
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-unwind.Tpo" "$(DEPDIR)/sysprof-unwind.Po"; \
 
702
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-unwind.Tpo"; exit 1; \
 
703
@am__fastdepCC_TRUE@    fi
 
704
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='unwind.c' object='sysprof-unwind.obj' libtool=no @AMDEPBACKSLASH@
 
705
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-unwind.Po' tmpdepfile='$(DEPDIR)/sysprof-unwind.TPo' @AMDEPBACKSLASH@
 
706
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
707
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-unwind.obj `if test -f 'unwind.c'; then $(CYGPATH_W) 'unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind.c'; fi`
 
708
 
 
709
sysprof-watch.o: watch.c
 
710
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-watch.o -MD -MP -MF "$(DEPDIR)/sysprof-watch.Tpo" \
 
711
@am__fastdepCC_TRUE@      -c -o sysprof-watch.o `test -f 'watch.c' || echo '$(srcdir)/'`watch.c; \
 
712
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-watch.Tpo" "$(DEPDIR)/sysprof-watch.Po"; \
 
713
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-watch.Tpo"; exit 1; \
 
714
@am__fastdepCC_TRUE@    fi
 
715
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='watch.c' object='sysprof-watch.o' libtool=no @AMDEPBACKSLASH@
 
716
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-watch.Po' tmpdepfile='$(DEPDIR)/sysprof-watch.TPo' @AMDEPBACKSLASH@
 
717
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
718
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-watch.o `test -f 'watch.c' || echo '$(srcdir)/'`watch.c
 
719
 
 
720
sysprof-watch.obj: watch.c
 
721
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-watch.obj -MD -MP -MF "$(DEPDIR)/sysprof-watch.Tpo" \
 
722
@am__fastdepCC_TRUE@      -c -o sysprof-watch.obj `if test -f 'watch.c'; then $(CYGPATH_W) 'watch.c'; else $(CYGPATH_W) '$(srcdir)/watch.c'; fi`; \
 
723
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-watch.Tpo" "$(DEPDIR)/sysprof-watch.Po"; \
 
724
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-watch.Tpo"; exit 1; \
 
725
@am__fastdepCC_TRUE@    fi
 
726
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='watch.c' object='sysprof-watch.obj' libtool=no @AMDEPBACKSLASH@
 
727
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-watch.Po' tmpdepfile='$(DEPDIR)/sysprof-watch.TPo' @AMDEPBACKSLASH@
 
728
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
729
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-watch.obj `if test -f 'watch.c'; then $(CYGPATH_W) 'watch.c'; else $(CYGPATH_W) '$(srcdir)/watch.c'; fi`
 
730
 
 
731
sysprof-footreestore.o: footreestore.c
 
732
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-footreestore.o -MD -MP -MF "$(DEPDIR)/sysprof-footreestore.Tpo" \
 
733
@am__fastdepCC_TRUE@      -c -o sysprof-footreestore.o `test -f 'footreestore.c' || echo '$(srcdir)/'`footreestore.c; \
 
734
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-footreestore.Tpo" "$(DEPDIR)/sysprof-footreestore.Po"; \
 
735
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-footreestore.Tpo"; exit 1; \
 
736
@am__fastdepCC_TRUE@    fi
 
737
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='footreestore.c' object='sysprof-footreestore.o' libtool=no @AMDEPBACKSLASH@
 
738
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-footreestore.Po' tmpdepfile='$(DEPDIR)/sysprof-footreestore.TPo' @AMDEPBACKSLASH@
 
739
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
740
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-footreestore.o `test -f 'footreestore.c' || echo '$(srcdir)/'`footreestore.c
 
741
 
 
742
sysprof-footreestore.obj: footreestore.c
 
743
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-footreestore.obj -MD -MP -MF "$(DEPDIR)/sysprof-footreestore.Tpo" \
 
744
@am__fastdepCC_TRUE@      -c -o sysprof-footreestore.obj `if test -f 'footreestore.c'; then $(CYGPATH_W) 'footreestore.c'; else $(CYGPATH_W) '$(srcdir)/footreestore.c'; fi`; \
 
745
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-footreestore.Tpo" "$(DEPDIR)/sysprof-footreestore.Po"; \
 
746
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-footreestore.Tpo"; exit 1; \
 
747
@am__fastdepCC_TRUE@    fi
 
748
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='footreestore.c' object='sysprof-footreestore.obj' libtool=no @AMDEPBACKSLASH@
 
749
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-footreestore.Po' tmpdepfile='$(DEPDIR)/sysprof-footreestore.TPo' @AMDEPBACKSLASH@
 
750
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
751
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-footreestore.obj `if test -f 'footreestore.c'; then $(CYGPATH_W) 'footreestore.c'; else $(CYGPATH_W) '$(srcdir)/footreestore.c'; fi`
 
752
 
 
753
sysprof-footreedatalist.o: footreedatalist.c
 
754
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-footreedatalist.o -MD -MP -MF "$(DEPDIR)/sysprof-footreedatalist.Tpo" \
 
755
@am__fastdepCC_TRUE@      -c -o sysprof-footreedatalist.o `test -f 'footreedatalist.c' || echo '$(srcdir)/'`footreedatalist.c; \
 
756
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-footreedatalist.Tpo" "$(DEPDIR)/sysprof-footreedatalist.Po"; \
 
757
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-footreedatalist.Tpo"; exit 1; \
 
758
@am__fastdepCC_TRUE@    fi
 
759
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='footreedatalist.c' object='sysprof-footreedatalist.o' libtool=no @AMDEPBACKSLASH@
 
760
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-footreedatalist.Po' tmpdepfile='$(DEPDIR)/sysprof-footreedatalist.TPo' @AMDEPBACKSLASH@
 
761
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
762
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-footreedatalist.o `test -f 'footreedatalist.c' || echo '$(srcdir)/'`footreedatalist.c
 
763
 
 
764
sysprof-footreedatalist.obj: footreedatalist.c
 
765
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-footreedatalist.obj -MD -MP -MF "$(DEPDIR)/sysprof-footreedatalist.Tpo" \
 
766
@am__fastdepCC_TRUE@      -c -o sysprof-footreedatalist.obj `if test -f 'footreedatalist.c'; then $(CYGPATH_W) 'footreedatalist.c'; else $(CYGPATH_W) '$(srcdir)/footreedatalist.c'; fi`; \
 
767
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-footreedatalist.Tpo" "$(DEPDIR)/sysprof-footreedatalist.Po"; \
 
768
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-footreedatalist.Tpo"; exit 1; \
 
769
@am__fastdepCC_TRUE@    fi
 
770
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='footreedatalist.c' object='sysprof-footreedatalist.obj' libtool=no @AMDEPBACKSLASH@
 
771
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-footreedatalist.Po' tmpdepfile='$(DEPDIR)/sysprof-footreedatalist.TPo' @AMDEPBACKSLASH@
 
772
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
773
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-footreedatalist.obj `if test -f 'footreedatalist.c'; then $(CYGPATH_W) 'footreedatalist.c'; else $(CYGPATH_W) '$(srcdir)/footreedatalist.c'; fi`
 
774
 
 
775
sysprof-treeviewutils.o: treeviewutils.c
 
776
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-treeviewutils.o -MD -MP -MF "$(DEPDIR)/sysprof-treeviewutils.Tpo" \
 
777
@am__fastdepCC_TRUE@      -c -o sysprof-treeviewutils.o `test -f 'treeviewutils.c' || echo '$(srcdir)/'`treeviewutils.c; \
 
778
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-treeviewutils.Tpo" "$(DEPDIR)/sysprof-treeviewutils.Po"; \
 
779
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-treeviewutils.Tpo"; exit 1; \
 
780
@am__fastdepCC_TRUE@    fi
 
781
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='treeviewutils.c' object='sysprof-treeviewutils.o' libtool=no @AMDEPBACKSLASH@
 
782
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-treeviewutils.Po' tmpdepfile='$(DEPDIR)/sysprof-treeviewutils.TPo' @AMDEPBACKSLASH@
 
783
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
784
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-treeviewutils.o `test -f 'treeviewutils.c' || echo '$(srcdir)/'`treeviewutils.c
 
785
 
 
786
sysprof-treeviewutils.obj: treeviewutils.c
 
787
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-treeviewutils.obj -MD -MP -MF "$(DEPDIR)/sysprof-treeviewutils.Tpo" \
 
788
@am__fastdepCC_TRUE@      -c -o sysprof-treeviewutils.obj `if test -f 'treeviewutils.c'; then $(CYGPATH_W) 'treeviewutils.c'; else $(CYGPATH_W) '$(srcdir)/treeviewutils.c'; fi`; \
 
789
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-treeviewutils.Tpo" "$(DEPDIR)/sysprof-treeviewutils.Po"; \
 
790
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-treeviewutils.Tpo"; exit 1; \
 
791
@am__fastdepCC_TRUE@    fi
 
792
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='treeviewutils.c' object='sysprof-treeviewutils.obj' libtool=no @AMDEPBACKSLASH@
 
793
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-treeviewutils.Po' tmpdepfile='$(DEPDIR)/sysprof-treeviewutils.TPo' @AMDEPBACKSLASH@
 
794
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
795
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-treeviewutils.obj `if test -f 'treeviewutils.c'; then $(CYGPATH_W) 'treeviewutils.c'; else $(CYGPATH_W) '$(srcdir)/treeviewutils.c'; fi`
 
796
 
 
797
sysprof-sysprof.o: sysprof.c
 
798
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-sysprof.o -MD -MP -MF "$(DEPDIR)/sysprof-sysprof.Tpo" \
 
799
@am__fastdepCC_TRUE@      -c -o sysprof-sysprof.o `test -f 'sysprof.c' || echo '$(srcdir)/'`sysprof.c; \
 
800
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-sysprof.Tpo" "$(DEPDIR)/sysprof-sysprof.Po"; \
 
801
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-sysprof.Tpo"; exit 1; \
 
802
@am__fastdepCC_TRUE@    fi
 
803
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysprof.c' object='sysprof-sysprof.o' libtool=no @AMDEPBACKSLASH@
 
804
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-sysprof.Po' tmpdepfile='$(DEPDIR)/sysprof-sysprof.TPo' @AMDEPBACKSLASH@
 
805
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
806
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-sysprof.o `test -f 'sysprof.c' || echo '$(srcdir)/'`sysprof.c
 
807
 
 
808
sysprof-sysprof.obj: sysprof.c
 
809
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof-sysprof.obj -MD -MP -MF "$(DEPDIR)/sysprof-sysprof.Tpo" \
 
810
@am__fastdepCC_TRUE@      -c -o sysprof-sysprof.obj `if test -f 'sysprof.c'; then $(CYGPATH_W) 'sysprof.c'; else $(CYGPATH_W) '$(srcdir)/sysprof.c'; fi`; \
 
811
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof-sysprof.Tpo" "$(DEPDIR)/sysprof-sysprof.Po"; \
 
812
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof-sysprof.Tpo"; exit 1; \
 
813
@am__fastdepCC_TRUE@    fi
 
814
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysprof.c' object='sysprof-sysprof.obj' libtool=no @AMDEPBACKSLASH@
 
815
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof-sysprof.Po' tmpdepfile='$(DEPDIR)/sysprof-sysprof.TPo' @AMDEPBACKSLASH@
 
816
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
817
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof-sysprof.obj `if test -f 'sysprof.c'; then $(CYGPATH_W) 'sysprof.c'; else $(CYGPATH_W) '$(srcdir)/sysprof.c'; fi`
 
818
 
 
819
sysprof_cli-binfile.o: binfile.c
 
820
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-binfile.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-binfile.Tpo" \
 
821
@am__fastdepCC_TRUE@      -c -o sysprof_cli-binfile.o `test -f 'binfile.c' || echo '$(srcdir)/'`binfile.c; \
 
822
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-binfile.Tpo" "$(DEPDIR)/sysprof_cli-binfile.Po"; \
 
823
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-binfile.Tpo"; exit 1; \
 
824
@am__fastdepCC_TRUE@    fi
 
825
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='binfile.c' object='sysprof_cli-binfile.o' libtool=no @AMDEPBACKSLASH@
 
826
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-binfile.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-binfile.TPo' @AMDEPBACKSLASH@
 
827
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
828
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-binfile.o `test -f 'binfile.c' || echo '$(srcdir)/'`binfile.c
 
829
 
 
830
sysprof_cli-binfile.obj: binfile.c
 
831
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-binfile.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-binfile.Tpo" \
 
832
@am__fastdepCC_TRUE@      -c -o sysprof_cli-binfile.obj `if test -f 'binfile.c'; then $(CYGPATH_W) 'binfile.c'; else $(CYGPATH_W) '$(srcdir)/binfile.c'; fi`; \
 
833
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-binfile.Tpo" "$(DEPDIR)/sysprof_cli-binfile.Po"; \
 
834
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-binfile.Tpo"; exit 1; \
 
835
@am__fastdepCC_TRUE@    fi
 
836
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='binfile.c' object='sysprof_cli-binfile.obj' libtool=no @AMDEPBACKSLASH@
 
837
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-binfile.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-binfile.TPo' @AMDEPBACKSLASH@
 
838
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
839
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-binfile.obj `if test -f 'binfile.c'; then $(CYGPATH_W) 'binfile.c'; else $(CYGPATH_W) '$(srcdir)/binfile.c'; fi`
 
840
 
 
841
sysprof_cli-collector.o: collector.c
 
842
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-collector.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-collector.Tpo" \
 
843
@am__fastdepCC_TRUE@      -c -o sysprof_cli-collector.o `test -f 'collector.c' || echo '$(srcdir)/'`collector.c; \
 
844
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-collector.Tpo" "$(DEPDIR)/sysprof_cli-collector.Po"; \
 
845
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-collector.Tpo"; exit 1; \
 
846
@am__fastdepCC_TRUE@    fi
 
847
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='collector.c' object='sysprof_cli-collector.o' libtool=no @AMDEPBACKSLASH@
 
848
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-collector.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-collector.TPo' @AMDEPBACKSLASH@
 
849
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
850
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-collector.o `test -f 'collector.c' || echo '$(srcdir)/'`collector.c
 
851
 
 
852
sysprof_cli-collector.obj: collector.c
 
853
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-collector.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-collector.Tpo" \
 
854
@am__fastdepCC_TRUE@      -c -o sysprof_cli-collector.obj `if test -f 'collector.c'; then $(CYGPATH_W) 'collector.c'; else $(CYGPATH_W) '$(srcdir)/collector.c'; fi`; \
 
855
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-collector.Tpo" "$(DEPDIR)/sysprof_cli-collector.Po"; \
 
856
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-collector.Tpo"; exit 1; \
 
857
@am__fastdepCC_TRUE@    fi
 
858
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='collector.c' object='sysprof_cli-collector.obj' libtool=no @AMDEPBACKSLASH@
 
859
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-collector.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-collector.TPo' @AMDEPBACKSLASH@
 
860
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
861
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-collector.obj `if test -f 'collector.c'; then $(CYGPATH_W) 'collector.c'; else $(CYGPATH_W) '$(srcdir)/collector.c'; fi`
 
862
 
 
863
sysprof_cli-demangle.o: demangle.c
 
864
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-demangle.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-demangle.Tpo" \
 
865
@am__fastdepCC_TRUE@      -c -o sysprof_cli-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c; \
 
866
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-demangle.Tpo" "$(DEPDIR)/sysprof_cli-demangle.Po"; \
 
867
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-demangle.Tpo"; exit 1; \
 
868
@am__fastdepCC_TRUE@    fi
 
869
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='sysprof_cli-demangle.o' libtool=no @AMDEPBACKSLASH@
 
870
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-demangle.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-demangle.TPo' @AMDEPBACKSLASH@
 
871
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
872
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c
 
873
 
 
874
sysprof_cli-demangle.obj: demangle.c
 
875
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-demangle.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-demangle.Tpo" \
 
876
@am__fastdepCC_TRUE@      -c -o sysprof_cli-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`; \
 
877
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-demangle.Tpo" "$(DEPDIR)/sysprof_cli-demangle.Po"; \
 
878
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-demangle.Tpo"; exit 1; \
 
879
@am__fastdepCC_TRUE@    fi
 
880
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='sysprof_cli-demangle.obj' libtool=no @AMDEPBACKSLASH@
 
881
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-demangle.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-demangle.TPo' @AMDEPBACKSLASH@
 
882
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
883
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`
 
884
 
 
885
sysprof_cli-elfparser.o: elfparser.c
 
886
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-elfparser.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-elfparser.Tpo" \
 
887
@am__fastdepCC_TRUE@      -c -o sysprof_cli-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c; \
 
888
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-elfparser.Tpo" "$(DEPDIR)/sysprof_cli-elfparser.Po"; \
 
889
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-elfparser.Tpo"; exit 1; \
 
890
@am__fastdepCC_TRUE@    fi
 
891
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='sysprof_cli-elfparser.o' libtool=no @AMDEPBACKSLASH@
 
892
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-elfparser.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-elfparser.TPo' @AMDEPBACKSLASH@
 
893
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
894
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c
 
895
 
 
896
sysprof_cli-elfparser.obj: elfparser.c
 
897
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-elfparser.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-elfparser.Tpo" \
 
898
@am__fastdepCC_TRUE@      -c -o sysprof_cli-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`; \
 
899
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-elfparser.Tpo" "$(DEPDIR)/sysprof_cli-elfparser.Po"; \
 
900
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-elfparser.Tpo"; exit 1; \
 
901
@am__fastdepCC_TRUE@    fi
 
902
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='sysprof_cli-elfparser.obj' libtool=no @AMDEPBACKSLASH@
 
903
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-elfparser.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-elfparser.TPo' @AMDEPBACKSLASH@
 
904
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
905
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`
 
906
 
 
907
sysprof_cli-profile.o: profile.c
 
908
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-profile.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-profile.Tpo" \
 
909
@am__fastdepCC_TRUE@      -c -o sysprof_cli-profile.o `test -f 'profile.c' || echo '$(srcdir)/'`profile.c; \
 
910
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-profile.Tpo" "$(DEPDIR)/sysprof_cli-profile.Po"; \
 
911
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-profile.Tpo"; exit 1; \
 
912
@am__fastdepCC_TRUE@    fi
 
913
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='profile.c' object='sysprof_cli-profile.o' libtool=no @AMDEPBACKSLASH@
 
914
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-profile.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-profile.TPo' @AMDEPBACKSLASH@
 
915
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
916
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-profile.o `test -f 'profile.c' || echo '$(srcdir)/'`profile.c
 
917
 
 
918
sysprof_cli-profile.obj: profile.c
 
919
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-profile.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-profile.Tpo" \
 
920
@am__fastdepCC_TRUE@      -c -o sysprof_cli-profile.obj `if test -f 'profile.c'; then $(CYGPATH_W) 'profile.c'; else $(CYGPATH_W) '$(srcdir)/profile.c'; fi`; \
 
921
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-profile.Tpo" "$(DEPDIR)/sysprof_cli-profile.Po"; \
 
922
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-profile.Tpo"; exit 1; \
 
923
@am__fastdepCC_TRUE@    fi
 
924
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='profile.c' object='sysprof_cli-profile.obj' libtool=no @AMDEPBACKSLASH@
 
925
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-profile.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-profile.TPo' @AMDEPBACKSLASH@
 
926
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
927
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-profile.obj `if test -f 'profile.c'; then $(CYGPATH_W) 'profile.c'; else $(CYGPATH_W) '$(srcdir)/profile.c'; fi`
 
928
 
 
929
sysprof_cli-sfile.o: sfile.c
 
930
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-sfile.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-sfile.Tpo" \
 
931
@am__fastdepCC_TRUE@      -c -o sysprof_cli-sfile.o `test -f 'sfile.c' || echo '$(srcdir)/'`sfile.c; \
 
932
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-sfile.Tpo" "$(DEPDIR)/sysprof_cli-sfile.Po"; \
 
933
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-sfile.Tpo"; exit 1; \
 
934
@am__fastdepCC_TRUE@    fi
 
935
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sfile.c' object='sysprof_cli-sfile.o' libtool=no @AMDEPBACKSLASH@
 
936
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-sfile.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-sfile.TPo' @AMDEPBACKSLASH@
 
937
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
938
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-sfile.o `test -f 'sfile.c' || echo '$(srcdir)/'`sfile.c
 
939
 
 
940
sysprof_cli-sfile.obj: sfile.c
 
941
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-sfile.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-sfile.Tpo" \
 
942
@am__fastdepCC_TRUE@      -c -o sysprof_cli-sfile.obj `if test -f 'sfile.c'; then $(CYGPATH_W) 'sfile.c'; else $(CYGPATH_W) '$(srcdir)/sfile.c'; fi`; \
 
943
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-sfile.Tpo" "$(DEPDIR)/sysprof_cli-sfile.Po"; \
 
944
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-sfile.Tpo"; exit 1; \
 
945
@am__fastdepCC_TRUE@    fi
 
946
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sfile.c' object='sysprof_cli-sfile.obj' libtool=no @AMDEPBACKSLASH@
 
947
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-sfile.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-sfile.TPo' @AMDEPBACKSLASH@
 
948
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
949
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-sfile.obj `if test -f 'sfile.c'; then $(CYGPATH_W) 'sfile.c'; else $(CYGPATH_W) '$(srcdir)/sfile.c'; fi`
 
950
 
 
951
sysprof_cli-sformat.o: sformat.c
 
952
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-sformat.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-sformat.Tpo" \
 
953
@am__fastdepCC_TRUE@      -c -o sysprof_cli-sformat.o `test -f 'sformat.c' || echo '$(srcdir)/'`sformat.c; \
 
954
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-sformat.Tpo" "$(DEPDIR)/sysprof_cli-sformat.Po"; \
 
955
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-sformat.Tpo"; exit 1; \
 
956
@am__fastdepCC_TRUE@    fi
 
957
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sformat.c' object='sysprof_cli-sformat.o' libtool=no @AMDEPBACKSLASH@
 
958
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-sformat.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-sformat.TPo' @AMDEPBACKSLASH@
 
959
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
960
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-sformat.o `test -f 'sformat.c' || echo '$(srcdir)/'`sformat.c
 
961
 
 
962
sysprof_cli-sformat.obj: sformat.c
 
963
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-sformat.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-sformat.Tpo" \
 
964
@am__fastdepCC_TRUE@      -c -o sysprof_cli-sformat.obj `if test -f 'sformat.c'; then $(CYGPATH_W) 'sformat.c'; else $(CYGPATH_W) '$(srcdir)/sformat.c'; fi`; \
 
965
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-sformat.Tpo" "$(DEPDIR)/sysprof_cli-sformat.Po"; \
 
966
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-sformat.Tpo"; exit 1; \
 
967
@am__fastdepCC_TRUE@    fi
 
968
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sformat.c' object='sysprof_cli-sformat.obj' libtool=no @AMDEPBACKSLASH@
 
969
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-sformat.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-sformat.TPo' @AMDEPBACKSLASH@
 
970
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
971
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-sformat.obj `if test -f 'sformat.c'; then $(CYGPATH_W) 'sformat.c'; else $(CYGPATH_W) '$(srcdir)/sformat.c'; fi`
 
972
 
 
973
sysprof_cli-stackstash.o: stackstash.c
 
974
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-stackstash.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-stackstash.Tpo" \
 
975
@am__fastdepCC_TRUE@      -c -o sysprof_cli-stackstash.o `test -f 'stackstash.c' || echo '$(srcdir)/'`stackstash.c; \
 
976
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-stackstash.Tpo" "$(DEPDIR)/sysprof_cli-stackstash.Po"; \
 
977
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-stackstash.Tpo"; exit 1; \
 
978
@am__fastdepCC_TRUE@    fi
 
979
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='stackstash.c' object='sysprof_cli-stackstash.o' libtool=no @AMDEPBACKSLASH@
 
980
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-stackstash.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-stackstash.TPo' @AMDEPBACKSLASH@
 
981
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
982
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-stackstash.o `test -f 'stackstash.c' || echo '$(srcdir)/'`stackstash.c
 
983
 
 
984
sysprof_cli-stackstash.obj: stackstash.c
 
985
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-stackstash.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-stackstash.Tpo" \
 
986
@am__fastdepCC_TRUE@      -c -o sysprof_cli-stackstash.obj `if test -f 'stackstash.c'; then $(CYGPATH_W) 'stackstash.c'; else $(CYGPATH_W) '$(srcdir)/stackstash.c'; fi`; \
 
987
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-stackstash.Tpo" "$(DEPDIR)/sysprof_cli-stackstash.Po"; \
 
988
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-stackstash.Tpo"; exit 1; \
 
989
@am__fastdepCC_TRUE@    fi
 
990
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='stackstash.c' object='sysprof_cli-stackstash.obj' libtool=no @AMDEPBACKSLASH@
 
991
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-stackstash.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-stackstash.TPo' @AMDEPBACKSLASH@
 
992
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
993
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-stackstash.obj `if test -f 'stackstash.c'; then $(CYGPATH_W) 'stackstash.c'; else $(CYGPATH_W) '$(srcdir)/stackstash.c'; fi`
 
994
 
 
995
sysprof_cli-tracker.o: tracker.c
 
996
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-tracker.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-tracker.Tpo" \
 
997
@am__fastdepCC_TRUE@      -c -o sysprof_cli-tracker.o `test -f 'tracker.c' || echo '$(srcdir)/'`tracker.c; \
 
998
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-tracker.Tpo" "$(DEPDIR)/sysprof_cli-tracker.Po"; \
 
999
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-tracker.Tpo"; exit 1; \
 
1000
@am__fastdepCC_TRUE@    fi
 
1001
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tracker.c' object='sysprof_cli-tracker.o' libtool=no @AMDEPBACKSLASH@
 
1002
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-tracker.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-tracker.TPo' @AMDEPBACKSLASH@
 
1003
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1004
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-tracker.o `test -f 'tracker.c' || echo '$(srcdir)/'`tracker.c
 
1005
 
 
1006
sysprof_cli-tracker.obj: tracker.c
 
1007
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-tracker.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-tracker.Tpo" \
 
1008
@am__fastdepCC_TRUE@      -c -o sysprof_cli-tracker.obj `if test -f 'tracker.c'; then $(CYGPATH_W) 'tracker.c'; else $(CYGPATH_W) '$(srcdir)/tracker.c'; fi`; \
 
1009
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-tracker.Tpo" "$(DEPDIR)/sysprof_cli-tracker.Po"; \
 
1010
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-tracker.Tpo"; exit 1; \
 
1011
@am__fastdepCC_TRUE@    fi
 
1012
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='tracker.c' object='sysprof_cli-tracker.obj' libtool=no @AMDEPBACKSLASH@
 
1013
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-tracker.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-tracker.TPo' @AMDEPBACKSLASH@
 
1014
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1015
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-tracker.obj `if test -f 'tracker.c'; then $(CYGPATH_W) 'tracker.c'; else $(CYGPATH_W) '$(srcdir)/tracker.c'; fi`
 
1016
 
 
1017
sysprof_cli-unwind.o: unwind.c
 
1018
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-unwind.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-unwind.Tpo" \
 
1019
@am__fastdepCC_TRUE@      -c -o sysprof_cli-unwind.o `test -f 'unwind.c' || echo '$(srcdir)/'`unwind.c; \
 
1020
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-unwind.Tpo" "$(DEPDIR)/sysprof_cli-unwind.Po"; \
 
1021
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-unwind.Tpo"; exit 1; \
 
1022
@am__fastdepCC_TRUE@    fi
 
1023
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='unwind.c' object='sysprof_cli-unwind.o' libtool=no @AMDEPBACKSLASH@
 
1024
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-unwind.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-unwind.TPo' @AMDEPBACKSLASH@
 
1025
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1026
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-unwind.o `test -f 'unwind.c' || echo '$(srcdir)/'`unwind.c
 
1027
 
 
1028
sysprof_cli-unwind.obj: unwind.c
 
1029
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-unwind.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-unwind.Tpo" \
 
1030
@am__fastdepCC_TRUE@      -c -o sysprof_cli-unwind.obj `if test -f 'unwind.c'; then $(CYGPATH_W) 'unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind.c'; fi`; \
 
1031
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-unwind.Tpo" "$(DEPDIR)/sysprof_cli-unwind.Po"; \
 
1032
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-unwind.Tpo"; exit 1; \
 
1033
@am__fastdepCC_TRUE@    fi
 
1034
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='unwind.c' object='sysprof_cli-unwind.obj' libtool=no @AMDEPBACKSLASH@
 
1035
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-unwind.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-unwind.TPo' @AMDEPBACKSLASH@
 
1036
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1037
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-unwind.obj `if test -f 'unwind.c'; then $(CYGPATH_W) 'unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind.c'; fi`
 
1038
 
 
1039
sysprof_cli-watch.o: watch.c
 
1040
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-watch.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-watch.Tpo" \
 
1041
@am__fastdepCC_TRUE@      -c -o sysprof_cli-watch.o `test -f 'watch.c' || echo '$(srcdir)/'`watch.c; \
 
1042
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-watch.Tpo" "$(DEPDIR)/sysprof_cli-watch.Po"; \
 
1043
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-watch.Tpo"; exit 1; \
 
1044
@am__fastdepCC_TRUE@    fi
 
1045
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='watch.c' object='sysprof_cli-watch.o' libtool=no @AMDEPBACKSLASH@
 
1046
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-watch.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-watch.TPo' @AMDEPBACKSLASH@
 
1047
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1048
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-watch.o `test -f 'watch.c' || echo '$(srcdir)/'`watch.c
 
1049
 
 
1050
sysprof_cli-watch.obj: watch.c
 
1051
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-watch.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-watch.Tpo" \
 
1052
@am__fastdepCC_TRUE@      -c -o sysprof_cli-watch.obj `if test -f 'watch.c'; then $(CYGPATH_W) 'watch.c'; else $(CYGPATH_W) '$(srcdir)/watch.c'; fi`; \
 
1053
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-watch.Tpo" "$(DEPDIR)/sysprof_cli-watch.Po"; \
 
1054
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-watch.Tpo"; exit 1; \
 
1055
@am__fastdepCC_TRUE@    fi
 
1056
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='watch.c' object='sysprof_cli-watch.obj' libtool=no @AMDEPBACKSLASH@
 
1057
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-watch.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-watch.TPo' @AMDEPBACKSLASH@
 
1058
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1059
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-watch.obj `if test -f 'watch.c'; then $(CYGPATH_W) 'watch.c'; else $(CYGPATH_W) '$(srcdir)/watch.c'; fi`
 
1060
 
 
1061
sysprof_cli-signal-handler.o: signal-handler.c
 
1062
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-signal-handler.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-signal-handler.Tpo" \
 
1063
@am__fastdepCC_TRUE@      -c -o sysprof_cli-signal-handler.o `test -f 'signal-handler.c' || echo '$(srcdir)/'`signal-handler.c; \
 
1064
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-signal-handler.Tpo" "$(DEPDIR)/sysprof_cli-signal-handler.Po"; \
 
1065
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-signal-handler.Tpo"; exit 1; \
 
1066
@am__fastdepCC_TRUE@    fi
 
1067
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='signal-handler.c' object='sysprof_cli-signal-handler.o' libtool=no @AMDEPBACKSLASH@
 
1068
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-signal-handler.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-signal-handler.TPo' @AMDEPBACKSLASH@
 
1069
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1070
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-signal-handler.o `test -f 'signal-handler.c' || echo '$(srcdir)/'`signal-handler.c
 
1071
 
 
1072
sysprof_cli-signal-handler.obj: signal-handler.c
 
1073
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-signal-handler.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-signal-handler.Tpo" \
 
1074
@am__fastdepCC_TRUE@      -c -o sysprof_cli-signal-handler.obj `if test -f 'signal-handler.c'; then $(CYGPATH_W) 'signal-handler.c'; else $(CYGPATH_W) '$(srcdir)/signal-handler.c'; fi`; \
 
1075
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-signal-handler.Tpo" "$(DEPDIR)/sysprof_cli-signal-handler.Po"; \
 
1076
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-signal-handler.Tpo"; exit 1; \
 
1077
@am__fastdepCC_TRUE@    fi
 
1078
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='signal-handler.c' object='sysprof_cli-signal-handler.obj' libtool=no @AMDEPBACKSLASH@
 
1079
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-signal-handler.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-signal-handler.TPo' @AMDEPBACKSLASH@
 
1080
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1081
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-signal-handler.obj `if test -f 'signal-handler.c'; then $(CYGPATH_W) 'signal-handler.c'; else $(CYGPATH_W) '$(srcdir)/signal-handler.c'; fi`
 
1082
 
 
1083
sysprof_cli-sysprof-cli.o: sysprof-cli.c
 
1084
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-sysprof-cli.o -MD -MP -MF "$(DEPDIR)/sysprof_cli-sysprof-cli.Tpo" \
 
1085
@am__fastdepCC_TRUE@      -c -o sysprof_cli-sysprof-cli.o `test -f 'sysprof-cli.c' || echo '$(srcdir)/'`sysprof-cli.c; \
 
1086
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-sysprof-cli.Tpo" "$(DEPDIR)/sysprof_cli-sysprof-cli.Po"; \
 
1087
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-sysprof-cli.Tpo"; exit 1; \
 
1088
@am__fastdepCC_TRUE@    fi
 
1089
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysprof-cli.c' object='sysprof_cli-sysprof-cli.o' libtool=no @AMDEPBACKSLASH@
 
1090
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-sysprof-cli.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-sysprof-cli.TPo' @AMDEPBACKSLASH@
 
1091
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1092
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-sysprof-cli.o `test -f 'sysprof-cli.c' || echo '$(srcdir)/'`sysprof-cli.c
 
1093
 
 
1094
sysprof_cli-sysprof-cli.obj: sysprof-cli.c
 
1095
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT sysprof_cli-sysprof-cli.obj -MD -MP -MF "$(DEPDIR)/sysprof_cli-sysprof-cli.Tpo" \
 
1096
@am__fastdepCC_TRUE@      -c -o sysprof_cli-sysprof-cli.obj `if test -f 'sysprof-cli.c'; then $(CYGPATH_W) 'sysprof-cli.c'; else $(CYGPATH_W) '$(srcdir)/sysprof-cli.c'; fi`; \
 
1097
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/sysprof_cli-sysprof-cli.Tpo" "$(DEPDIR)/sysprof_cli-sysprof-cli.Po"; \
 
1098
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/sysprof_cli-sysprof-cli.Tpo"; exit 1; \
 
1099
@am__fastdepCC_TRUE@    fi
 
1100
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='sysprof-cli.c' object='sysprof_cli-sysprof-cli.obj' libtool=no @AMDEPBACKSLASH@
 
1101
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/sysprof_cli-sysprof-cli.Po' tmpdepfile='$(DEPDIR)/sysprof_cli-sysprof-cli.TPo' @AMDEPBACKSLASH@
 
1102
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1103
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(sysprof_cli_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o sysprof_cli-sysprof-cli.obj `if test -f 'sysprof-cli.c'; then $(CYGPATH_W) 'sysprof-cli.c'; else $(CYGPATH_W) '$(srcdir)/sysprof-cli.c'; fi`
 
1104
 
 
1105
testelf-testelf.o: testelf.c
 
1106
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testelf-testelf.o -MD -MP -MF "$(DEPDIR)/testelf-testelf.Tpo" \
 
1107
@am__fastdepCC_TRUE@      -c -o testelf-testelf.o `test -f 'testelf.c' || echo '$(srcdir)/'`testelf.c; \
 
1108
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testelf-testelf.Tpo" "$(DEPDIR)/testelf-testelf.Po"; \
 
1109
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testelf-testelf.Tpo"; exit 1; \
 
1110
@am__fastdepCC_TRUE@    fi
 
1111
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='testelf.c' object='testelf-testelf.o' libtool=no @AMDEPBACKSLASH@
 
1112
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testelf-testelf.Po' tmpdepfile='$(DEPDIR)/testelf-testelf.TPo' @AMDEPBACKSLASH@
 
1113
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1114
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testelf-testelf.o `test -f 'testelf.c' || echo '$(srcdir)/'`testelf.c
 
1115
 
 
1116
testelf-testelf.obj: testelf.c
 
1117
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testelf-testelf.obj -MD -MP -MF "$(DEPDIR)/testelf-testelf.Tpo" \
 
1118
@am__fastdepCC_TRUE@      -c -o testelf-testelf.obj `if test -f 'testelf.c'; then $(CYGPATH_W) 'testelf.c'; else $(CYGPATH_W) '$(srcdir)/testelf.c'; fi`; \
 
1119
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testelf-testelf.Tpo" "$(DEPDIR)/testelf-testelf.Po"; \
 
1120
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testelf-testelf.Tpo"; exit 1; \
 
1121
@am__fastdepCC_TRUE@    fi
 
1122
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='testelf.c' object='testelf-testelf.obj' libtool=no @AMDEPBACKSLASH@
 
1123
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testelf-testelf.Po' tmpdepfile='$(DEPDIR)/testelf-testelf.TPo' @AMDEPBACKSLASH@
 
1124
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1125
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testelf-testelf.obj `if test -f 'testelf.c'; then $(CYGPATH_W) 'testelf.c'; else $(CYGPATH_W) '$(srcdir)/testelf.c'; fi`
 
1126
 
 
1127
testelf-demangle.o: demangle.c
 
1128
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testelf-demangle.o -MD -MP -MF "$(DEPDIR)/testelf-demangle.Tpo" \
 
1129
@am__fastdepCC_TRUE@      -c -o testelf-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c; \
 
1130
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testelf-demangle.Tpo" "$(DEPDIR)/testelf-demangle.Po"; \
 
1131
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testelf-demangle.Tpo"; exit 1; \
 
1132
@am__fastdepCC_TRUE@    fi
 
1133
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='testelf-demangle.o' libtool=no @AMDEPBACKSLASH@
 
1134
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testelf-demangle.Po' tmpdepfile='$(DEPDIR)/testelf-demangle.TPo' @AMDEPBACKSLASH@
 
1135
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1136
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testelf-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c
 
1137
 
 
1138
testelf-demangle.obj: demangle.c
 
1139
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testelf-demangle.obj -MD -MP -MF "$(DEPDIR)/testelf-demangle.Tpo" \
 
1140
@am__fastdepCC_TRUE@      -c -o testelf-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`; \
 
1141
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testelf-demangle.Tpo" "$(DEPDIR)/testelf-demangle.Po"; \
 
1142
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testelf-demangle.Tpo"; exit 1; \
 
1143
@am__fastdepCC_TRUE@    fi
 
1144
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='testelf-demangle.obj' libtool=no @AMDEPBACKSLASH@
 
1145
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testelf-demangle.Po' tmpdepfile='$(DEPDIR)/testelf-demangle.TPo' @AMDEPBACKSLASH@
 
1146
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1147
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testelf-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`
 
1148
 
 
1149
testelf-elfparser.o: elfparser.c
 
1150
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testelf-elfparser.o -MD -MP -MF "$(DEPDIR)/testelf-elfparser.Tpo" \
 
1151
@am__fastdepCC_TRUE@      -c -o testelf-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c; \
 
1152
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testelf-elfparser.Tpo" "$(DEPDIR)/testelf-elfparser.Po"; \
 
1153
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testelf-elfparser.Tpo"; exit 1; \
 
1154
@am__fastdepCC_TRUE@    fi
 
1155
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='testelf-elfparser.o' libtool=no @AMDEPBACKSLASH@
 
1156
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testelf-elfparser.Po' tmpdepfile='$(DEPDIR)/testelf-elfparser.TPo' @AMDEPBACKSLASH@
 
1157
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1158
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testelf-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c
 
1159
 
 
1160
testelf-elfparser.obj: elfparser.c
 
1161
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testelf-elfparser.obj -MD -MP -MF "$(DEPDIR)/testelf-elfparser.Tpo" \
 
1162
@am__fastdepCC_TRUE@      -c -o testelf-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`; \
 
1163
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testelf-elfparser.Tpo" "$(DEPDIR)/testelf-elfparser.Po"; \
 
1164
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testelf-elfparser.Tpo"; exit 1; \
 
1165
@am__fastdepCC_TRUE@    fi
 
1166
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='testelf-elfparser.obj' libtool=no @AMDEPBACKSLASH@
 
1167
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testelf-elfparser.Po' tmpdepfile='$(DEPDIR)/testelf-elfparser.TPo' @AMDEPBACKSLASH@
 
1168
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1169
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testelf_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testelf-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`
 
1170
 
 
1171
testunwind-testunwind.o: testunwind.c
 
1172
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-testunwind.o -MD -MP -MF "$(DEPDIR)/testunwind-testunwind.Tpo" \
 
1173
@am__fastdepCC_TRUE@      -c -o testunwind-testunwind.o `test -f 'testunwind.c' || echo '$(srcdir)/'`testunwind.c; \
 
1174
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-testunwind.Tpo" "$(DEPDIR)/testunwind-testunwind.Po"; \
 
1175
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-testunwind.Tpo"; exit 1; \
 
1176
@am__fastdepCC_TRUE@    fi
 
1177
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='testunwind.c' object='testunwind-testunwind.o' libtool=no @AMDEPBACKSLASH@
 
1178
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-testunwind.Po' tmpdepfile='$(DEPDIR)/testunwind-testunwind.TPo' @AMDEPBACKSLASH@
 
1179
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1180
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-testunwind.o `test -f 'testunwind.c' || echo '$(srcdir)/'`testunwind.c
 
1181
 
 
1182
testunwind-testunwind.obj: testunwind.c
 
1183
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-testunwind.obj -MD -MP -MF "$(DEPDIR)/testunwind-testunwind.Tpo" \
 
1184
@am__fastdepCC_TRUE@      -c -o testunwind-testunwind.obj `if test -f 'testunwind.c'; then $(CYGPATH_W) 'testunwind.c'; else $(CYGPATH_W) '$(srcdir)/testunwind.c'; fi`; \
 
1185
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-testunwind.Tpo" "$(DEPDIR)/testunwind-testunwind.Po"; \
 
1186
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-testunwind.Tpo"; exit 1; \
 
1187
@am__fastdepCC_TRUE@    fi
 
1188
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='testunwind.c' object='testunwind-testunwind.obj' libtool=no @AMDEPBACKSLASH@
 
1189
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-testunwind.Po' tmpdepfile='$(DEPDIR)/testunwind-testunwind.TPo' @AMDEPBACKSLASH@
 
1190
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1191
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-testunwind.obj `if test -f 'testunwind.c'; then $(CYGPATH_W) 'testunwind.c'; else $(CYGPATH_W) '$(srcdir)/testunwind.c'; fi`
 
1192
 
 
1193
testunwind-demangle.o: demangle.c
 
1194
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-demangle.o -MD -MP -MF "$(DEPDIR)/testunwind-demangle.Tpo" \
 
1195
@am__fastdepCC_TRUE@      -c -o testunwind-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c; \
 
1196
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-demangle.Tpo" "$(DEPDIR)/testunwind-demangle.Po"; \
 
1197
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-demangle.Tpo"; exit 1; \
 
1198
@am__fastdepCC_TRUE@    fi
 
1199
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='testunwind-demangle.o' libtool=no @AMDEPBACKSLASH@
 
1200
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-demangle.Po' tmpdepfile='$(DEPDIR)/testunwind-demangle.TPo' @AMDEPBACKSLASH@
 
1201
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1202
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-demangle.o `test -f 'demangle.c' || echo '$(srcdir)/'`demangle.c
 
1203
 
 
1204
testunwind-demangle.obj: demangle.c
 
1205
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-demangle.obj -MD -MP -MF "$(DEPDIR)/testunwind-demangle.Tpo" \
 
1206
@am__fastdepCC_TRUE@      -c -o testunwind-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`; \
 
1207
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-demangle.Tpo" "$(DEPDIR)/testunwind-demangle.Po"; \
 
1208
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-demangle.Tpo"; exit 1; \
 
1209
@am__fastdepCC_TRUE@    fi
 
1210
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='demangle.c' object='testunwind-demangle.obj' libtool=no @AMDEPBACKSLASH@
 
1211
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-demangle.Po' tmpdepfile='$(DEPDIR)/testunwind-demangle.TPo' @AMDEPBACKSLASH@
 
1212
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1213
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-demangle.obj `if test -f 'demangle.c'; then $(CYGPATH_W) 'demangle.c'; else $(CYGPATH_W) '$(srcdir)/demangle.c'; fi`
 
1214
 
 
1215
testunwind-elfparser.o: elfparser.c
 
1216
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-elfparser.o -MD -MP -MF "$(DEPDIR)/testunwind-elfparser.Tpo" \
 
1217
@am__fastdepCC_TRUE@      -c -o testunwind-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c; \
 
1218
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-elfparser.Tpo" "$(DEPDIR)/testunwind-elfparser.Po"; \
 
1219
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-elfparser.Tpo"; exit 1; \
 
1220
@am__fastdepCC_TRUE@    fi
 
1221
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='testunwind-elfparser.o' libtool=no @AMDEPBACKSLASH@
 
1222
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-elfparser.Po' tmpdepfile='$(DEPDIR)/testunwind-elfparser.TPo' @AMDEPBACKSLASH@
 
1223
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1224
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-elfparser.o `test -f 'elfparser.c' || echo '$(srcdir)/'`elfparser.c
 
1225
 
 
1226
testunwind-elfparser.obj: elfparser.c
 
1227
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-elfparser.obj -MD -MP -MF "$(DEPDIR)/testunwind-elfparser.Tpo" \
 
1228
@am__fastdepCC_TRUE@      -c -o testunwind-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`; \
 
1229
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-elfparser.Tpo" "$(DEPDIR)/testunwind-elfparser.Po"; \
 
1230
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-elfparser.Tpo"; exit 1; \
 
1231
@am__fastdepCC_TRUE@    fi
 
1232
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='elfparser.c' object='testunwind-elfparser.obj' libtool=no @AMDEPBACKSLASH@
 
1233
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-elfparser.Po' tmpdepfile='$(DEPDIR)/testunwind-elfparser.TPo' @AMDEPBACKSLASH@
 
1234
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1235
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-elfparser.obj `if test -f 'elfparser.c'; then $(CYGPATH_W) 'elfparser.c'; else $(CYGPATH_W) '$(srcdir)/elfparser.c'; fi`
 
1236
 
 
1237
testunwind-unwind.o: unwind.c
 
1238
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-unwind.o -MD -MP -MF "$(DEPDIR)/testunwind-unwind.Tpo" \
 
1239
@am__fastdepCC_TRUE@      -c -o testunwind-unwind.o `test -f 'unwind.c' || echo '$(srcdir)/'`unwind.c; \
 
1240
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-unwind.Tpo" "$(DEPDIR)/testunwind-unwind.Po"; \
 
1241
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-unwind.Tpo"; exit 1; \
 
1242
@am__fastdepCC_TRUE@    fi
 
1243
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='unwind.c' object='testunwind-unwind.o' libtool=no @AMDEPBACKSLASH@
 
1244
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-unwind.Po' tmpdepfile='$(DEPDIR)/testunwind-unwind.TPo' @AMDEPBACKSLASH@
 
1245
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1246
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-unwind.o `test -f 'unwind.c' || echo '$(srcdir)/'`unwind.c
 
1247
 
 
1248
testunwind-unwind.obj: unwind.c
 
1249
@am__fastdepCC_TRUE@    if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testunwind-unwind.obj -MD -MP -MF "$(DEPDIR)/testunwind-unwind.Tpo" \
 
1250
@am__fastdepCC_TRUE@      -c -o testunwind-unwind.obj `if test -f 'unwind.c'; then $(CYGPATH_W) 'unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind.c'; fi`; \
 
1251
@am__fastdepCC_TRUE@    then mv -f "$(DEPDIR)/testunwind-unwind.Tpo" "$(DEPDIR)/testunwind-unwind.Po"; \
 
1252
@am__fastdepCC_TRUE@    else rm -f "$(DEPDIR)/testunwind-unwind.Tpo"; exit 1; \
 
1253
@am__fastdepCC_TRUE@    fi
 
1254
@AMDEP_TRUE@@am__fastdepCC_FALSE@       source='unwind.c' object='testunwind-unwind.obj' libtool=no @AMDEPBACKSLASH@
 
1255
@AMDEP_TRUE@@am__fastdepCC_FALSE@       depfile='$(DEPDIR)/testunwind-unwind.Po' tmpdepfile='$(DEPDIR)/testunwind-unwind.TPo' @AMDEPBACKSLASH@
 
1256
@AMDEP_TRUE@@am__fastdepCC_FALSE@       $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
 
1257
@am__fastdepCC_FALSE@   $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testunwind_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testunwind-unwind.obj `if test -f 'unwind.c'; then $(CYGPATH_W) 'unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind.c'; fi`
303
1258
uninstall-info-am:
304
 
pixmapsDATA_INSTALL = $(INSTALL_DATA)
305
 
install-pixmapsDATA: $(pixmaps_DATA)
 
1259
dist_pixmapsDATA_INSTALL = $(INSTALL_DATA)
 
1260
install-dist_pixmapsDATA: $(dist_pixmaps_DATA)
306
1261
        @$(NORMAL_INSTALL)
307
1262
        $(mkinstalldirs) $(DESTDIR)$(pixmapsdir)
308
 
        @list='$(pixmaps_DATA)'; for p in $$list; do \
 
1263
        @list='$(dist_pixmaps_DATA)'; for p in $$list; do \
309
1264
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
310
1265
          f="`echo $$p | sed -e 's|^.*/||'`"; \
311
 
          echo " $(pixmapsDATA_INSTALL) $$d$$p $(DESTDIR)$(pixmapsdir)/$$f"; \
312
 
          $(pixmapsDATA_INSTALL) $$d$$p $(DESTDIR)$(pixmapsdir)/$$f; \
 
1266
          echo " $(dist_pixmapsDATA_INSTALL) $$d$$p $(DESTDIR)$(pixmapsdir)/$$f"; \
 
1267
          $(dist_pixmapsDATA_INSTALL) $$d$$p $(DESTDIR)$(pixmapsdir)/$$f; \
313
1268
        done
314
1269
 
315
 
uninstall-pixmapsDATA:
 
1270
uninstall-dist_pixmapsDATA:
316
1271
        @$(NORMAL_UNINSTALL)
317
 
        @list='$(pixmaps_DATA)'; for p in $$list; do \
 
1272
        @list='$(dist_pixmaps_DATA)'; for p in $$list; do \
318
1273
          f="`echo $$p | sed -e 's|^.*/||'`"; \
319
1274
          echo " rm -f $(DESTDIR)$(pixmapsdir)/$$f"; \
320
1275
          rm -f $(DESTDIR)$(pixmapsdir)/$$f; \
321
1276
        done
322
 
pkgdataDATA_INSTALL = $(INSTALL_DATA)
323
 
install-pkgdataDATA: $(pkgdata_DATA)
 
1277
dist_pkgdataDATA_INSTALL = $(INSTALL_DATA)
 
1278
install-dist_pkgdataDATA: $(dist_pkgdata_DATA)
324
1279
        @$(NORMAL_INSTALL)
325
1280
        $(mkinstalldirs) $(DESTDIR)$(pkgdatadir)
326
 
        @list='$(pkgdata_DATA)'; for p in $$list; do \
 
1281
        @list='$(dist_pkgdata_DATA)'; for p in $$list; do \
327
1282
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
328
1283
          f="`echo $$p | sed -e 's|^.*/||'`"; \
329
 
          echo " $(pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f"; \
330
 
          $(pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f; \
 
1284
          echo " $(dist_pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f"; \
 
1285
          $(dist_pkgdataDATA_INSTALL) $$d$$p $(DESTDIR)$(pkgdatadir)/$$f; \
331
1286
        done
332
1287
 
333
 
uninstall-pkgdataDATA:
 
1288
uninstall-dist_pkgdataDATA:
334
1289
        @$(NORMAL_UNINSTALL)
335
 
        @list='$(pkgdata_DATA)'; for p in $$list; do \
 
1290
        @list='$(dist_pkgdata_DATA)'; for p in $$list; do \
336
1291
          f="`echo $$p | sed -e 's|^.*/||'`"; \
337
1292
          echo " rm -f $(DESTDIR)$(pkgdatadir)/$$f"; \
338
1293
          rm -f $(DESTDIR)$(pkgdatadir)/$$f; \
339
1294
        done
340
1295
 
341
 
# This directory's subdirectories are mostly independent; you can cd
342
 
# into them and run `make' without going through this Makefile.
343
 
# To change the values of `make' variables: instead of editing Makefiles,
344
 
# (1) if the variable is set in `config.status', edit `config.status'
345
 
#     (which will cause the Makefiles to be regenerated when you run `make');
346
 
# (2) otherwise, pass the desired values on the `make' command line.
347
 
$(RECURSIVE_TARGETS):
348
 
        @set fnord $$MAKEFLAGS; amf=$$2; \
349
 
        dot_seen=no; \
350
 
        target=`echo $@ | sed s/-recursive//`; \
351
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
352
 
          echo "Making $$target in $$subdir"; \
353
 
          if test "$$subdir" = "."; then \
354
 
            dot_seen=yes; \
355
 
            local_target="$$target-am"; \
356
 
          else \
357
 
            local_target="$$target"; \
358
 
          fi; \
359
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
360
 
           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
361
 
        done; \
362
 
        if test "$$dot_seen" = "no"; then \
363
 
          $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
364
 
        fi; test -z "$$fail"
365
 
 
366
 
mostlyclean-recursive clean-recursive distclean-recursive \
367
 
maintainer-clean-recursive:
368
 
        @set fnord $$MAKEFLAGS; amf=$$2; \
369
 
        dot_seen=no; \
370
 
        case "$@" in \
371
 
          distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
372
 
          *) list='$(SUBDIRS)' ;; \
373
 
        esac; \
374
 
        rev=''; for subdir in $$list; do \
375
 
          if test "$$subdir" = "."; then :; else \
376
 
            rev="$$subdir $$rev"; \
377
 
          fi; \
378
 
        done; \
379
 
        rev="$$rev ."; \
380
 
        target=`echo $@ | sed s/-recursive//`; \
381
 
        for subdir in $$rev; do \
382
 
          echo "Making $$target in $$subdir"; \
383
 
          if test "$$subdir" = "."; then \
384
 
            local_target="$$target-am"; \
385
 
          else \
386
 
            local_target="$$target"; \
387
 
          fi; \
388
 
          (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
389
 
           || case "$$amf" in *=*) exit 1;; *k*) fail=yes;; *) exit 1;; esac; \
390
 
        done && test -z "$$fail"
391
 
tags-recursive:
392
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
393
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
394
 
        done
395
 
ctags-recursive:
396
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
397
 
          test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
398
 
        done
399
 
 
400
1296
ETAGS = etags
401
1297
ETAGSFLAGS =
402
1298
 
414
1310
               END { for (i in files) print i; }'`; \
415
1311
        mkid -fID $$unique
416
1312
 
417
 
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
1313
TAGS:  $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
418
1314
                $(TAGS_FILES) $(LISP)
419
1315
        tags=; \
420
1316
        here=`pwd`; \
421
 
        if (etags --etags-include --version) >/dev/null 2>&1; then \
422
 
          include_option=--etags-include; \
423
 
        else \
424
 
          include_option=--include; \
425
 
        fi; \
426
 
        list='$(SUBDIRS)'; for subdir in $$list; do \
427
 
          if test "$$subdir" = .; then :; else \
428
 
            test -f $$subdir/TAGS && \
429
 
              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
430
 
          fi; \
431
 
        done; \
432
1317
        list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
433
1318
        unique=`for i in $$list; do \
434
1319
            if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
440
1325
             $$tags $$unique
441
1326
 
442
1327
ctags: CTAGS
443
 
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
 
1328
CTAGS:  $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
444
1329
                $(TAGS_FILES) $(LISP)
445
1330
        tags=; \
446
1331
        here=`pwd`; \
478
1363
distdir: $(DISTFILES)
479
1364
        $(am__remove_distdir)
480
1365
        mkdir $(distdir)
481
 
        $(mkinstalldirs) $(distdir)/module
482
1366
        @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
483
1367
        topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
484
1368
        list='$(DISTFILES)'; for file in $$list; do \
505
1389
            || exit 1; \
506
1390
          fi; \
507
1391
        done
508
 
        list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
509
 
          if test "$$subdir" = .; then :; else \
510
 
            test -d $(distdir)/$$subdir \
511
 
            || mkdir $(distdir)/$$subdir \
512
 
            || exit 1; \
513
 
            (cd $$subdir && \
514
 
              $(MAKE) $(AM_MAKEFLAGS) \
515
 
                top_distdir="$(top_distdir)" \
516
 
                distdir=../$(distdir)/$$subdir \
517
 
                distdir) \
518
 
              || exit 1; \
519
 
          fi; \
520
 
        done
521
1392
        -find $(distdir) -type d ! -perm -777 -exec chmod a+rwx {} \; -o \
522
1393
          ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
523
1394
          ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
588
1459
               $(distcleancheck_listfiles) ; \
589
1460
               exit 1; } >&2
590
1461
check-am: all-am
591
 
check: check-recursive
 
1462
check: check-am
592
1463
all-am: Makefile $(PROGRAMS) $(DATA) config.h
593
 
installdirs: installdirs-recursive
594
 
installdirs-am:
 
1464
 
 
1465
installdirs:
595
1466
        $(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(pixmapsdir) $(DESTDIR)$(pkgdatadir)
596
 
 
597
 
install: install-recursive
598
 
install-exec: install-exec-recursive
599
 
install-data: install-data-recursive
600
 
uninstall: uninstall-recursive
 
1467
install: install-am
 
1468
install-exec: install-exec-am
 
1469
install-data: install-data-am
 
1470
uninstall: uninstall-am
601
1471
 
602
1472
install-am: all-am
603
1473
        @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
604
1474
 
605
 
installcheck: installcheck-recursive
 
1475
installcheck: installcheck-am
606
1476
install-strip:
607
1477
        $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
608
1478
          install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
618
1488
maintainer-clean-generic:
619
1489
        @echo "This command is intended for maintainers to use"
620
1490
        @echo "it deletes files that may require special tools to rebuild."
621
 
clean: clean-recursive
622
 
 
623
 
clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
624
 
 
625
 
distclean: distclean-recursive
 
1491
clean: clean-am
 
1492
 
 
1493
clean-am: clean-binPROGRAMS clean-generic clean-noinstPROGRAMS \
 
1494
        mostlyclean-am
 
1495
 
 
1496
distclean: distclean-am
626
1497
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
627
1498
        -rm -rf ./$(DEPDIR)
628
1499
        -rm -f Makefile
629
1500
distclean-am: clean-am distclean-compile distclean-generic distclean-hdr \
630
1501
        distclean-tags
631
1502
 
632
 
dvi: dvi-recursive
 
1503
dvi: dvi-am
633
1504
 
634
1505
dvi-am:
635
1506
 
636
 
info: info-recursive
 
1507
info: info-am
637
1508
 
638
1509
info-am:
639
1510
 
640
 
install-data-am: install-pixmapsDATA install-pkgdataDATA
 
1511
install-data-am: install-dist_pixmapsDATA install-dist_pkgdataDATA
641
1512
 
642
1513
install-exec-am: install-binPROGRAMS
643
1514
 
644
 
install-info: install-info-recursive
 
1515
install-info: install-info-am
645
1516
 
646
1517
install-man:
647
1518
 
648
1519
installcheck-am:
649
1520
 
650
 
maintainer-clean: maintainer-clean-recursive
 
1521
maintainer-clean: maintainer-clean-am
651
1522
        -rm -f $(am__CONFIG_DISTCLEAN_FILES)
652
1523
        -rm -rf $(top_srcdir)/autom4te.cache
653
1524
        -rm -rf ./$(DEPDIR)
654
1525
        -rm -f Makefile
655
1526
maintainer-clean-am: distclean-am maintainer-clean-generic
656
1527
 
657
 
mostlyclean: mostlyclean-recursive
 
1528
mostlyclean: mostlyclean-am
658
1529
 
659
1530
mostlyclean-am: mostlyclean-compile mostlyclean-generic
660
1531
 
661
 
pdf: pdf-recursive
 
1532
pdf: pdf-am
662
1533
 
663
1534
pdf-am:
664
1535
 
665
 
ps: ps-recursive
 
1536
ps: ps-am
666
1537
 
667
1538
ps-am:
668
1539
 
669
 
uninstall-am: uninstall-binPROGRAMS uninstall-info-am \
670
 
        uninstall-pixmapsDATA uninstall-pkgdataDATA
671
 
 
672
 
uninstall-info: uninstall-info-recursive
673
 
 
674
 
.PHONY: $(RECURSIVE_TARGETS) CTAGS GTAGS all all-am check check-am clean \
675
 
        clean-binPROGRAMS clean-generic clean-recursive ctags \
676
 
        ctags-recursive dist dist-all dist-gzip distcheck distclean \
677
 
        distclean-compile distclean-generic distclean-hdr \
678
 
        distclean-recursive distclean-tags distcleancheck distdir \
679
 
        distuninstallcheck dvi dvi-am dvi-recursive info info-am \
680
 
        info-recursive install install-am install-binPROGRAMS \
681
 
        install-data install-data-am install-data-recursive \
682
 
        install-exec install-exec-am install-exec-recursive \
683
 
        install-info install-info-am install-info-recursive install-man \
684
 
        install-pixmapsDATA install-pkgdataDATA install-recursive \
685
 
        install-strip installcheck installcheck-am installdirs \
686
 
        installdirs-am installdirs-recursive maintainer-clean \
687
 
        maintainer-clean-generic maintainer-clean-recursive mostlyclean \
688
 
        mostlyclean-compile mostlyclean-generic mostlyclean-recursive \
689
 
        pdf pdf-am pdf-recursive ps ps-am ps-recursive tags \
690
 
        tags-recursive uninstall uninstall-am uninstall-binPROGRAMS \
691
 
        uninstall-info-am uninstall-info-recursive \
692
 
        uninstall-pixmapsDATA uninstall-pkgdataDATA uninstall-recursive
693
 
 
694
 
 
695
 
insert-module:
696
 
        /sbin/modprobe -r sysprof-module
697
 
        /sbin/modprobe sysprof-module
 
1540
uninstall-am: uninstall-binPROGRAMS uninstall-dist_pixmapsDATA \
 
1541
        uninstall-dist_pkgdataDATA \
 
1542
        uninstall-info-am
 
1543
 
 
1544
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
 
1545
        clean-generic clean-noinstPROGRAMS ctags dist dist-all \
 
1546
        dist-gzip distcheck distclean distclean-compile \
 
1547
        distclean-generic distclean-hdr distclean-tags distcleancheck \
 
1548
        distdir distuninstallcheck dvi dvi-am info info-am install \
 
1549
        install-am install-binPROGRAMS install-data install-data-am \
 
1550
        install-dist_pixmapsDATA install-dist_pkgdataDATA \
 
1551
        install-exec install-exec-am install-info \
 
1552
        install-info-am install-man install-strip installcheck \
 
1553
        installcheck-am installdirs maintainer-clean \
 
1554
        maintainer-clean-generic mostlyclean mostlyclean-compile \
 
1555
        mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
 
1556
        uninstall-am uninstall-binPROGRAMS uninstall-dist_pixmapsDATA \
 
1557
        uninstall-dist_pkgdataDATA \
 
1558
        uninstall-info-am
 
1559
 
698
1560
# Tell versions [3.59,3.63) of GNU make to not export all variables.
699
1561
# Otherwise a system limit (for SysV at least) may be exceeded.
700
1562
.NOEXPORT: