From 9079745dfc59b3161dea0caf7bc967d0e0129487 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 2 Mar 2017 18:17:32 -0600 Subject: [PATCH 01/85] Discard some unused backtrace functions. --- src/tool/hpcrun/unwind/common/backtrace.c | 81 ----------------------- src/tool/hpcrun/unwind/common/backtrace.h | 12 ---- 2 files changed, 93 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index f7b8ac63cb..37ca314151 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -161,31 +161,6 @@ hpcrun_bt_init(backtrace_t* bt, size_t size) hpcrun_bt_reset(bt); } -frame_t* -hpcrun_bt_push(backtrace_t* bt, frame_t* frame) -{ - TMSG(BT, "pushing frame onto bt"); - if (bt->cur > bt->end) { - - TMSG(BT, "-- push requires allocate new block and copy"); - size_t size = 2 * bt->size; - // reallocate & copy - frame_t* new = hpcrun_malloc(sizeof(frame_t) * size); - memcpy(new, (void*) bt->beg, bt->len * sizeof(frame_t)); - - bt->beg = new; - bt->size = size; - bt->cur = new + bt->len; - bt->end = new + (size - 1); - } - *(bt->cur) = *frame; - frame_t* rv = bt->cur; - bt->cur++; - bt->len++; - TMSG(BT, "after push, len(bt) = %d", bt->len); - return rv; -} - frame_t* hpcrun_bt_beg(backtrace_t* bt) { @@ -198,66 +173,10 @@ hpcrun_bt_last(backtrace_t* bt) return (bt->beg + bt->len -1); } -size_t -hpcrun_bt_len(backtrace_t* bt) -{ - return bt->len; -} - -bool -hpcrun_bt_empty(backtrace_t* bt) -{ - return (bt->len == 0); -} - -frame_t* -hpcrun_bt_cur(backtrace_t* bt) -{ - return bt->cur; -} - // // Some sample backtrace mutator functions // -void -hpcrun_bt_modify_leaf_addr(backtrace_t* bt, ip_normalized_t ip_norm) -{ - bt->beg->ip_norm = ip_norm; -} - -void -hpcrun_bt_add_leaf_child(backtrace_t* bt, ip_normalized_t ip_norm) -{ - if (bt->cur > bt->end) { - TMSG(BT, "adding a leaf child of ip ==> lm_id = %d and lm_ip = %p", - ip_norm.lm_id, ip_norm.lm_ip); - } - if (bt->cur > bt->end) { - - TMSG(BT, "-- bt is full, reallocate and copy current data"); - size_t size = 2 * bt->size; - // reallocate & copy - frame_t* new = hpcrun_malloc(sizeof(frame_t) * size); - memmove(new, (void*) bt->beg, bt->len * sizeof(frame_t)); - - bt->beg = new; - bt->size = size; - bt->cur = new + bt->len; - bt->end = new + (size - 1); - } - TMSG(BT, "BEFORE copy, innermost ip ==> lm_id = %d and lm_ip = %p", - bt->beg->ip_norm.lm_id, bt->beg->ip_norm.lm_ip); - memcpy((void*)(bt->beg + 1), (void*) bt->beg, bt->len * sizeof(frame_t)); - TMSG(BT, "AFTER copy, innermost ip ==> lm_id = %d and lm_ip = %p", - (bt->beg + 1)->ip_norm.lm_id, (bt->beg + 1)->ip_norm.lm_ip); - bt->cur++; - bt->len++; - bt->beg->ip_norm = ip_norm; - TMSG(BT, "Leaf child added, new ip ==> lm_id = %d and lm_ip = %p", - bt->beg->ip_norm.lm_id, bt->beg->ip_norm.lm_ip); -} - void hpcrun_bt_skip_inner(backtrace_t* bt, void* skip) { diff --git a/src/tool/hpcrun/unwind/common/backtrace.h b/src/tool/hpcrun/unwind/common/backtrace.h index 37098f273e..15baad84c5 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.h +++ b/src/tool/hpcrun/unwind/common/backtrace.h @@ -113,24 +113,12 @@ frame_t* hpcrun_bt_reset(backtrace_t* bt); void hpcrun_bt_init(backtrace_t* bt, size_t size); -frame_t* hpcrun_bt_push(backtrace_t* bt, frame_t* frame); - frame_t* hpcrun_bt_beg(backtrace_t* bt); frame_t* hpcrun_bt_last(backtrace_t* bt); -frame_t* hpcrun_bt_cur(backtrace_t* bt); - -size_t hpcrun_bt_len(backtrace_t* bt); - -bool hpcrun_bt_empty(backtrace_t* bt); - bool hpcrun_backtrace_std(backtrace_t* bt, ucontext_t* context); -void hpcrun_bt_modify_leaf_addr(backtrace_t* bt, ip_normalized_t ip_norm); - -void hpcrun_bt_add_leaf_child(backtrace_t* bt, ip_normalized_t ip_norm); - void hpcrun_dump_bt(backtrace_t* bt); bool hpcrun_generate_backtrace(backtrace_info_t* bt, From 46ee6b8dea125ce8c51353ce91137d132963a88b Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 09:41:51 -0600 Subject: [PATCH 02/85] Delete hpcrun_dbg_generate_backtrace, as it is unused. --- src/tool/hpcrun/unwind/common/backtrace.c | 151 ---------------------- 1 file changed, 151 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index 37ca314151..a71c9d5c50 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -449,157 +449,6 @@ hpcrun_generate_backtrace(backtrace_info_t* bt, return true; } -// debug variant of above routine -// -// -// Generate a backtrace, store it in the thread local data -// Return true/false success code -// Also, return (via reference params) backtrace beginning, backtrace end, -// and whether or not a trampoline was found. -// - -bool -hpcrun_dbg_generate_backtrace(backtrace_info_t* bt, - ucontext_t* context, int skipInner) -{ - bt->has_tramp = false; - bt->trolled = false; - bt->n_trolls = 0; - bt->bottom_frame_elided = false; - bt->partial_unwind = true; - - bool tramp_found = false; - - step_state ret = STEP_ERROR; // default return value from stepper - - hpcrun_unw_cursor_t cursor; - hpcrun_dbg_unw_init_cursor(&cursor, context); - - //-------------------------------------------------------------------- - // note: these variables are not local variables so that if a SIGSEGV - // occurs and control returns up several procedure frames, the values - // are accessible to a dumping routine that will tell us where we ran - // into a problem. - //-------------------------------------------------------------------- - - thread_data_t* td = hpcrun_get_thread_data(); - td->btbuf_cur = td->btbuf_beg; // innermost - td->btbuf_sav = td->btbuf_end; - - int unw_len = 0; - while (true) { - void* ip; - hpcrun_unw_get_ip_unnorm_reg(&cursor, &ip); - - if (hpcrun_dbg_trampoline_interior((void*) ip)) { - // bail; we shouldn't be unwinding here. hpcrun is in the midst of - // counting a return from a sampled frame using a trampoline. - // drop the sample. - // FIXME: sharpen the information to indicate why the sample is - // being dropped. - hpcrun_unw_throw(); - } - - if (hpcrun_dbg_trampoline_at_entry((void*) ip)) { - if (unw_len == 0){ - // we are about to enter the trampoline code to synchronously - // record a return. for now, simply do nothing ... - // FIXME: with a bit more effort, we could charge - // the sample to the return address in the caller. - hpcrun_unw_throw(); - } - else { - // we have encountered a trampoline in the middle of an unwind. - bt->has_tramp = (tramp_found = true); - - // no need to unwind further. the outer frames are already known. - break; - } - } - - hpcrun_ensure_btbuf_avail(); - - td->btbuf_cur->cursor = cursor; - //Broken if HPC_UNW_LITE defined - hpcrun_unw_get_ip_norm_reg(&td->btbuf_cur->cursor, - &td->btbuf_cur->ip_norm); - td->btbuf_cur->ra_loc = NULL; - frame_t* prev = td->btbuf_cur; - td->btbuf_cur++; - unw_len++; - - ret = hpcrun_dbg_unw_step(&cursor); - if (ret == STEP_TROLL) { - bt->trolled = true; - bt->n_trolls++; - } - if (ret <= 0) { - break; - } - prev->ra_loc = hpcrun_unw_get_ra_loc(&cursor); - } - - frame_t* bt_beg = td->btbuf_beg; // innermost, inclusive - frame_t* bt_last = td->btbuf_cur - 1; // outermost, inclusive - - bt->begin = bt_beg; // returned backtrace begin - // is buffer beginning - bt->last = bt_last; // returned backtrace end is - // last recorded element - - frame_t* bt_end = bt_last + 1; // outermost, exclusive - size_t new_frame_count = bt_end - bt_beg; - - // soft error mandates returning false - if (! (ret == STEP_STOP)) { - return false; - } - - if (tramp_found) { - TMSG(BACKTRACE, "tramp stop: conjoining backtraces"); - // - // join current backtrace fragment to previous trampoline-marked prefix - // and make this new conjoined backtrace the cached-backtrace - // - frame_t* prefix = td->tramp_frame + 1; // skip top frame - size_t old_frame_count = td->cached_bt_end - prefix; - - hpcrun_cached_bt_adjust_size(new_frame_count + old_frame_count); - - // put the old prefix in place - memmove(td->cached_bt + new_frame_count, prefix, - sizeof(frame_t) * old_frame_count); - - // put the new suffix in place - memcpy(td->cached_bt, bt_beg, sizeof(frame_t) * new_frame_count); - - // update the length of the conjoined backtrace - td->cached_bt_end = td->cached_bt + new_frame_count + old_frame_count; - } - else { - hpcrun_cached_bt_adjust_size(new_frame_count); - memmove(td->cached_bt, bt_beg, sizeof(frame_t) * new_frame_count); - - td->cached_bt_end = td->cached_bt + new_frame_count; - } - - if (skipInner) { - if (ENABLED(USE_TRAMP)){ - // - // FIXME: For the moment, ignore skipInner issues with trampolines. - // Eventually, this will need to be addressed - // - EMSG("WARNING: backtrace detects skipInner != 0 (skipInner = %d)", - skipInner); - } - // adjust the returned backtrace according to the skipInner - bt->begin = hpcrun_skip_chords(bt_last, bt_beg, skipInner); - } - - bt->partial_unwind = false; - return true; -} - //*************************************************************************** // private operations From beba927c3c68e7348df36489632604c53fd47138 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 15:43:33 -0600 Subject: [PATCH 03/85] Delete unused functions. --- src/tool/hpcrun/unwind/common/backtrace.c | 74 +++-------------------- src/tool/hpcrun/unwind/common/backtrace.h | 6 -- 2 files changed, 9 insertions(+), 71 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index a71c9d5c50..47a8ff30ef 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -86,12 +86,6 @@ static void lush_lip2str(char* buf, size_t len, lush_lip_t* lip); // interface functions //*************************************************************************** -void -hpcrun_show_backtrace(char* label, frame_t* beg, frame_t* end) -{ - ; -} - void hpcrun_bt_dump(frame_t* unwind, const char* tag) { @@ -144,21 +138,14 @@ hpcrun_bt_dump(frame_t* unwind, const char* tag) EMSG("-- end backtrace ------------------------------------\n"); } -frame_t* -hpcrun_bt_reset(backtrace_t* bt) -{ - bt->cur = bt->beg; - bt->len = 0; - return bt->cur; -} - void hpcrun_bt_init(backtrace_t* bt, size_t size) { bt->beg = (frame_t*) hpcrun_malloc(sizeof(frame_t) * size); bt->end = bt->beg + (size - 1); bt->size = size; - hpcrun_bt_reset(bt); + bt->cur = bt->beg; + bt->len = 0; } frame_t* @@ -173,65 +160,22 @@ hpcrun_bt_last(backtrace_t* bt) return (bt->beg + bt->len -1); } -// -// Some sample backtrace mutator functions -// - -void -hpcrun_bt_skip_inner(backtrace_t* bt, void* skip) -{ - size_t realskip = (size_t) skip; - bt->beg += realskip; -} - -void -hpcrun_dump_bt(backtrace_t* bt) -{ - for(frame_t* _f = bt->beg; _f < bt->beg + bt->len; _f++) { - TMSG(BT, "ip_norm.lm_id = %d, and ip_norm.lm_ip = %p ", _f->ip_norm.lm_id, - _f->ip_norm.lm_ip); - } -} - -//--------------------------------------------------------------------------- -// function: hpcrun_filter_sample -// -// purpose: -// ignore any samples that aren't rooted at designated call sites in -// monitor that should be at the base of all process and thread call -// stacks. -// -// implementation notes: -// to support this, in monitor we define a pair of labels surrounding the -// call site of interest. it is possible to get a sample between the pair -// of labels that is outside the call. in that case, the length of the -// sample's callstack would be 1, and we ignore it. -//----------------------------------------------------------------------------- -bool -hpcrun_filter_sample(int len, frame_t* start, frame_t* last) -{ - void* ip_unnorm; - hpcrun_unw_get_ip_unnorm_reg(&last->cursor, &ip_unnorm); - return ( !(monitor_in_start_func_narrow(ip_unnorm) - && (len > 1)) ); -} - frame_t* hpcrun_skip_chords(frame_t* bt_outer, frame_t* bt_inner, int skip) { // N.B.: INVARIANT: bt_inner < bt_outer - frame_t* x_inner = bt_inner; - for (int i = 0; (x_inner < bt_outer && i < skip); ++i) { + int nFrames = bt_outer - bt_inner; + if (skip > nFrames) + skip = nFrames; + for (int i = 0; i < skip; ++i) { // for now, do not support M chords - lush_assoc_t as = lush_assoc_info__get_assoc(x_inner->as_info); + lush_assoc_t as = lush_assoc_info__get_assoc(bt_inner[i].as_info); assert(as == LUSH_ASSOC_NULL || as == LUSH_ASSOC_1_to_1 || as == LUSH_ASSOC_1_to_0); - - x_inner++; + } - - return x_inner; + return &bt_inner[skip]; } // diff --git a/src/tool/hpcrun/unwind/common/backtrace.h b/src/tool/hpcrun/unwind/common/backtrace.h index 15baad84c5..453209b89b 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.h +++ b/src/tool/hpcrun/unwind/common/backtrace.h @@ -102,15 +102,11 @@ typedef void (*bt_mut_fn)(backtrace_t* bt, bt_fn_arg arg); bool hpcrun_backtrace_std(backtrace_t* bt, ucontext_t* context); -bool hpcrun_filter_sample(int len, frame_t* start, frame_t* last); - frame_t* hpcrun_skip_chords(frame_t* bt_outer, frame_t* bt_inner, int skip); void hpcrun_bt_dump(frame_t* unwind, const char* tag); -frame_t* hpcrun_bt_reset(backtrace_t* bt); - void hpcrun_bt_init(backtrace_t* bt, size_t size); frame_t* hpcrun_bt_beg(backtrace_t* bt); @@ -119,8 +115,6 @@ frame_t* hpcrun_bt_last(backtrace_t* bt); bool hpcrun_backtrace_std(backtrace_t* bt, ucontext_t* context); -void hpcrun_dump_bt(backtrace_t* bt); - bool hpcrun_generate_backtrace(backtrace_info_t* bt, ucontext_t* context, int skipInner); From ab9f3191a8aa10dcac6018c29cf60c03e4518ecd Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 16:17:54 -0600 Subject: [PATCH 04/85] Discard needless code around simulate_segv for x86. --- .../hpcrun/unwind/x86-family/x86-unwind.c | 44 +++++-------------- 1 file changed, 11 insertions(+), 33 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 740c9d2c6a..dfcb97d1d2 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -138,12 +138,6 @@ update_cursor_with_troll(hpcrun_unw_cursor_t* cursor, int offset); static fence_enum_t hpcrun_check_fence(void* ip); -static void -simulate_segv(void); - -static void -help_simulate_segv(bool no_backtrace); - static int unw_step_prefer_sp(void); @@ -731,7 +725,17 @@ unw_step_std(hpcrun_unw_cursor_t* cursor) static step_state t1_dbg_unw_step(hpcrun_unw_cursor_t* cursor) { - simulate_segv(); + if (!DEBUG_NO_LONGJMP) { + + if (hpcrun_below_pmsg_threshold()) { + hpcrun_bt_dump(TD_GET(btbuf_cur), "DROP"); + } + + hpcrun_up_pmsg_count(); + + sigjmp_buf_t *it = &(TD_GET(bad_unwind)); + (*hpcrun_get_real_siglongjmp())(it->jb, 9); + } return STEP_ERROR; } @@ -758,32 +762,6 @@ t2_dbg_unw_step(hpcrun_unw_cursor_t* cursor) // private operations //**************************************************************************** -static void -help_simulate_segv(bool no_backtrace) -{ - if (DEBUG_NO_LONGJMP) return; - - if (no_backtrace) { - return; - } - if (hpcrun_below_pmsg_threshold()) { - hpcrun_bt_dump(TD_GET(btbuf_cur), "DROP"); - } - - hpcrun_up_pmsg_count(); - - sigjmp_buf_t *it = &(TD_GET(bad_unwind)); - (*hpcrun_get_real_siglongjmp())(it->jb, 9); -} - - -static void -simulate_segv(void) -{ - help_simulate_segv(false); -} - - static void update_cursor_with_troll(hpcrun_unw_cursor_t* cursor, int offset) { From 00bc758052b6a7a33d6475c000e24e4f56439ff9 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 16:28:32 -0600 Subject: [PATCH 05/85] Drop hpcrun_check_fence and incorporate it into its one caller. --- .../hpcrun/unwind/x86-family/x86-unwind.c | 31 +++++-------------- 1 file changed, 8 insertions(+), 23 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index dfcb97d1d2..bdd9b4db0b 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -135,9 +135,6 @@ static int DEBUG_NO_LONGJMP = 0; static void update_cursor_with_troll(hpcrun_unw_cursor_t* cursor, int offset); -static fence_enum_t -hpcrun_check_fence(void* ip); - static int unw_step_prefer_sp(void); @@ -323,26 +320,27 @@ fence_stop(fence_enum_t fence) static step_state hpcrun_unw_step_real(hpcrun_unw_cursor_t* cursor) { - - cursor->fence = hpcrun_check_fence(cursor->pc_unnorm); + void *pc = cursor->pc_unnorm; + cursor->fence = (monitor_unwind_process_bottom_frame(pc) ? FENCE_MAIN : + monitor_unwind_thread_bottom_frame(pc)? FENCE_THREAD : FENCE_NONE); + + if (ENABLED(FENCE_UNW) && cursor->fence != FENCE_NONE) + TMSG(FENCE_UNW, "%s", fence_enum_name(cursor->fence)); //----------------------------------------------------------- // check if we have reached the end of our unwind, which is // demarcated with a fence. //----------------------------------------------------------- if (fence_stop(cursor->fence)) { - TMSG(UNW,"unw_step: STEP_STOP, current pc in monitor fence pc=%p\n", cursor->pc_unnorm); + TMSG(UNW,"unw_step: STEP_STOP, current pc in monitor fence pc=%p\n", pc); return STEP_STOP; } // current frame void** bp = cursor->bp; void* sp = cursor->sp; - void* pc = cursor->pc_unnorm; unwind_interval* uw = cursor->unwr_info.btuwi; - step_state unw_res; - if (!uw){ TMSG(UNW, "unw_step: invalid unw interval for cursor, trolling ..."); TMSG(TROLL, "Troll due to Invalid interval for pc %p", pc); @@ -350,6 +348,7 @@ hpcrun_unw_step_real(hpcrun_unw_cursor_t* cursor) return STEP_TROLL; } + step_state unw_res; switch (UWI_RECIPE(uw)->ra_status){ case RA_SP_RELATIVE: unw_res = unw_step_sp(cursor); @@ -819,17 +818,3 @@ update_cursor_with_troll(hpcrun_unw_cursor_t* cursor, int offset) // assert(0); hpcrun_unw_throw(); } - -static fence_enum_t -hpcrun_check_fence(void* ip) -{ - fence_enum_t rv = FENCE_NONE; - if (monitor_unwind_process_bottom_frame(ip)) - rv = FENCE_MAIN; - else if (monitor_unwind_thread_bottom_frame(ip)) - rv = FENCE_THREAD; - - if (ENABLED(FENCE_UNW) && rv != FENCE_NONE) - TMSG(FENCE_UNW, "%s", fence_enum_name(rv)); - return rv; -} From 9dd8694027ebd388c283902483bbf08a7581efb5 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 16:33:44 -0600 Subject: [PATCH 06/85] Drop unw_step_prefer_sp. --- .../hpcrun/unwind/x86-family/x86-unwind.c | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index bdd9b4db0b..499c85ba09 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -135,9 +135,6 @@ static int DEBUG_NO_LONGJMP = 0; static void update_cursor_with_troll(hpcrun_unw_cursor_t* cursor, int offset); -static int -unw_step_prefer_sp(void); - static step_state unw_step_sp(hpcrun_unw_cursor_t* cursor); @@ -465,20 +462,6 @@ hpcrun_unw_step(hpcrun_unw_cursor_t *cursor) // hpcrun_unw_step helpers //**************************************************************************** -// FIXME: make this a selectable paramter, so that all manner of strategies -// can be selected -static int -unw_step_prefer_sp(void) -{ - if (ENABLED(PREFER_SP)){ - return 1; - } else { - return 0; - } - // return cursor->flags; // trolling_used -} - - static step_state unw_step_sp(hpcrun_unw_cursor_t* cursor) { @@ -698,7 +681,7 @@ unw_step_std(hpcrun_unw_cursor_t* cursor) { int unw_res; - if (unw_step_prefer_sp()){ + if (ENABLED(PREFER_SP)) { TMSG(UNW_STRATEGY,"--STD_FRAME: STARTing with SP"); unw_res = unw_step_sp(cursor); if (unw_res == STEP_ERROR || unw_res == STEP_STOP_WEAK) { From 36d2adcb1d1abe45a6771f9f00f553b58aa5147d Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 16:48:16 -0600 Subject: [PATCH 07/85] Have a single declaration of hpcrun_set_real_siglongjmp. --- src/tool/hpcrun/main.h | 2 +- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 2 -- src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c | 9 +-------- src/tool/hpcrun/unwind/x86-family/x86-unwind.c | 2 -- 4 files changed, 2 insertions(+), 13 deletions(-) diff --git a/src/tool/hpcrun/main.h b/src/tool/hpcrun/main.h index d8782d6a7e..7aab30fb22 100644 --- a/src/tool/hpcrun/main.h +++ b/src/tool/hpcrun/main.h @@ -54,7 +54,7 @@ extern bool hpcrun_is_initialized(); extern bool hpcrun_is_safe_to_sync(const char* fn); extern void hpcrun_set_safe_to_sync(void); - +extern void hpcrun_set_real_siglongjmp(void); // // fetch the full path of the execname // diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 3808efe269..bfedeb81f5 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -125,8 +125,6 @@ compute_normalized_ips(hpcrun_unw_cursor_t* cursor) // hpcrun_unw_init // ---------------------------------------------------------- -extern void hpcrun_set_real_siglongjmp(void); - void hpcrun_unw_init(void) { diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c index 981d692728..89f7b04e61 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c @@ -66,6 +66,7 @@ //*************************** User Include Files **************************** +#include #include #include @@ -84,14 +85,6 @@ #include -//*************************************************************************** -// external declarations -//*************************************************************************** - -extern void -hpcrun_set_real_siglongjmp(void); - - //*************************************************************************** // macros diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 499c85ba09..f4ec2a54cb 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -154,8 +154,6 @@ t1_dbg_unw_step(hpcrun_unw_cursor_t* cursor); static step_state (*dbg_unw_step)(hpcrun_unw_cursor_t* cursor) = t1_dbg_unw_step; -extern void hpcrun_set_real_siglongjmp(void); - //************************************************ // private functions //************************************************ From 4b7ce5380c0731e1cc387c75e271e4e471977681 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 17:55:57 -0600 Subject: [PATCH 08/85] Stop assigning to cursor->flags for x86, since the value is never read, and the comments don't really say what it means. --- src/tool/hpcrun/unwind/x86-family/x86-unwind.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index f4ec2a54cb..3e0721d284 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -251,8 +251,6 @@ hpcrun_unw_set_cursor(hpcrun_unw_cursor_t* cursor, void **sp, void **bp, void *i TMSG(UNW, "unw_set_cursor: pc=%p, ra_loc=%p, sp=%p, bp=%p", cursor->pc_unnorm, cursor->ra_loc, cursor->sp, cursor->bp); - cursor->flags = 0; // trolling_used - load_module_t *lm; bool found = uw_recipe_map_lookup(cursor->pc_unnorm, &(cursor->unwr_info)); @@ -276,7 +274,6 @@ hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* cursor, void* context) TMSG(UNW, "unw_init: pc=%p, ra_loc=%p, sp=%p, bp=%p", cursor->pc_unnorm, cursor->ra_loc, cursor->sp, cursor->bp); - cursor->flags = 0; // trolling_used bool found = uw_recipe_map_lookup(cursor->pc_unnorm, &(cursor->unwr_info)); if (!found) { @@ -782,8 +779,6 @@ update_cursor_with_troll(hpcrun_unw_cursor_t* cursor, int offset) cursor->ra_loc = ra_loc; compute_normalized_ips(cursor); - cursor->flags = 1; // trolling_used - return; // success! } TMSG(TROLL, "No interval found for trolled pc, dropping sample," From e36f3e50291663945af272f7f8c845f7b227136d Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 3 Mar 2017 18:00:32 -0600 Subject: [PATCH 09/85] Remove unneeded extern declaration. --- .../hpcrun/unwind/x86-family/x86-validate-retn-addr.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c b/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c index 8e09c62ba4..29ee7c491b 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c @@ -76,14 +76,6 @@ #include -//**************************************************************************** -// forward declarations -//**************************************************************************** - -extern void *x86_get_branch_target(void *ins, xed_decoded_inst_t *xptr); - - - //**************************************************************************** // local types //**************************************************************************** From 34156381c214040f502c0b39e8d1eb01f575a89a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 6 Mar 2017 17:14:32 -0600 Subject: [PATCH 10/85] In unwindr_info_t, replace the start/end pair with an interval, which consists of a start and an end already. Discard a couple of unused/redundant functions. --- src/tool/hpcrun/unwind/common/unwindr_info.h | 3 +- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 7 ++-- .../hpcrun/unwind/x86-family/x86-cold-path.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-debug.c | 36 +++++-------------- .../hpcrun/unwind/x86-family/x86-unwind.c | 2 +- .../x86-family/x86-validate-retn-addr.c | 2 +- 6 files changed, 15 insertions(+), 37 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/unwindr_info.h b/src/tool/hpcrun/unwind/common/unwindr_info.h index 49ce198468..8e1ad29523 100644 --- a/src/tool/hpcrun/unwind/common/unwindr_info.h +++ b/src/tool/hpcrun/unwind/common/unwindr_info.h @@ -59,8 +59,7 @@ //******************************* Types ************************************* typedef struct unwindr_info_s { - uintptr_t start; - uintptr_t end; + interval_t interval; load_module_t *lm; tree_stat_t treestat; bitree_uwi_t *btuwi; diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index e4865d9a4f..37a34797b1 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -491,8 +491,8 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) unwr_info->btuwi = NULL; unwr_info->treestat = NEVER; unwr_info->lm = NULL; - unwr_info->start = 0; - unwr_info->end = 0; + unwr_info->interval.start = 0; + unwr_info->interval.end = 0; // check if addr is already in the range of an interval key in the map ilmstat_btuwi_pair_t* ilm_btui = @@ -571,8 +571,7 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) unwr_info->treestat = oldstat; unwr_info->lm = ilmstat->loadmod; interval_t *interval = ilmstat->interval; - unwr_info->start = interval->start; - unwr_info->end = interval->end; + unwr_info->interval = *interval; return true; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c index 89ac2d72ad..17202357b5 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c @@ -139,7 +139,7 @@ hpcrun_is_cold_code(xed_decoded_inst_t *xptr, interval_arg_t *iarg) return false; } - void *beg = (void*)unwr_info.start; + void *beg = (void*)unwr_info.interval.start; if (branch_target == beg) { TMSG(COLD_CODE," --jump is a regular tail call," " NOT a cold code return"); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-debug.c b/src/tool/hpcrun/unwind/x86-family/x86-debug.c index 68a84ee06d..d64cee3832 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-debug.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-debug.c @@ -65,21 +65,7 @@ typedef struct { void* end; } fnbounds_t; -static fnbounds_t local; - -fnbounds_t* -x86_fnbounds(void* addr) -{ - unwindr_info_t unwr_info; - if( !uw_recipe_map_lookup(addr, &unwr_info) ) - EMSG("x86_fnbounds: bounds of addr %p taken, but no bounds known", addr); - local.begin = (void*)unwr_info.start; - local.end = (void*)unwr_info.end; - return &local; -} - - -void +static void x86_print_intervals(btuwi_status_t intervals) { unwind_interval *u; @@ -89,25 +75,19 @@ x86_print_intervals(btuwi_status_t intervals) } void -x86_dump_intervals(void* addr) +hpcrun_dump_intervals(void* addr) { unwindr_info_t unwr_info; - if( !uw_recipe_map_lookup(addr, &unwr_info) ) - EMSG("x86_fnbounds: bounds of addr %p taken, but no bounds known", addr); - void * s = (void*)unwr_info.start; - void * e = (void*)unwr_info.end; + if (!uw_recipe_map_lookup(addr, &unwr_info)) + EMSG("x86_dump_intervals: bounds of addr %p taken, but no bounds known", addr); + void * s = (void*)unwr_info.interval.start; + void * e = (void*)unwr_info.interval.end; btuwi_status_t intervals; intervals = x86_build_intervals(s, e - s, 0, hpcrun_malloc); x86_print_intervals(intervals); } -void -hpcrun_dump_intervals(void* addr) -{ - x86_dump_intervals(addr); -} - void x86_dump_ins(void *ins) { @@ -152,8 +132,8 @@ hpcrun_dump_intervals_noisy(void* addr) unwindr_info_t unwr_info; if (!uw_recipe_map_lookup(addr, &unwr_info)) EMSG("hpcrun_dump_intervals_noisy: bounds of addr %p taken, but no bounds known", addr); - void * s = (void*)unwr_info.start; - void * e = (void*)unwr_info.end; + void * s = (void*)unwr_info.interval.start; + void * e = (void*)unwr_info.interval.end; btuwi_status_t intervals = x86_build_intervals(s, e - s, 1, hpcrun_malloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 3e0721d284..98b6e1fa24 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -161,7 +161,7 @@ static step_state (*dbg_unw_step)(hpcrun_unw_cursor_t* cursor) = t1_dbg_unw_step static void compute_normalized_ips(hpcrun_unw_cursor_t* cursor) { - void *func_start_pc = (void*) cursor->unwr_info.start; + void *func_start_pc = (void*) cursor->unwr_info.interval.start; load_module_t* lm = cursor->unwr_info.lm; cursor->pc_norm = hpcrun_normalize_ip(cursor->pc_unnorm, lm); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c b/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c index 29ee7c491b..e71158fe8e 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-validate-retn-addr.c @@ -362,7 +362,7 @@ deep_validate_return_addr(void* addr, void* generic) } if( uw_recipe_map_lookup(cursor->pc_unnorm, &unwr_info) ) { - void* callee = (void*)unwr_info.start; + void* callee = (void*)unwr_info.interval.start; TMSG(VALIDATE_UNW, "beginning of my routine = %p", callee); if (confirm_call(addr, callee)) { TMSG(VALIDATE_UNW, "Instruction preceeding %p is a call to this routine. Unwind confirmed", addr); From 09a60bf43fc5d7269c263eeaac476875afcd8393 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 6 Mar 2017 17:33:10 -0600 Subject: [PATCH 11/85] hpcrun_dump_intervals and hpcrun_dump_intervals_noisy are the same function, except for one parameter, so discard one of the implementations. --- src/tool/hpcrun/unwind/x86-family/x86-debug.c | 35 ++++++++----------- 1 file changed, 15 insertions(+), 20 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-debug.c b/src/tool/hpcrun/unwind/x86-family/x86-debug.c index d64cee3832..eae669ff9b 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-debug.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-debug.c @@ -74,8 +74,8 @@ x86_print_intervals(btuwi_status_t intervals) } } -void -hpcrun_dump_intervals(void* addr) +static void +x86_dump_intervals(void *addr, int noisy) { unwindr_info_t unwr_info; if (!uw_recipe_map_lookup(addr, &unwr_info)) @@ -84,10 +84,22 @@ hpcrun_dump_intervals(void* addr) void * e = (void*)unwr_info.interval.end; btuwi_status_t intervals; - intervals = x86_build_intervals(s, e - s, 0, hpcrun_malloc); + intervals = x86_build_intervals(s, e - s, noisy, hpcrun_malloc); x86_print_intervals(intervals); } +void +hpcrun_dump_intervals(void* addr) +{ + x86_dump_intervals(addr, 0); +} + +void +hpcrun_dump_intervals_noisy(void* addr) +{ + x86_dump_intervals(addr, 1); +} + void x86_dump_ins(void *ins) { @@ -125,20 +137,3 @@ x86_dump_ins(void *ins) fprintf(stderr, errbuf); fflush(stderr); } - -void -hpcrun_dump_intervals_noisy(void* addr) -{ - unwindr_info_t unwr_info; - if (!uw_recipe_map_lookup(addr, &unwr_info)) - EMSG("hpcrun_dump_intervals_noisy: bounds of addr %p taken, but no bounds known", addr); - void * s = (void*)unwr_info.interval.start; - void * e = (void*)unwr_info.interval.end; - - btuwi_status_t intervals = x86_build_intervals(s, e - s, 1, hpcrun_malloc); - - unwind_interval * u; - for(u = intervals.first; u; u = UWI_NEXT(u)) { - dump_ui_dbg(u); - } -} From 90d4d12bda7366433aec8f3d9ac7ca88e24010ef Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 6 Mar 2017 18:02:43 -0600 Subject: [PATCH 12/85] The treestat should not be seen as forthcoming, since we wait here until it is ready. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 37a34797b1..1036e4b098 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -568,7 +568,7 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) bitree_uwi_t *btuwi = ilm_btui->btuwi; unwr_info->btuwi = bitree_uwi_inrange(btuwi, (uintptr_t)addr); - unwr_info->treestat = oldstat; + unwr_info->treestat = READY; unwr_info->lm = ilmstat->loadmod; interval_t *interval = ilmstat->interval; unwr_info->interval = *interval; From 1d542f45188197aad8739d187ddd2c57928bf212 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 6 Mar 2017 21:58:03 -0600 Subject: [PATCH 13/85] Drop an unused struct definition. --- src/tool/hpcrun/unwind/x86-family/x86-debug.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-debug.c b/src/tool/hpcrun/unwind/x86-family/x86-debug.c index eae669ff9b..07c3054b81 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-debug.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-debug.c @@ -60,11 +60,6 @@ #include "x86-decoder.h" #include "fnbounds_interface.h" -typedef struct { - void* begin; - void* end; -} fnbounds_t; - static void x86_print_intervals(btuwi_status_t intervals) { From 6d4afe577b358950c4ed76a6aeeafe0f129e827a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 6 Mar 2017 22:51:56 -0600 Subject: [PATCH 14/85] Inline ildmod_stat_build into the one place that invokes it. --- src/tool/hpcrun/unwind/common/ildmod_stat.c | 15 --------------- src/tool/hpcrun/unwind/common/ildmod_stat.h | 8 -------- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 6 +++++- 3 files changed, 5 insertions(+), 24 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.c b/src/tool/hpcrun/unwind/common/ildmod_stat.c index dd0c3ebc3a..6bcee2a2b0 100644 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.c +++ b/src/tool/hpcrun/unwind/common/ildmod_stat.c @@ -20,21 +20,6 @@ -//****************************************************************************** -// Constructors -//****************************************************************************** - -ildmod_stat_t * -ildmod_stat_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, - tree_stat_t treestat, mem_alloc m_alloc) -{ - ildmod_stat_t *ilmstat = m_alloc(sizeof(*ilmstat)); - ilmstat->interval = interval_t_new(start, end, m_alloc); - ilmstat->loadmod = ldmod; - atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); - return ilmstat; -} - //****************************************************************************** // String output //****************************************************************************** diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.h b/src/tool/hpcrun/unwind/common/ildmod_stat.h index fac3608edd..580c3b382d 100644 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.h +++ b/src/tool/hpcrun/unwind/common/ildmod_stat.h @@ -44,14 +44,6 @@ typedef struct ildmod_stat_s { _Atomic(tree_stat_t) stat; } ildmod_stat_t; -//****************************************************************************** -// Constructors -//****************************************************************************** - -ildmod_stat_t * -ildmod_stat_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, - tree_stat_t treestat, mem_alloc m_alloc); - //****************************************************************************** // String output //****************************************************************************** diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 1036e4b098..e66c1433ac 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -171,7 +171,11 @@ ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, { ilmstat_btuwi_pair_t* node = m_alloc(sizeof(*node)); node->next = NULL; - node->ilmstat = ildmod_stat_build(start, end, ldmod, treestat, m_alloc); + ildmod_stat_t *ilmstat = m_alloc(sizeof(*ilmstat)); + ilmstat->interval = interval_t_new(start, end, m_alloc); + ilmstat->loadmod = ldmod; + atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); + node->ilmstat = ilmstat; node->btuwi = tree; return node; } From 0a56c4de52b15bd84252db690018f5862fb9a4d8 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 6 Mar 2017 23:05:16 -0600 Subject: [PATCH 15/85] Drop ildmod_stat.c. Move the remaining (debug-only) functions to uw_recipe_map.c, or delete them. --- src/tool/hpcrun/Makefile.am | 1 - src/tool/hpcrun/Makefile.in | 44 +----- src/tool/hpcrun/unwind/common/ildmod_stat.c | 98 ------------ src/tool/hpcrun/unwind/common/ildmod_stat.h | 57 ------- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 146 ++++++++++++------ 5 files changed, 106 insertions(+), 240 deletions(-) delete mode 100644 src/tool/hpcrun/unwind/common/ildmod_stat.c diff --git a/src/tool/hpcrun/Makefile.am b/src/tool/hpcrun/Makefile.am index bbf9d1b17b..31393e7b31 100644 --- a/src/tool/hpcrun/Makefile.am +++ b/src/tool/hpcrun/Makefile.am @@ -186,7 +186,6 @@ UNW_UNIV_FILES = \ UNW_COMMON_FILES = \ $(UNW_UNIV_FILES) \ unwind/common/binarytree_uwi.c \ - unwind/common/ildmod_stat.c \ unwind/common/interval_t.c \ unwind/common/stack_troll.c \ unwind/common/uw_recipe_map.c diff --git a/src/tool/hpcrun/Makefile.in b/src/tool/hpcrun/Makefile.in index 3c766efe60..7a2b395518 100644 --- a/src/tool/hpcrun/Makefile.in +++ b/src/tool/hpcrun/Makefile.in @@ -465,9 +465,9 @@ am__libhpcrun_la_SOURCES_DIST = utilities/first_func.c main.h main.c \ gpu_blame-cuda-driver-table.c gpu_blame-cuda-runtime-table.c \ unwind/common/backtrace.c unwind/common/unw-throw.c \ unwind/generic-libunwind/libunw-unwind.c \ - unwind/common/binarytree_uwi.c unwind/common/ildmod_stat.c \ - unwind/common/interval_t.c unwind/common/stack_troll.c \ - unwind/common/uw_recipe_map.c unwind/ppc64/ppc64-unwind.c \ + unwind/common/binarytree_uwi.c unwind/common/interval_t.c \ + unwind/common/stack_troll.c unwind/common/uw_recipe_map.c \ + unwind/ppc64/ppc64-unwind.c \ unwind/ppc64/ppc64-unwind-interval.c \ unwind/x86-family/x86-all.c unwind/x86-family/amd-xop.c \ unwind/x86-family/x86-cold-path.c \ @@ -578,7 +578,6 @@ am__objects_30 = $(am__objects_29) \ unwind/common/libhpcrun_la-default_validation_summary.lo am__objects_31 = $(am__objects_29) \ unwind/common/libhpcrun_la-binarytree_uwi.lo \ - unwind/common/libhpcrun_la-ildmod_stat.lo \ unwind/common/libhpcrun_la-interval_t.lo \ unwind/common/libhpcrun_la-stack_troll.lo \ unwind/common/libhpcrun_la-uw_recipe_map.lo @@ -725,9 +724,9 @@ am__libhpcrun_o_SOURCES_DIST = utilities/first_func.c main.h main.c \ sample-sources/upc.c unwind/common/backtrace.c \ unwind/common/unw-throw.c \ unwind/generic-libunwind/libunw-unwind.c \ - unwind/common/binarytree_uwi.c unwind/common/ildmod_stat.c \ - unwind/common/interval_t.c unwind/common/stack_troll.c \ - unwind/common/uw_recipe_map.c unwind/ppc64/ppc64-unwind.c \ + unwind/common/binarytree_uwi.c unwind/common/interval_t.c \ + unwind/common/stack_troll.c unwind/common/uw_recipe_map.c \ + unwind/ppc64/ppc64-unwind.c \ unwind/ppc64/ppc64-unwind-interval.c \ unwind/x86-family/x86-all.c unwind/x86-family/amd-xop.c \ unwind/x86-family/x86-cold-path.c \ @@ -836,7 +835,6 @@ am__objects_53 = $(am__objects_52) \ unwind/common/libhpcrun_o-default_validation_summary.$(OBJEXT) am__objects_54 = $(am__objects_52) \ unwind/common/libhpcrun_o-binarytree_uwi.$(OBJEXT) \ - unwind/common/libhpcrun_o-ildmod_stat.$(OBJEXT) \ unwind/common/libhpcrun_o-interval_t.$(OBJEXT) \ unwind/common/libhpcrun_o-stack_troll.$(OBJEXT) \ unwind/common/libhpcrun_o-uw_recipe_map.$(OBJEXT) @@ -1343,7 +1341,6 @@ UNW_UNIV_FILES = \ UNW_COMMON_FILES = \ $(UNW_UNIV_FILES) \ unwind/common/binarytree_uwi.c \ - unwind/common/ildmod_stat.c \ unwind/common/interval_t.c \ unwind/common/stack_troll.c \ unwind/common/uw_recipe_map.c @@ -2253,9 +2250,6 @@ unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: \ unwind/common/libhpcrun_la-binarytree_uwi.lo: \ unwind/common/$(am__dirstamp) \ unwind/common/$(DEPDIR)/$(am__dirstamp) -unwind/common/libhpcrun_la-ildmod_stat.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-interval_t.lo: \ unwind/common/$(am__dirstamp) \ unwind/common/$(DEPDIR)/$(am__dirstamp) @@ -2582,9 +2576,6 @@ unwind/generic-libunwind/libhpcrun_o-libunw-unwind.$(OBJEXT): \ unwind/common/libhpcrun_o-binarytree_uwi.$(OBJEXT): \ unwind/common/$(am__dirstamp) \ unwind/common/$(DEPDIR)/$(am__dirstamp) -unwind/common/libhpcrun_o-ildmod_stat.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-interval_t.$(OBJEXT): \ unwind/common/$(am__dirstamp) \ unwind/common/$(DEPDIR)/$(am__dirstamp) @@ -2953,7 +2944,6 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-ildmod_stat.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Plo@am__quote@ @@ -2961,7 +2951,6 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po@am__quote@ @@ -3866,13 +3855,6 @@ unwind/common/libhpcrun_la-binarytree_uwi.lo: unwind/common/binarytree_uwi.c @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c -unwind/common/libhpcrun_la-ildmod_stat.lo: unwind/common/ildmod_stat.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-ildmod_stat.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-ildmod_stat.Tpo -c -o unwind/common/libhpcrun_la-ildmod_stat.lo `test -f 'unwind/common/ildmod_stat.c' || echo '$(srcdir)/'`unwind/common/ildmod_stat.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-ildmod_stat.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-ildmod_stat.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/ildmod_stat.c' object='unwind/common/libhpcrun_la-ildmod_stat.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-ildmod_stat.lo `test -f 'unwind/common/ildmod_stat.c' || echo '$(srcdir)/'`unwind/common/ildmod_stat.c - unwind/common/libhpcrun_la-interval_t.lo: unwind/common/interval_t.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-interval_t.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Tpo -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Plo @@ -5189,20 +5171,6 @@ unwind/common/libhpcrun_o-binarytree_uwi.obj: unwind/common/binarytree_uwi.c @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` -unwind/common/libhpcrun_o-ildmod_stat.o: unwind/common/ildmod_stat.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-ildmod_stat.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Tpo -c -o unwind/common/libhpcrun_o-ildmod_stat.o `test -f 'unwind/common/ildmod_stat.c' || echo '$(srcdir)/'`unwind/common/ildmod_stat.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/ildmod_stat.c' object='unwind/common/libhpcrun_o-ildmod_stat.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-ildmod_stat.o `test -f 'unwind/common/ildmod_stat.c' || echo '$(srcdir)/'`unwind/common/ildmod_stat.c - -unwind/common/libhpcrun_o-ildmod_stat.obj: unwind/common/ildmod_stat.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-ildmod_stat.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Tpo -c -o unwind/common/libhpcrun_o-ildmod_stat.obj `if test -f 'unwind/common/ildmod_stat.c'; then $(CYGPATH_W) 'unwind/common/ildmod_stat.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/ildmod_stat.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-ildmod_stat.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/ildmod_stat.c' object='unwind/common/libhpcrun_o-ildmod_stat.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-ildmod_stat.obj `if test -f 'unwind/common/ildmod_stat.c'; then $(CYGPATH_W) 'unwind/common/ildmod_stat.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/ildmod_stat.c'; fi` - unwind/common/libhpcrun_o-interval_t.o: unwind/common/interval_t.c @am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-interval_t.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.c b/src/tool/hpcrun/unwind/common/ildmod_stat.c deleted file mode 100644 index 6bcee2a2b0..0000000000 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.c +++ /dev/null @@ -1,98 +0,0 @@ -/* - * ildmod_stat.c - * - * Author: dxnguyen - */ - -//****************************************************************************** -// global include files -//****************************************************************************** - -#include -#include -#include - -//****************************************************************************** -// local include files -//****************************************************************************** - -#include "ildmod_stat.h" - - - -//****************************************************************************** -// String output -//****************************************************************************** - -void -load_module_tostr(void* lm, char str[]) -{ - load_module_t* ldmod = (load_module_t*)lm; - if (ldmod) { - snprintf(str, LDMOD_NAME_LEN, "%s%s%d", ldmod->name, " ", ldmod->id); - } - else { - snprintf(str, LDMOD_NAME_LEN, "%s", "nil"); - } -} - -void -load_module_print(void* lm) -{ - char str[LDMOD_NAME_LEN]; - load_module_tostr(lm, str); - printf("%s", str); -} - -static char -ILdMod_Stat_MaxSpaces[] = " "; - -void -ildmod_stat_tostr(void* ilms, char str[]) -{ - ildmod_stat_t* ildmod_stat = (ildmod_stat_t*)ilms; - char intervalstr[MAX_INTERVAL_STR]; - interval_t_tostr(ildmod_stat->interval, intervalstr); - char ldmodstr[LDMOD_NAME_LEN]; - load_module_tostr(ildmod_stat->loadmod, ldmodstr); - char statstr[MAX_STAT_STR]; - treestat_tostr(atomic_load_explicit(&ildmod_stat->stat, memory_order_relaxed), statstr); - sprintf(str, "(%s %s %s)", intervalstr, ldmodstr, statstr); -} - -void -ildmod_stat_print(void* ilms) -{ - char str[MAX_ILDMODSTAT_STR]; - ildmod_stat_tostr(ilms, str); - printf("%s", str); -} - -void -treestat_tostr(tree_stat_t stat, char str[]) -{ - switch (stat) { - case NEVER: strcpy(str, " NEVER"); break; - case DEFERRED: strcpy(str, " DEFERRED"); break; - case FORTHCOMING: strcpy(str, "FORTHCOMING"); break; - case READY: strcpy(str, " READY"); break; - default: strcpy(str, "STAT_ERROR"); - } -} - -void -treestat_print(tree_stat_t ts) -{ - char statstr[MAX_STAT_STR]; - treestat_tostr(ts, statstr); - printf("%s", statstr); -} - -/* - * the max spaces occupied by "([start_address ... end_address), load module xx, status) - */ -char* -ildmod_stat_maxspaces() -{ - return ILdMod_Stat_MaxSpaces; -} diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.h b/src/tool/hpcrun/unwind/common/ildmod_stat.h index 580c3b382d..b042305cd9 100644 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.h +++ b/src/tool/hpcrun/unwind/common/ildmod_stat.h @@ -14,20 +14,9 @@ // local include files //****************************************************************************** -#include -#include #include #include "interval_t.h" - -//****************************************************************************** -// macro -//****************************************************************************** - -#define MAX_STAT_STR 14 -#define LDMOD_NAME_LEN 128 -#define MAX_ILDMODSTAT_STR MAX_INTERVAL_STR+LDMOD_NAME_LEN+MAX_STAT_STR - //****************************************************************************** // type //****************************************************************************** @@ -44,50 +33,4 @@ typedef struct ildmod_stat_s { _Atomic(tree_stat_t) stat; } ildmod_stat_t; -//****************************************************************************** -// String output -//****************************************************************************** - -/* - * Concrete implementation of the abstract function val_tostr - * of the generic_val class. - * pre-condition: ilmp is of type interval_ldmod_pair_t* - */ - -void -load_module_tostr(void* lm, char str[]); - -void -load_module_print(void* lm); - -/* - * the max spaces occupied by "([start_address ... end_address), load module xx) - */ -char* -interval_ldmod_maxspaces(); - - -/* - * Concrete implementation of the abstract function val_tostr - * of the ildmod_stat class. - * pre-condition: ilms is of type ildmod_stat_t* - */ -void -ildmod_stat_tostr(void* ilms, char str[]); - -void -ildmod_stat_print(void* ilms); - -void -treestat_tostr(tree_stat_t stat, char str[]); - -void -treestat_print(tree_stat_t ts); - -/* - * the max spaces occupied by "([start_address ... end_address), load module xx, status) - */ -char* -ildmod_stat_maxspaces(); - #endif /* __ILDMOD_STAT_H__ */ diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index e66c1433ac..8029169272 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -266,10 +266,63 @@ ilmstat_btuwi_pair_free(ilmstat_btuwi_pair_t* pair) mcs_unlock(&GFL_lock, &me); } +//--------------------------------------------------------------------- +// local data +//--------------------------------------------------------------------- + +// The concrete representation of the abstract data type unwind recipe map. +static cskiplist_t *addr2recipe_map = NULL; + +// memory allocator for creating addr2recipe_map +// and inserting entries into addr2recipe_map: +static mem_alloc my_alloc = hpcrun_malloc; + //****************************************************************************** // String output //****************************************************************************** + +#define MAX_STAT_STR 14 +#define LDMOD_NAME_LEN 128 +#define MAX_ILDMODSTAT_STR MAX_INTERVAL_STR+LDMOD_NAME_LEN+MAX_STAT_STR + +static void +load_module_tostr(void* lm, char str[]) +{ + load_module_t* ldmod = (load_module_t*)lm; + if (ldmod) { + snprintf(str, LDMOD_NAME_LEN, "%s%s%d", ldmod->name, " ", ldmod->id); + } + else { + snprintf(str, LDMOD_NAME_LEN, "%s", "nil"); + } +} + +static void +treestat_tostr(tree_stat_t stat, char str[]) +{ + switch (stat) { + case NEVER: strcpy(str, " NEVER"); break; + case DEFERRED: strcpy(str, " DEFERRED"); break; + case FORTHCOMING: strcpy(str, "FORTHCOMING"); break; + case READY: strcpy(str, " READY"); break; + default: strcpy(str, "STAT_ERROR"); + } +} + +static void +ildmod_stat_tostr(void* ilms, char str[]) +{ + ildmod_stat_t* ildmod_stat = (ildmod_stat_t*)ilms; + char intervalstr[MAX_INTERVAL_STR]; + interval_t_tostr(ildmod_stat->interval, intervalstr); + char ldmodstr[LDMOD_NAME_LEN]; + load_module_tostr(ildmod_stat->loadmod, ldmodstr); + char statstr[MAX_STAT_STR]; + treestat_tostr(atomic_load_explicit(&ildmod_stat->stat, memory_order_relaxed), statstr); + sprintf(str, "(%s %s %s)", intervalstr, ldmodstr, statstr); +} + /* * Compute the string representation of ilmstat_btuwi_pair_t with appropriate * indentation of the second component which is a binary tree. @@ -296,16 +349,55 @@ max_ilmstat_btuwi_pair_len() } -//--------------------------------------------------------------------- -// local data -//--------------------------------------------------------------------- +static char +ILdMod_Stat_MaxSpaces[] = " "; -// The concrete representation of the abstract data type unwind recipe map. -static cskiplist_t *addr2recipe_map = NULL; +/* + * the max spaces occupied by "([start_address ... end_address), load module xx, status) + */ +static char* +ildmod_stat_maxspaces() +{ + return ILdMod_Stat_MaxSpaces; +} -// memory allocator for creating addr2recipe_map -// and inserting entries into addr2recipe_map: -static mem_alloc my_alloc = hpcrun_malloc; +/* + * Compute a string representation of map and store result in str. + */ +/* + * pre-condition: *nodeval is an ilmstat_btuwi_pair_t. + */ + +static void +cskl_ilmstat_btuwi_node_tostr(void* nodeval, int node_height, int max_height, + char str[], int max_cskl_str_len) +{ + cskl_levels_tostr(node_height, max_height, str, max_cskl_str_len); + + // build needed indentation to print the binary tree inside the skiplist: + char cskl_itpair_treeIndent[MAX_CSKIPLIST_STR]; + cskl_itpair_treeIndent[0] = '\0'; + int indentlen= strlen(cskl_itpair_treeIndent); + strncat(cskl_itpair_treeIndent, str, MAX_CSKIPLIST_STR - indentlen -1); + indentlen= strlen(cskl_itpair_treeIndent); + strncat(cskl_itpair_treeIndent, ildmod_stat_maxspaces(), MAX_CSKIPLIST_STR - indentlen -1); + + // print the binary tree with the proper indentation: + char itpairstr[max_ilmstat_btuwi_pair_len()]; + ilmstat_btuwi_pair_t* node_val = (ilmstat_btuwi_pair_t*)nodeval; + ilmstat_btuwi_pair_tostr_indent(node_val, cskl_itpair_treeIndent, itpairstr); + + // add new line: + cskl_append_node_str(itpairstr, str, max_cskl_str_len); +} + +void +uw_recipe_map_print(void) +{ + char buf[MAX_CSKIPLIST_STR]; + cskl_tostr(addr2recipe_map, cskl_ilmstat_btuwi_node_tostr, buf, MAX_CSKIPLIST_STR); + printf("%s", buf); +} //--------------------------------------------------------------------- // private operations @@ -583,41 +675,3 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) //--------------------------------------------------------------------- // debug operations //--------------------------------------------------------------------- - -/* - * Compute a string representation of map and store result in str. - */ -/* - * pre-condition: *nodeval is an ilmstat_btuwi_pair_t. - */ - -static void -cskl_ilmstat_btuwi_node_tostr(void* nodeval, int node_height, int max_height, - char str[], int max_cskl_str_len) -{ - cskl_levels_tostr(node_height, max_height, str, max_cskl_str_len); - - // build needed indentation to print the binary tree inside the skiplist: - char cskl_itpair_treeIndent[MAX_CSKIPLIST_STR]; - cskl_itpair_treeIndent[0] = '\0'; - int indentlen= strlen(cskl_itpair_treeIndent); - strncat(cskl_itpair_treeIndent, str, MAX_CSKIPLIST_STR - indentlen -1); - indentlen= strlen(cskl_itpair_treeIndent); - strncat(cskl_itpair_treeIndent, ildmod_stat_maxspaces(), MAX_CSKIPLIST_STR - indentlen -1); - - // print the binary tree with the proper indentation: - char itpairstr[max_ilmstat_btuwi_pair_len()]; - ilmstat_btuwi_pair_t* node_val = (ilmstat_btuwi_pair_t*)nodeval; - ilmstat_btuwi_pair_tostr_indent(node_val, cskl_itpair_treeIndent, itpairstr); - - // add new line: - cskl_append_node_str(itpairstr, str, max_cskl_str_len); -} - -void -uw_recipe_map_print(void) -{ - char buf[MAX_CSKIPLIST_STR]; - cskl_tostr(addr2recipe_map, cskl_ilmstat_btuwi_node_tostr, buf, MAX_CSKIPLIST_STR); - printf("%s", buf); -} From af1931f5d52e5f0625fa8aedc24e0205ef3c059e Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 7 Mar 2017 14:45:58 -0600 Subject: [PATCH 16/85] Drop hpcrun_bt_beg, hpcrun_bt_last. --- src/tool/hpcrun/cct_insert_backtrace.c | 5 +++-- src/tool/hpcrun/unwind/common/backtrace.c | 12 ------------ src/tool/hpcrun/unwind/common/backtrace.h | 4 ---- 3 files changed, 3 insertions(+), 18 deletions(-) diff --git a/src/tool/hpcrun/cct_insert_backtrace.c b/src/tool/hpcrun/cct_insert_backtrace.c index ecde549e4d..d24e111abd 100644 --- a/src/tool/hpcrun/cct_insert_backtrace.c +++ b/src/tool/hpcrun/cct_insert_backtrace.c @@ -196,8 +196,9 @@ hpcrun_cct_insert_bt(cct_node_t* node, backtrace_t* bt, cct_metric_data_t datum, void **trace_pc) { - return hpcrun_cct_insert_backtrace_w_metric(node, metricId, hpcrun_bt_last(bt), - hpcrun_bt_beg(bt), datum); + return hpcrun_cct_insert_backtrace_w_metric(node, metricId, + bt->beg + bt->len - 1, + bt->beg, datum); } diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index 47a8ff30ef..1aab868691 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -148,18 +148,6 @@ hpcrun_bt_init(backtrace_t* bt, size_t size) bt->len = 0; } -frame_t* -hpcrun_bt_beg(backtrace_t* bt) -{ - return bt->beg; -} - -frame_t* -hpcrun_bt_last(backtrace_t* bt) -{ - return (bt->beg + bt->len -1); -} - frame_t* hpcrun_skip_chords(frame_t* bt_outer, frame_t* bt_inner, int skip) diff --git a/src/tool/hpcrun/unwind/common/backtrace.h b/src/tool/hpcrun/unwind/common/backtrace.h index 453209b89b..c1db951d86 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.h +++ b/src/tool/hpcrun/unwind/common/backtrace.h @@ -109,10 +109,6 @@ void hpcrun_bt_dump(frame_t* unwind, const char* tag); void hpcrun_bt_init(backtrace_t* bt, size_t size); -frame_t* hpcrun_bt_beg(backtrace_t* bt); - -frame_t* hpcrun_bt_last(backtrace_t* bt); - bool hpcrun_backtrace_std(backtrace_t* bt, ucontext_t* context); bool hpcrun_generate_backtrace(backtrace_info_t* bt, From 1b43076165832b78417ac0dc83c67b5fbcdc8761 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 7 Mar 2017 14:50:48 -0600 Subject: [PATCH 17/85] Don't cast a void* to a void*. --- src/tool/hpcrun/unwind/common/backtrace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index 1aab868691..ffdc0e8aaf 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -211,7 +211,7 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, void* ip; hpcrun_unw_get_ip_unnorm_reg(&cursor, &ip); - if (hpcrun_trampoline_interior((void*) ip)) { + if (hpcrun_trampoline_interior(ip)) { // bail; we shouldn't be unwinding here. hpcrun is in the midst of // counting a return from a sampled frame using a trampoline. // drop the sample. @@ -220,7 +220,7 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, hpcrun_unw_drop(); } - if (hpcrun_trampoline_at_entry((void*) ip)) { + if (hpcrun_trampoline_at_entry(ip)) { if (unw_len == 0){ // we are about to enter the trampoline code to synchronously // record a return. for now, simply do nothing ... From 149551f375495f1dbd46f8d1a1951ff51ce9c886 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 7 Mar 2017 14:52:52 -0600 Subject: [PATCH 18/85] Drop write-only variable. --- src/tool/hpcrun/unwind/common/backtrace.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index ffdc0e8aaf..acd7a906b7 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -188,8 +188,6 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, bt->bottom_frame_elided = false; bt->partial_unwind = true; - bool tramp_found = false; - step_state ret = STEP_ERROR; // default return value from stepper //-------------------------------------------------------------------- @@ -230,7 +228,7 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, } else { // we have encountered a trampoline in the middle of an unwind. - bt->has_tramp = (tramp_found = true); + bt->has_tramp = true; TMSG(TRAMP, "--CURRENT UNWIND FINDS TRAMPOLINE @ (sp:%p, bp:%p", cursor.sp, cursor.bp); // no need to unwind further. the outer frames are already known. From a023d564d9873b20fd953953687b65a0c31e6ecc Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 7 Mar 2017 15:05:29 -0600 Subject: [PATCH 19/85] backtrace_info_t has a member n_trolls and a member trolled, and the former is nonzero if and only if the latter is set. So eliminate the latter and test n_trolls in the one place where trolled was tested before. --- src/tool/hpcrun/cct_insert_backtrace.c | 2 +- src/tool/hpcrun/sample_event.c | 1 - src/tool/hpcrun/unwind/common/backtrace.c | 2 -- src/tool/hpcrun/unwind/common/backtrace_info.h | 1 - 4 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/tool/hpcrun/cct_insert_backtrace.c b/src/tool/hpcrun/cct_insert_backtrace.c index d24e111abd..2f026f3bc3 100644 --- a/src/tool/hpcrun/cct_insert_backtrace.c +++ b/src/tool/hpcrun/cct_insert_backtrace.c @@ -409,7 +409,7 @@ help_hpcrun_backtrace2cct(cct_bundle_t* bundle, ucontext_t* context, // *trace_pc = bt.trace_pc; // JMC - if (bt.trolled) hpcrun_stats_trolled_inc(); + if (bt.n_trolls != 0) hpcrun_stats_trolled_inc(); hpcrun_stats_frames_total_inc((long)(bt.last - bt.begin + 1)); hpcrun_stats_trolled_frames_inc((long) bt.n_trolls); diff --git a/src/tool/hpcrun/sample_event.c b/src/tool/hpcrun/sample_event.c index 674aeac8be..3bc8646acb 100644 --- a/src/tool/hpcrun/sample_event.c +++ b/src/tool/hpcrun/sample_event.c @@ -150,7 +150,6 @@ record_partial_unwind( bt.last = bt_last; bt.fence = FENCE_BAD; bt.has_tramp = false; - bt.trolled = false; bt.n_trolls = 0; bt.bottom_frame_elided = false; diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index acd7a906b7..92215583de 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -182,7 +182,6 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, { TMSG(BT, "Generate backtrace (no tramp), skip inner = %d", skipInner); bt->has_tramp = false; - bt->trolled = false; bt->n_trolls = 0; bt->fence = FENCE_BAD; bt->bottom_frame_elided = false; @@ -254,7 +253,6 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, ret = hpcrun_unw_step(&cursor); if (ret == STEP_TROLL) { - bt->trolled = true; bt->n_trolls++; } if (ret <= 0) { diff --git a/src/tool/hpcrun/unwind/common/backtrace_info.h b/src/tool/hpcrun/unwind/common/backtrace_info.h index 1b5bac8d8a..90fac8ff19 100644 --- a/src/tool/hpcrun/unwind/common/backtrace_info.h +++ b/src/tool/hpcrun/unwind/common/backtrace_info.h @@ -20,7 +20,6 @@ typedef struct { frame_t* last; // ending frame of backtrace (inclusive) fence_enum_t fence; // Type of stop -- thread or main *only meaninful when good unwind bool has_tramp; // true when a trampoline short-circuited the unwind - bool trolled; // true when ANY frame in the backtrace came from a troll size_t n_trolls; // # of frames that resulted from trolling bool bottom_frame_elided; // true if bottom frame has been elided bool partial_unwind; // true if not a full unwind From 578040f8fbf0fb21479e13e4e065a42aa41bab0f Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 7 Mar 2017 15:09:44 -0600 Subject: [PATCH 20/85] Shrink backtrace_info_t by packing bools, enum into fewer bytes. --- src/tool/hpcrun/unwind/common/backtrace_info.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace_info.h b/src/tool/hpcrun/unwind/common/backtrace_info.h index 90fac8ff19..9caaa5e47c 100644 --- a/src/tool/hpcrun/unwind/common/backtrace_info.h +++ b/src/tool/hpcrun/unwind/common/backtrace_info.h @@ -18,11 +18,11 @@ typedef struct { frame_t* begin; // beginning frame of backtrace frame_t* last; // ending frame of backtrace (inclusive) - fence_enum_t fence; // Type of stop -- thread or main *only meaninful when good unwind - bool has_tramp; // true when a trampoline short-circuited the unwind size_t n_trolls; // # of frames that resulted from trolling - bool bottom_frame_elided; // true if bottom frame has been elided - bool partial_unwind; // true if not a full unwind + fence_enum_t fence:3; // Type of stop -- thread or main *only meaninful when good unwind + bool has_tramp:1; // true when a trampoline short-circuited the unwind + bool bottom_frame_elided:1; // true if bottom frame has been elided + bool partial_unwind:1; // true if not a full unwind void *trace_pc; // in/out value: modified to adjust trace when modifying backtrace } backtrace_info_t; From e11df351a7691026079a2cd66901a5f461547941 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 7 Mar 2017 15:23:45 -0600 Subject: [PATCH 21/85] Drop a duplicated check of fence_stop. --- .../hpcrun/unwind/x86-family/x86-unwind.c | 22 +++++++------------ 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 98b6e1fa24..8eab0a0107 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -303,12 +303,6 @@ hpcrun_unw_get_ra_loc(hpcrun_unw_cursor_t* cursor) return cursor->ra_loc; } -static bool -fence_stop(fence_enum_t fence) -{ - return (fence == FENCE_MAIN) || (fence == FENCE_THREAD); -} - static step_state hpcrun_unw_step_real(hpcrun_unw_cursor_t* cursor) { @@ -316,14 +310,14 @@ hpcrun_unw_step_real(hpcrun_unw_cursor_t* cursor) cursor->fence = (monitor_unwind_process_bottom_frame(pc) ? FENCE_MAIN : monitor_unwind_thread_bottom_frame(pc)? FENCE_THREAD : FENCE_NONE); - if (ENABLED(FENCE_UNW) && cursor->fence != FENCE_NONE) - TMSG(FENCE_UNW, "%s", fence_enum_name(cursor->fence)); - - //----------------------------------------------------------- - // check if we have reached the end of our unwind, which is - // demarcated with a fence. - //----------------------------------------------------------- - if (fence_stop(cursor->fence)) { + if (cursor->fence != FENCE_NONE) { + if (ENABLED(FENCE_UNW)) + TMSG(FENCE_UNW, "%s", fence_enum_name(cursor->fence)); + + //----------------------------------------------------------- + // check if we have reached the end of our unwind, which is + // demarcated with a fence. + //----------------------------------------------------------- TMSG(UNW,"unw_step: STEP_STOP, current pc in monitor fence pc=%p\n", pc); return STEP_STOP; } From a24665c986e6983b344a73be09590643cc288ea9 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 30 Mar 2017 19:14:33 -0500 Subject: [PATCH 22/85] Merge away uw_recipe.h, since only one file includes it. --- .../hpcrun/unwind/common/binarytree_uwi.h | 20 +++++++- src/tool/hpcrun/unwind/common/uw_recipe.h | 48 ------------------- 2 files changed, 19 insertions(+), 49 deletions(-) delete mode 100644 src/tool/hpcrun/unwind/common/uw_recipe.h diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 998d957a43..5f89ca7cdd 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -23,7 +23,6 @@ #include #include "interval_t.h" -#include "uw_recipe.h" /****************************************************************************** @@ -58,6 +57,8 @@ typedef struct unwind_interval_t unwind_interval; // abstract data type //****************************************************************************** +typedef struct recipe_s uw_recipe_t; + typedef struct uwi_s { interval_t *interval; uw_recipe_t *recipe; @@ -79,6 +80,12 @@ void bitree_uwi_init(); // constructors +static inline uw_recipe_t* +uw_recipe_t_new(mem_alloc m_alloc, size_t recipe_size) +{ + return (uw_recipe_t*)m_alloc(recipe_size); +} + bitree_uwi_t* bitree_uwi_new(uwi_t *val, bitree_uwi_t *left, bitree_uwi_t *right, mem_alloc m_alloc); @@ -161,6 +168,17 @@ bitree_uwi_find(bitree_uwi_t *tree, uwi_t *val); bitree_uwi_t* bitree_uwi_inrange(bitree_uwi_t *tree, uintptr_t address); +/* + * Concrete implementation of the abstract val_tostr function of the + * generic_val class. + * pre-condition: uwr is of type uw_recipe_t* + */ +void +uw_recipe_tostr(void* uwr, char str[]); + +void +uw_recipe_print(void* uwr); + // compute a string representing the binary tree printed vertically and // return result in the treestr parameter. // caller should provide the appropriate length for treestr. diff --git a/src/tool/hpcrun/unwind/common/uw_recipe.h b/src/tool/hpcrun/unwind/common/uw_recipe.h deleted file mode 100644 index 676988a363..0000000000 --- a/src/tool/hpcrun/unwind/common/uw_recipe.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * uw_recipe.h - * - * Specification of uw_recipe_t, an abstract unwind recipe. - * Known concrete implementations: - * x86recipe_t defined in x86-unwind-interval.h - * ppc64recipe_t defined in ppc64-unwind-interval.h - * - * Author: dxnguyen - */ - -#ifndef __UW_RECIPE_H__ -#define __UW_RECIPE_H__ - -#include - -//****************************************************************************** -// macro -//****************************************************************************** - -#define MAX_RECIPE_STR 256 - - -//****************************************************************************** -// Abstract data type -//****************************************************************************** - -typedef struct recipe_s uw_recipe_t; - -static inline uw_recipe_t* -uw_recipe_t_new(mem_alloc m_alloc, size_t recipe_size) -{ - return (uw_recipe_t*)m_alloc(recipe_size); -} - -/* - * Concrete implementation of the abstract val_tostr function of the - * generic_val class. - * pre-condition: uwr is of type uw_recipe_t* - */ -void -uw_recipe_tostr(void* uwr, char str[]); - -void -uw_recipe_print(void* uwr); - - -#endif /* __UW_RECIPE_H__ */ From 2a48a37e48fa2fc19c719ddf0a5e98ca638e9413 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 3 Apr 2017 15:28:37 -0500 Subject: [PATCH 23/85] Restore main.c to what is it on master, restoring seemingly useless debug functions which aren't really useless. --- src/tool/hpcrun/main.c | 39 ++++++++++++++++++++++++++++++--------- 1 file changed, 30 insertions(+), 9 deletions(-) diff --git a/src/tool/hpcrun/main.c b/src/tool/hpcrun/main.c index 8057d77904..0f7534a861 100644 --- a/src/tool/hpcrun/main.c +++ b/src/tool/hpcrun/main.c @@ -723,22 +723,23 @@ hpcrun_thread_fini(epoch_t *epoch) } } + //*************************************************************************** -// process control (via libmonitor) +// hpcrun debugging support //*************************************************************************** + volatile int HPCRUN_DEBUGGER_WAIT = 1; -void* -monitor_init_process(int *argc, char **argv, void* data) +void +hpcrun_continue() { - char* process_name; - char buf[PROC_NAME_LEN]; - - hpcrun_thread_suppress_sample = false; + HPCRUN_DEBUGGER_WAIT = 0; +} - fork_data_t* fork_data = (fork_data_t*) data; - bool is_child = data && fork_data->is_child; +void +hpcrun_wait() +{ const char* HPCRUN_WAIT = getenv("HPCRUN_WAIT"); if (HPCRUN_WAIT) { while (HPCRUN_DEBUGGER_WAIT); @@ -748,6 +749,26 @@ monitor_init_process(int *argc, char **argv, void* data) // you want when debugging, make your own arrangements. unsetenv("HPCRUN_WAIT"); } +} + + + +//*************************************************************************** +// process control (via libmonitor) +//*************************************************************************** + +void* +monitor_init_process(int *argc, char **argv, void* data) +{ + char* process_name; + char buf[PROC_NAME_LEN]; + + hpcrun_thread_suppress_sample = false; + + fork_data_t* fork_data = (fork_data_t*) data; + bool is_child = data && fork_data->is_child; + + hpcrun_wait(); #if 0 // temporary patch to avoid deadlock within PAMI's optimized implementation From ecab1687489600fdbbcb4f05da24f328fb06f8e5 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 3 Apr 2017 18:24:20 -0500 Subject: [PATCH 24/85] Drop an unused function. --- .../unwind/x86-family/x86-unwind-interval.c | 17 ----------------- .../unwind/x86-family/x86-unwind-interval.h | 4 ---- 2 files changed, 21 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index a7beaa7adb..f2d3ccfe5c 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -225,23 +225,6 @@ dump_ui_troll(unwind_interval *u) TMSG(TROLL,buf); } -x86recipe_t* -x86recipe_new(ra_loc ra_status, int sp_ra_pos, int bp_ra_pos, - bp_loc bp_status, int sp_bp_pos, int bp_bp_pos, mem_alloc m_alloc) -{ - x86recipe_t* recipe = (x86recipe_t*)m_alloc(sizeof(x86recipe_t)); - recipe->ra_status = ra_status; - recipe->sp_ra_pos = sp_ra_pos; - recipe->sp_bp_pos = sp_bp_pos; - recipe->bp_status = bp_status; - recipe->bp_bp_pos = bp_bp_pos; - recipe->bp_ra_pos = bp_ra_pos; - recipe->prev_canonical = NULL; - recipe->restored_canonical = 0; - recipe->has_tail_calls = false; - return recipe; -} - void x86recipe_tostr(void* recipe, char str[]) { diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h index 70bfdcc6bd..13f77c836f 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h @@ -147,10 +147,6 @@ extern "C" { void suspicious_interval(void *pc); - x86recipe_t * - x86recipe_new(ra_loc ra_status, int sp_ra_pos, int bp_ra_pos, - bp_loc bp_status, int sp_bp_pos, int bp_bp_pos, mem_alloc m_alloc); - /* * Concrete implementation of the abstract val_tostr function of the * generic_val class. From c06afd33682fe076d2bcb8e31ffe08566bef9fdc Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 4 Apr 2017 11:44:00 -0500 Subject: [PATCH 25/85] Define a nextInsn instruction, as we do on ppc64, for composing the first argument to new_ui. --- src/tool/hpcrun/unwind/x86-family/x86-addsub.c | 6 +++--- src/tool/hpcrun/unwind/x86-family/x86-and.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-call.c | 2 +- .../hpcrun/unwind/x86-family/x86-canonical.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-enter.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-lea.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-leave.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-move.c | 16 ++++++++-------- src/tool/hpcrun/unwind/x86-family/x86-push.c | 4 ++-- .../unwind/x86-family/x86-unwind-interval.h | 3 +++ 10 files changed, 22 insertions(+), 19 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-addsub.c b/src/tool/hpcrun/unwind/x86-family/x86-addsub.c index 9786da3936..4e5d357f22 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-addsub.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-addsub.c @@ -92,7 +92,7 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i // 9 December 2007 -- John Mellor-Crummey //------------------------------------------------------------------- } - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), istatus, UWI_RECIPE(iarg->current)->sp_ra_pos + immedv, UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos + immedv, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); @@ -114,7 +114,7 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i //----------------------------------------------------------------- hw_tmp->uwi = next; hw_tmp->succ_inst_ptr = - iarg->ins + xed_decoded_inst_get_length(xptr); + nextInsn(iarg, xptr); hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_SP_DECREMENTED); iarg->canonical_interval = next; @@ -128,7 +128,7 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i // // 9 December 2007 -- John Mellor-Crummey //------------------------------------------------------------------- - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), RA_BP_FRAME, + next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-and.c b/src/tool/hpcrun/unwind/x86-family/x86-and.c index 466834bc0e..c1875d1093 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-and.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-and.c @@ -69,7 +69,7 @@ process_and(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg //----------------------------------------------------------------------- // we are adjusting the stack pointer via 'and' instruction //----------------------------------------------------------------------- - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-call.c b/src/tool/hpcrun/unwind/x86-family/x86-call.c index 843ea18402..6e652076cc 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-call.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-call.c @@ -97,7 +97,7 @@ process_call(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // As if it were a push // if (call_is_push_next_addr_idiom(xptr, iarg)) { - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), UWI_RECIPE(iarg->current)->ra_status, + next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, UWI_RECIPE(iarg->current)->sp_ra_pos + sizeof(void*), UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos + sizeof(void*), UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c index d230a97bfd..ba600905e6 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c @@ -116,7 +116,7 @@ reset_to_canonical_interval(xed_decoded_inst_t *xptr, unwind_interval **next, (UWI_RECIPE(current)->sp_bp_pos != UWI_RECIPE(first)->sp_bp_pos)) #endif { - *next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + *next = new_ui(nextInsn(iarg, xptr), ra_status, UWI_RECIPE(first)->sp_ra_pos, UWI_RECIPE(first)->bp_ra_pos, bp_status, UWI_RECIPE(first)->sp_bp_pos, UWI_RECIPE(first)->bp_bp_pos, current, m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-enter.c b/src/tool/hpcrun/unwind/x86-family/x86-enter.c index f55c565ea6..68b3dc5889 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-enter.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-enter.c @@ -79,7 +79,7 @@ process_enter(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *ia } } TMSG(INTV,"new interval from ENTER"); - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_STD_FRAME, UWI_RECIPE(iarg->current)->sp_ra_pos + offset, 8, BP_SAVED, UWI_RECIPE(iarg->current)->sp_bp_pos + offset - 8, 0, iarg->current, diff --git a/src/tool/hpcrun/unwind/x86-family/x86-lea.c b/src/tool/hpcrun/unwind/x86-family/x86-lea.c index 4f3fadcc25..8a13f19e29 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-lea.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-lea.c @@ -63,7 +63,7 @@ process_lea(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg if ((op0_name == XED_OPERAND_REG0)) { x86recipe_t *xr = UWI_RECIPE(next); xed_reg_enum_t regname = xed_decoded_inst_get_reg(xptr, op0_name); - char *next_ins = iarg->ins + xed_decoded_inst_get_length(xptr); + char *next_ins = nextInsn(iarg, xptr); if (x86_isReg_BP(regname)) { //======================================================================= // action: clobbering the base pointer; begin a new SP_RELATIVE interval diff --git a/src/tool/hpcrun/unwind/x86-family/x86-leave.c b/src/tool/hpcrun/unwind/x86-family/x86-leave.c index 542de3f455..df5f1f7a26 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-leave.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-leave.c @@ -56,7 +56,7 @@ process_leave(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *ia mem_alloc m_alloc) { unwind_interval *next; - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, 0, 0, BP_UNCHANGED, 0, 0, iarg->current, m_alloc); return next; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-move.c b/src/tool/hpcrun/unwind/x86-family/x86-move.c index e02ccb0e85..fca632d429 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-move.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-move.c @@ -87,7 +87,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // (2) BP position relative to the stack pointer set // to the offset from SP //================================================================== - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, BP_SAVED, @@ -118,7 +118,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // action: create a new interval with BP status reset to // BP_UNCHANGED //================================================================ - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, BP_UNCHANGED, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); @@ -130,7 +130,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // BP_HOSED //================================================================ if (UWI_RECIPE(iarg->current)->bp_status != BP_HOSED) { - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, BP_HOSED, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); @@ -155,7 +155,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // action: create a new interval with SP status reset to // BP_UNCHANGED //================================================================ - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, 0, 0, UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); @@ -172,7 +172,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // instruction: restore SP from BP // action: begin a new SP_RELATIVE interval //==================================================================== - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->bp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); @@ -181,7 +181,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // instruction: initialize BP with value of SP to set up a frame ptr // action: begin a new SP_RELATIVE interval //==================================================================== - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_STD_FRAME, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->sp_ra_pos, BP_SAVED, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->sp_bp_pos, iarg->current, @@ -196,7 +196,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar //==================================================================== // instruction: copy BP to RAX //==================================================================== - iarg->rax_rbp_equivalent_at = iarg->ins + xed_decoded_inst_get_length(xptr); + iarg->rax_rbp_equivalent_at = nextInsn(iarg, xptr); } else if (x86_isReg_BP(reg0)) { if (UWI_RECIPE(iarg->current)->bp_status != BP_HOSED){ //================================================================== @@ -204,7 +204,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // state: bp_status is NOT BP_HOSED // action: begin a new RA_SP_RELATIVE,BP_HOSED interval //================================================================== - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->sp_ra_pos, BP_HOSED, UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->sp_bp_pos, iarg->current, diff --git a/src/tool/hpcrun/unwind/x86-family/x86-push.c b/src/tool/hpcrun/unwind/x86-family/x86-push.c index 8fb26feb2a..42ba54c355 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-push.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-push.c @@ -88,7 +88,7 @@ process_push(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar } } - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), UWI_RECIPE(iarg->current)->ra_status, + next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, UWI_RECIPE(iarg->current)->sp_ra_pos + size, UWI_RECIPE(iarg->current)->bp_ra_pos, bp_status, sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); @@ -120,7 +120,7 @@ process_pop(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg if (x86_isReg_BP(regname)) bp_status = BP_UNCHANGED; } - next = new_ui(iarg->ins + xed_decoded_inst_get_length(xptr), UWI_RECIPE(iarg->current)->ra_status, + next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, UWI_RECIPE(iarg->current)->sp_ra_pos + size, UWI_RECIPE(iarg->current)->bp_ra_pos, bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos + size, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h index 13f77c836f..5f96341c38 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h @@ -129,6 +129,9 @@ extern "C" { void set_ui_restored_canonical(unwind_interval *u, unwind_interval *value); + static inline char *nextInsn(interval_arg_t *iarg, xed_decoded_int_t *xptr) { + return iarg->ins + xed_decoded_inst_get_length(xptr); + } unwind_interval * new_ui(char *startaddr, From 16606a70476db418e30f1d534bf42c2be399f653 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 4 Apr 2017 15:56:21 -0500 Subject: [PATCH 26/85] Separate x86 registers into their own struct, and pass a register set to new_ui instead of passing individual register values. --- .../hpcrun/unwind/x86-family/x86-addsub.c | 24 +++---- src/tool/hpcrun/unwind/x86-family/x86-and.c | 8 +-- .../unwind/x86-family/x86-build-intervals.c | 3 +- src/tool/hpcrun/unwind/x86-family/x86-call.c | 9 +-- .../hpcrun/unwind/x86-family/x86-canonical.c | 27 ++++---- src/tool/hpcrun/unwind/x86-family/x86-enter.c | 13 ++-- src/tool/hpcrun/unwind/x86-family/x86-lea.c | 23 ++----- src/tool/hpcrun/unwind/x86-family/x86-leave.c | 4 +- src/tool/hpcrun/unwind/x86-family/x86-move.c | 64 +++++++------------ src/tool/hpcrun/unwind/x86-family/x86-push.c | 29 +++++---- .../unwind/x86-family/x86-unwind-interval.c | 11 +--- .../unwind/x86-family/x86-unwind-interval.h | 13 ++-- 12 files changed, 97 insertions(+), 131 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-addsub.c b/src/tool/hpcrun/unwind/x86-family/x86-addsub.c index 4e5d357f22..d09f2782a1 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-addsub.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-addsub.c @@ -66,6 +66,9 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i const xed_operand_t* op0 = xed_inst_operand(xi,0); const xed_operand_t* op1 = xed_inst_operand(xi,1); xed_operand_enum_t op0_name = xed_operand_name(op0); + x86recipe_t *xr = UWI_RECIPE(iarg->current); + x86registers_t reg = xr->reg; + ra_loc istatus = xr->ra_status; if (op0_name == XED_OPERAND_REG0) { xed_reg_enum_t reg0 = xed_decoded_inst_get_reg(xptr, op0_name); @@ -77,7 +80,6 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i if (xed_operand_name(op1) == XED_OPERAND_IMM0) { int sign = (iclass_eq(xptr, XED_ICLASS_ADD)) ? -1 : 1; long immedv = sign * xed_decoded_inst_get_signed_immediate(xptr); - ra_loc istatus = UWI_RECIPE(iarg->current)->ra_status; if ((istatus == RA_STD_FRAME) && (immedv > 0) && (hw_tmp->state & HW_SP_DECREMENTED)) { //------------------------------------------------------------------- @@ -92,10 +94,9 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i // 9 December 2007 -- John Mellor-Crummey //------------------------------------------------------------------- } - next = new_ui(nextInsn(iarg, xptr), - istatus, UWI_RECIPE(iarg->current)->sp_ra_pos + immedv, UWI_RECIPE(iarg->current)->bp_ra_pos, - UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos + immedv, - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + reg->sp_ra_pos += immedv; + reg->sp_bp_pos += immedv; + next = new_ui(nextInsn(iarg, xptr), istatus, ®, iarg->current, m_alloc); if (immedv > 0) { if (HW_TEST_STATE(hw_tmp->state, 0, HW_SP_DECREMENTED)) { @@ -113,25 +114,20 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i // 9 December 2007 -- John Mellor-Crummey //----------------------------------------------------------------- hw_tmp->uwi = next; - hw_tmp->succ_inst_ptr = - nextInsn(iarg, xptr); - hw_tmp->state = - HW_NEW_STATE(hw_tmp->state, HW_SP_DECREMENTED); + hw_tmp->succ_inst_ptr = nextInsn(iarg, xptr); + hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_SP_DECREMENTED); iarg->canonical_interval = next; } } } else { - if (UWI_RECIPE(iarg->current)->ra_status != RA_BP_FRAME){ + if (istatus != RA_BP_FRAME){ //------------------------------------------------------------------- // no immediate in add/subtract from stack pointer; switch to // BP_FRAME // // 9 December 2007 -- John Mellor-Crummey //------------------------------------------------------------------- - next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, - UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, - UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos, - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, ®, iarg->current, m_alloc); iarg->bp_frames_found = true; } } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-and.c b/src/tool/hpcrun/unwind/x86-family/x86-and.c index c1875d1093..9a38b1595b 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-and.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-and.c @@ -65,14 +65,12 @@ process_and(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg if (op0_name == XED_OPERAND_REG0) { xed_reg_enum_t reg0 = xed_decoded_inst_get_reg(xptr, op0_name); - if (x86_isReg_SP(reg0) && UWI_RECIPE(iarg->current)->bp_status != BP_UNCHANGED) { + x86recipe_t *xr = UWI_RECIPE(iarg->current); + if (x86_isReg_SP(reg0) && xr->reg.bp_status != BP_UNCHANGED) { //----------------------------------------------------------------------- // we are adjusting the stack pointer via 'and' instruction //----------------------------------------------------------------------- - next = new_ui(nextInsn(iarg, xptr), - RA_BP_FRAME, UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, - UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos, - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, &xr->reg, iarg->current, m_alloc); } } return next; diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index ced064fe79..1f305884fe 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -125,7 +125,8 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) iarg.end = end; iarg.highwatermark = _h; iarg.ins = ins; - iarg.current = new_ui(ins, RA_SP_RELATIVE, 0, 0, BP_UNCHANGED, 0, 0, NULL, m_alloc); + x86registers_t reg = {0, 0, BP_UNCHANGED, 0, 0}; + iarg.current = new_ui(ins, RA_SP_RELATIVE, ®, NULL, m_alloc); iarg.first = iarg.current; // handle return is different if there are any bp frames diff --git a/src/tool/hpcrun/unwind/x86-family/x86-call.c b/src/tool/hpcrun/unwind/x86-family/x86-call.c index 6e652076cc..8b152aa6fa 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-call.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-call.c @@ -97,10 +97,11 @@ process_call(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // As if it were a push // if (call_is_push_next_addr_idiom(xptr, iarg)) { - next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, - UWI_RECIPE(iarg->current)->sp_ra_pos + sizeof(void*), UWI_RECIPE(iarg->current)->bp_ra_pos, - UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos + sizeof(void*), - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + x86recipe_t *xr = UWI_RECIPE(iarg->current); + x86registers reg = xr->reg; + reg.sp_ra_pos += sizeof(void*); + reg.sp_bp_pos += sizeof(void*); + next = new_ui(nextInsn(iarg, xptr), xr->ra_status, ®, iarg->current, m_alloc); } #ifdef USE_CALL_LOOKAHEAD next = call_lookahead(xptr, iarg->current, iarg->ins); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c index ba600905e6..3cb7bfd416 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c @@ -104,24 +104,25 @@ reset_to_canonical_interval(xed_decoded_inst_t *xptr, unwind_interval **next, iarg->canonical_interval = first; } { - ra_loc ra_status = UWI_RECIPE(first)->ra_status; + x86recipe_t *xr = UWI_RECIPE(current); + x86recipe_t *r1 = UWI_RECIPE(first); + x86registers_t reg = r1->reg; + ra_loc ra_status = r1->ra_status; bp_loc bp_status = - (UWI_RECIPE(current)->bp_status == BP_HOSED) ? BP_HOSED : UWI_RECIPE(first)->bp_status; + (xr->reg.bp_status == BP_HOSED) ? BP_HOSED : reg.bp_status; #ifndef FIX_INTERVALS_AT_RETURN - if ((UWI_RECIPE(current)->ra_status != ra_status) || - (UWI_RECIPE(current)->bp_status != bp_status) || - (UWI_RECIPE(current)->sp_ra_pos != UWI_RECIPE(first)->sp_ra_pos) || - (UWI_RECIPE(current)->bp_ra_pos != UWI_RECIPE(first)->bp_ra_pos) || - (UWI_RECIPE(current)->bp_bp_pos != UWI_RECIPE(first)->bp_bp_pos) || - (UWI_RECIPE(current)->sp_bp_pos != UWI_RECIPE(first)->sp_bp_pos)) + if (xr->ra_status != ra_status) || + xr->reg.bp_status != bp_status) || + xr->reg.sp_ra_pos != reg.sp_ra_pos) || + xr->reg.bp_ra_pos != reg.bp_ra_pos) || + xr->reg.bp_bp_pos != reg.bp_bp_pos) || + xr->reg.sp_bp_pos != reg.sp_bp_pos)) #endif { - *next = new_ui(nextInsn(iarg, xptr), - ra_status, UWI_RECIPE(first)->sp_ra_pos, UWI_RECIPE(first)->bp_ra_pos, - bp_status, UWI_RECIPE(first)->sp_bp_pos, UWI_RECIPE(first)->bp_bp_pos, - current, m_alloc); + reg.bp_status = bp_status; + *next = new_ui(nextInsn(iarg, xptr), ra_status, ®, current, m_alloc); set_ui_restored_canonical(*next, UWI_RECIPE(iarg->canonical_interval)->prev_canonical); - if (UWI_RECIPE(first)->bp_status != BP_HOSED && bp_status == BP_HOSED) { + if (r1->reg.bp_status != BP_HOSED && bp_status == BP_HOSED) { set_ui_canonical(*next, iarg->canonical_interval); iarg->canonical_interval = *next; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-enter.c b/src/tool/hpcrun/unwind/x86-family/x86-enter.c index 68b3dc5889..c346bfabf1 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-enter.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-enter.c @@ -79,11 +79,14 @@ process_enter(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *ia } } TMSG(INTV,"new interval from ENTER"); - next = new_ui(nextInsn(iarg, xptr), - RA_STD_FRAME, - UWI_RECIPE(iarg->current)->sp_ra_pos + offset, 8, BP_SAVED, - UWI_RECIPE(iarg->current)->sp_bp_pos + offset - 8, 0, iarg->current, - m_alloc); + x86registers_t reg = UWI_RECIPE(iarg->current)->reg; + reg.sp_ra_pos += offset; + reg.sp_bp_pos = 8; + reg.bp_status = BP_SAVED; + reg.sp_bp_pos += offset - 8; + reg.bp_bp_pos = 0; + + next = new_ui(nextInsn(iarg, xptr), RA_STD_FRAME, ®, iarg->current, m_alloc); hw_tmp->uwi = next; hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_BP_SAVED | diff --git a/src/tool/hpcrun/unwind/x86-family/x86-lea.c b/src/tool/hpcrun/unwind/x86-family/x86-lea.c index 8a13f19e29..773823fd64 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-lea.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-lea.c @@ -62,6 +62,7 @@ process_lea(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg if ((op0_name == XED_OPERAND_REG0)) { x86recipe_t *xr = UWI_RECIPE(next); + x86registers_t reg = xr->reg; xed_reg_enum_t regname = xed_decoded_inst_get_reg(xptr, op0_name); char *next_ins = nextInsn(iarg, xptr); if (x86_isReg_BP(regname)) { @@ -69,15 +70,8 @@ process_lea(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg // action: clobbering the base pointer; begin a new SP_RELATIVE interval // note: we don't check that BP is BP_SAVED; we might have to //======================================================================= - next = new_ui(next_ins, - RA_SP_RELATIVE, - xr->sp_ra_pos, - xr->bp_ra_pos, - BP_HOSED, - xr->sp_bp_pos, - xr->bp_bp_pos, - next, - m_alloc); + reg.bp_status = BP_HOSED; + next = new_ui(next_ins, RA_SP_RELATIVE, ®, next, m_alloc); if (HW_TEST_STATE(hw_tmp->state, HW_BP_SAVED, HW_BP_OVERWRITTEN) && (UWI_RECIPE(hw_tmp->uwi)->sp_ra_pos == xr->sp_ra_pos)) { hw_tmp->uwi = next; @@ -95,15 +89,8 @@ process_lea(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg // begin a new interval where sp_ra_pos is adjusted by the displacement. //======================================================================== xed_int64_t disp = xed_decoded_inst_get_memory_displacement(xptr, mem_op_index); - next = new_ui(next_ins, - xr->ra_status, - xr->sp_ra_pos - disp, - xr->bp_ra_pos, - xr->bp_status, - xr->sp_bp_pos, - xr->bp_bp_pos, - next, - m_alloc); + reg.ra_pos -= disp; + next = new_ui(next_ins, xr->ra_status, ®, next, m_alloc); if (disp < 0) { if (HW_TEST_STATE(hw_tmp->state, 0, HW_SP_DECREMENTED)) { diff --git a/src/tool/hpcrun/unwind/x86-family/x86-leave.c b/src/tool/hpcrun/unwind/x86-family/x86-leave.c index df5f1f7a26..0c7f1ce52e 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-leave.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-leave.c @@ -55,9 +55,9 @@ unwind_interval * process_leave(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg, mem_alloc m_alloc) { + x86_registers_t reg = { 0, 0, BP_UNCHANGED, 0, 0}; unwind_interval *next; - next = new_ui(nextInsn(iarg, xptr), - RA_SP_RELATIVE, 0, 0, BP_UNCHANGED, 0, 0, iarg->current, m_alloc); + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); return next; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-move.c b/src/tool/hpcrun/unwind/x86-family/x86-move.c index fca632d429..e6e3fdfad7 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-move.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-move.c @@ -63,6 +63,8 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar xed_operand_enum_t op0_name = xed_operand_name(op0); xed_operand_enum_t op1_name = xed_operand_name(op1); + x86recipe_t *xr = UWI_RECIPE(iarg->current); + x86registers_t reg = xr->reg; if ((op0_name == XED_OPERAND_MEM0) && (op1_name == XED_OPERAND_REG0)) { //------------------------------------------------------------------------ @@ -79,7 +81,7 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar //-------------------------------------------------------------------- // register being stored is BP (or a copy in RAX) //-------------------------------------------------------------------- - if (UWI_RECIPE(iarg->current)->bp_status == BP_UNCHANGED) { + if (reg.bp_status == BP_UNCHANGED) { //================================================================== // instruction: save caller's BP into the stack // action: create a new interval with @@ -87,13 +89,9 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // (2) BP position relative to the stack pointer set // to the offset from SP //================================================================== - next = new_ui(nextInsn(iarg, xptr), - UWI_RECIPE(iarg->current)->ra_status, UWI_RECIPE(iarg->current)->sp_ra_pos, - UWI_RECIPE(iarg->current)->bp_ra_pos, - BP_SAVED, - xed_decoded_inst_get_memory_displacement(xptr, 0), - UWI_RECIPE(iarg->current)->bp_bp_pos, - iarg->current, m_alloc); + reg.bp_status = BP_SAVED; + reg.bp_ra_pos = xed_decoded_inst_get_memory_displacement(xptr, 0); + next = new_ui(nextInsn(iarg, xptr), xr->ra_status, ®, iarg->current, m_alloc); hw_tmp->uwi = next; hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_BP_SAVED); @@ -109,19 +107,17 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar //-------------------------------------------------------------------- // register being loaded is BP //-------------------------------------------------------------------- - if (UWI_RECIPE(iarg->current)->bp_status != BP_UNCHANGED) { + if (reg.bp_status != BP_UNCHANGED) { int64_t offset = xed_decoded_inst_get_memory_displacement(xptr, 0); xed_reg_enum_t basereg = xed_decoded_inst_get_base_reg(xptr, 0); - if (x86_isReg_SP(basereg) && (offset == UWI_RECIPE(iarg->current)->sp_bp_pos)) { + if (x86_isReg_SP(basereg) && (offset == reg.sp_bp_pos)) { //================================================================ // instruction: restore BP from its saved location in the stack // action: create a new interval with BP status reset to // BP_UNCHANGED //================================================================ - next = new_ui(nextInsn(iarg, xptr), - RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->sp_ra_pos, - UWI_RECIPE(iarg->current)->bp_ra_pos, BP_UNCHANGED, UWI_RECIPE(iarg->current)->sp_bp_pos, - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + reg.bp_status = BP_UNCHANGED; + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); } else { //================================================================ // instruction: BP is loaded from a memory address DIFFERENT from @@ -129,14 +125,12 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // action: create a new interval with BP status reset to // BP_HOSED //================================================================ - if (UWI_RECIPE(iarg->current)->bp_status != BP_HOSED) { - next = new_ui(nextInsn(iarg, xptr), - RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->sp_ra_pos, - UWI_RECIPE(iarg->current)->bp_ra_pos, BP_HOSED, UWI_RECIPE(iarg->current)->sp_bp_pos, - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + if (reg.bp_status != BP_HOSED) { + reg.bp_status = BP_HOSED; + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); if (HW_TEST_STATE(hw_tmp->state, HW_BP_SAVED, HW_BP_OVERWRITTEN) && - (UWI_RECIPE(hw_tmp->uwi)->sp_ra_pos == UWI_RECIPE(next)->sp_ra_pos)) { + (UWI_RECIPE(hw_tmp->uwi)->reg.sp_ra_pos == reg.sp_ra_pos)) { hw_tmp->uwi = next; hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_BP_OVERWRITTEN); @@ -155,10 +149,9 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // action: create a new interval with SP status reset to // BP_UNCHANGED //================================================================ - next = new_ui(nextInsn(iarg, xptr), - RA_SP_RELATIVE, 0, 0, - UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->sp_bp_pos, - UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + reg.sp_ra_pos = 0; + reg.sp_bp_pos = 0; + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); } } } else if ((op0_name == XED_OPERAND_REG0) && (op1_name == XED_OPERAND_REG1)){ @@ -172,20 +165,14 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // instruction: restore SP from BP // action: begin a new SP_RELATIVE interval //==================================================================== - next = new_ui(nextInsn(iarg, xptr), - RA_SP_RELATIVE, UWI_RECIPE(iarg->current)->bp_ra_pos, UWI_RECIPE(iarg->current)->bp_ra_pos, - UWI_RECIPE(iarg->current)->bp_status, UWI_RECIPE(iarg->current)->bp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, - iarg->current, m_alloc); + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); } else if (x86_isReg_BP(reg0) && x86_isReg_SP(reg1)) { //==================================================================== // instruction: initialize BP with value of SP to set up a frame ptr // action: begin a new SP_RELATIVE interval //==================================================================== - next = new_ui(nextInsn(iarg, xptr), - RA_STD_FRAME, - UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->sp_ra_pos, BP_SAVED, - UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->sp_bp_pos, iarg->current, - m_alloc); + reg.bp_status = BP_SAVED; + next = new_ui(nextInsn(iarg, xptr), RA_STD_FRAME, ®, iarg->current, m_alloc); if (HW_TEST_STATE(hw_tmp->state, HW_BP_SAVED, HW_BP_OVERWRITTEN)) { hw_tmp->uwi = next; @@ -198,20 +185,17 @@ process_move(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar //==================================================================== iarg->rax_rbp_equivalent_at = nextInsn(iarg, xptr); } else if (x86_isReg_BP(reg0)) { - if (UWI_RECIPE(iarg->current)->bp_status != BP_HOSED){ + if (reg.bp_status != BP_HOSED){ //================================================================== // instruction: move some NON-special register to BP // state: bp_status is NOT BP_HOSED // action: begin a new RA_SP_RELATIVE,BP_HOSED interval //================================================================== - next = new_ui(nextInsn(iarg, xptr), - RA_SP_RELATIVE, - UWI_RECIPE(iarg->current)->sp_ra_pos, UWI_RECIPE(iarg->current)->sp_ra_pos, BP_HOSED, - UWI_RECIPE(iarg->current)->sp_bp_pos, UWI_RECIPE(iarg->current)->sp_bp_pos, iarg->current, - m_alloc); + reg.bp_status = BP_HOSED; + next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); if (HW_TEST_STATE(hw_tmp->state, HW_BP_SAVED, HW_BP_OVERWRITTEN) && - (UWI_RECIPE(hw_tmp->uwi)->sp_ra_pos == UWI_RECIPE(next)->sp_ra_pos)) { + (UWI_RECIPE(hw_tmp->uwi)->reg.sp_ra_pos == reg.sp_ra_pos)) { hw_tmp->uwi = next; hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_BP_OVERWRITTEN); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-push.c b/src/tool/hpcrun/unwind/x86-family/x86-push.c index 42ba54c355..a9072d063d 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-push.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-push.c @@ -68,8 +68,10 @@ process_push(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar const xed_operand_t *op0 = xed_inst_operand(xi, 0); xed_operand_enum_t op0_name = xed_operand_name(op0); - bp_loc bp_status = UWI_RECIPE(iarg->current)->bp_status; - int sp_bp_pos, size; + x86_recipe_t *xr = UWI_RECIPE(iarg->current); + x86_registers_t reg = xr->reg; + bp_loc bp_status = reg.bp_status; + int size; switch(iclass(xptr)) { case XED_ICLASS_PUSH: size = sizeof(void*); break; @@ -79,18 +81,17 @@ process_push(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar default: assert(0); } - sp_bp_pos = UWI_RECIPE(iarg->current)->sp_bp_pos + size; + reg.sp_ra_pos += size; + reg.sp_bp_pos += size; if (op0_name == XED_OPERAND_REG0) { xed_reg_enum_t regname = xed_decoded_inst_get_reg(xptr, op0_name); if (x86_isReg_BP(regname) && bp_status == BP_UNCHANGED) { - bp_status = BP_SAVED; - sp_bp_pos = 0; + reg.bp_status = BP_SAVED; + reg.sp_bp_pos = 0; } } - next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, - UWI_RECIPE(iarg->current)->sp_ra_pos + size, UWI_RECIPE(iarg->current)->bp_ra_pos, bp_status, - sp_bp_pos, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, m_alloc); + next = new_ui(nextInsn(iarg, xptr), xr->ra_status, ®, iarg->current, m_alloc); return next; } @@ -104,7 +105,8 @@ process_pop(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg const xed_operand_t *op0 = xed_inst_operand(xi, 0); xed_operand_enum_t op0_name = xed_operand_name(op0); - bp_loc bp_status = UWI_RECIPE(iarg->current)->bp_status; + x86_recipe_t *xr = UWI_RECIPE(iarg->current); + x86_registers_t reg = xr->reg; int size; switch(iclass(xptr)) { @@ -115,14 +117,13 @@ process_pop(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg default: assert(0); } + reg.sp_ra_pos += size; + reg.sp_bp_pos += size; if (op0_name == XED_OPERAND_REG0) { xed_reg_enum_t regname = xed_decoded_inst_get_reg(xptr, op0_name); - if (x86_isReg_BP(regname)) bp_status = BP_UNCHANGED; + if (x86_isReg_BP(regname)) reg.bp_status = BP_UNCHANGED; } - next = new_ui(nextInsn(iarg, xptr), UWI_RECIPE(iarg->current)->ra_status, - UWI_RECIPE(iarg->current)->sp_ra_pos + size, UWI_RECIPE(iarg->current)->bp_ra_pos, bp_status, - UWI_RECIPE(iarg->current)->sp_bp_pos + size, UWI_RECIPE(iarg->current)->bp_bp_pos, iarg->current, - m_alloc); + next = new_ui(nextInsn(iarg, xptr), xr->ra_status, ®, iarg->current, m_alloc); return next; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index f2d3ccfe5c..4f1f54a661 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -79,9 +79,7 @@ suspicious_interval(void *pc) } unwind_interval* -new_ui(char *start, - ra_loc ra_status, unsigned int sp_ra_pos, int bp_ra_pos, - bp_loc bp_status, int sp_bp_pos, int bp_bp_pos, +new_ui(char *start, const x86registers_t *reg, unwind_interval *prev, mem_alloc m_alloc) { bitree_uwi_t *u = bitree_uwi_malloc(m_alloc, sizeof(x86recipe_t)); @@ -98,12 +96,7 @@ new_ui(char *start, interval->start = (uintptr_t)start; x86recipe_t* x86recipe = (x86recipe_t*) uwi->recipe; - x86recipe->ra_status = ra_status; - x86recipe->sp_ra_pos = sp_ra_pos; - x86recipe->bp_ra_pos = bp_ra_pos; - x86recipe->bp_status = bp_status; - x86recipe->sp_bp_pos = sp_bp_pos; - x86recipe->bp_bp_pos = bp_bp_pos; + x86recipe->reg = *reg; return u; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h index 5f96341c38..bbe4d35b06 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h @@ -97,9 +97,7 @@ typedef enum { BP_UNCHANGED, BP_SAVED, BP_HOSED } bp_loc; -typedef struct x86recipe_s { - ra_loc ra_status; /* how to find the return address */ - +typedef struct x86registers_s { int sp_ra_pos; /* return address offset from sp */ int sp_bp_pos; /* BP offset from sp */ @@ -107,6 +105,11 @@ typedef struct x86recipe_s { int bp_ra_pos; /* return address offset from bp */ int bp_bp_pos; /* (caller's) BP offset from bp */ +} x86registers_t; + +typedef struct x86recipe_s { + ra_loc ra_status; /* how to find the return address */ + x86registers_t reg; bitree_uwi_t* prev_canonical; int restored_canonical; @@ -134,9 +137,7 @@ extern "C" { } unwind_interval * - new_ui(char *startaddr, - ra_loc ra_status, unsigned int sp_ra_pos, int bp_ra_pos, - bp_loc bp_status, int sp_bp_pos, int bp_bp_pos, + new_ui(char *startaddr, const x86registers_t *reg, unwind_interval *prev, mem_alloc m_alloc); unwind_interval *fluke_ui(char *pc,unsigned int sp_ra_pos, mem_alloc m_alloc); From 32d91a0d7c036c389da2cc8ad78fd33f5254aab9 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Wed, 5 Apr 2017 15:04:42 -0500 Subject: [PATCH 27/85] Fix problem introduced by x86 register changes. Eliminate some duplication evaluations of UWI_RECIPE. --- .../hpcrun/unwind/common/binarytree_uwi.h | 2 +- .../manual-intervals/x86-32bit-icc-variant.c | 14 +++++---- .../manual-intervals/x86-32bit-main.c | 11 +++---- .../manual-intervals/x86-gcc-main64.c | 13 +++++---- .../manual-intervals/x86-intel-align32.c | 15 +++++----- .../manual-intervals/x86-intel-align64.c | 11 +++---- .../x86-intel-composer2013-mic.c | 7 +++-- .../manual-intervals/x86-intel11-f90main.c | 7 +++-- .../manual-intervals/x86-linux-dlresolver.c | 2 +- .../manual-intervals/x86-pgi-mp_pexit.c | 7 +++-- .../hpcrun/unwind/x86-family/x86-addsub.c | 4 +-- .../unwind/x86-family/x86-build-intervals.c | 12 ++++---- src/tool/hpcrun/unwind/x86-family/x86-call.c | 4 +-- .../hpcrun/unwind/x86-family/x86-canonical.c | 25 +++++++++++----- .../hpcrun/unwind/x86-family/x86-cold-path.c | 12 ++++---- .../unwind/x86-family/x86-interval-arg.h | 4 +++ src/tool/hpcrun/unwind/x86-family/x86-lea.c | 4 +-- src/tool/hpcrun/unwind/x86-family/x86-leave.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-push.c | 8 ++--- .../hpcrun/unwind/x86-family/x86-return.c | 24 ++++++++------- .../unwind/x86-family/x86-unwind-interval.c | 27 +++++++++-------- .../unwind/x86-family/x86-unwind-interval.h | 6 +--- .../hpcrun/unwind/x86-family/x86-unwind.c | 29 ++++++++++--------- 23 files changed, 138 insertions(+), 112 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 5f89ca7cdd..ad837b2558 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -51,7 +51,7 @@ typedef struct unwind_interval_t unwind_interval; #define UWI_PREV(btuwi) (bitree_uwi_leftsubtree(btuwi)) #define UWI_START_ADDR(btuwi) (bitree_uwi_interval(btuwi))->start #define UWI_END_ADDR(btuwi) (bitree_uwi_interval(btuwi))->end - +#define MAX_RECIPE_STR 256 //****************************************************************************** // abstract data type diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c index fe105b1e30..8a7d0d7df6 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c @@ -82,14 +82,16 @@ adjust_icc_variant_intervals(char *ins, int len, btuwi_status_t* stat) for(; UWI_RECIPE(ui)->ra_status != RA_STD_FRAME; ui = UWI_NEXT(ui)); - int ra_correction = UWI_RECIPE(ui)->sp_ra_pos - 4; // N.B. The '4' is only correct for 32 bit - int bp_correction = UWI_RECIPE(ui)->sp_bp_pos; + x86recipe_t *xr = UWI_RECIPE(ui); + int ra_correction = xr->reg.sp_ra_pos - 4; // N.B. The '4' is only correct for 32 bit + int bp_correction = xr->reg.sp_bp_pos; for(; ui; ui = UWI_NEXT(ui)) { - UWI_RECIPE(ui)->bp_ra_pos -= ra_correction; - UWI_RECIPE(ui)->bp_bp_pos -= bp_correction; - UWI_RECIPE(ui)->sp_ra_pos -= ra_correction; - UWI_RECIPE(ui)->sp_bp_pos -= bp_correction; + xr = UWI_RECIPE(ui); + xr->reg.bp_ra_pos -= ra_correction; + xr->reg.bp_bp_pos -= bp_correction; + xr->reg.sp_ra_pos -= ra_correction; + xr->reg.sp_bp_pos -= bp_correction; } return 1; } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-main.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-main.c index 1c74810e1c..51963c4365 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-main.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-32bit-main.c @@ -69,11 +69,12 @@ adjust_32bit_main_intervals(char *ins, int len, btuwi_status_t *stat) // this won't fix all of the intervals, but it will fix the ones // that we care about. while(ui) { - if (UWI_RECIPE(ui)->ra_status == RA_STD_FRAME){ - UWI_RECIPE(ui)->bp_ra_pos = 4; - UWI_RECIPE(ui)->bp_bp_pos = 0; - UWI_RECIPE(ui)->sp_ra_pos = 4; - UWI_RECIPE(ui)->sp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_STD_FRAME){ + xr->reg.bp_ra_pos = 4; + xr->reg.bp_bp_pos = 0; + xr->reg.sp_ra_pos = 4; + xr->reg.sp_bp_pos = 0; } ui = UWI_NEXT(ui); } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-gcc-main64.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-gcc-main64.c index 7ce2c82d10..aba4ae7497 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-gcc-main64.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-gcc-main64.c @@ -78,12 +78,13 @@ adjust_gcc_main64_intervals(char *ins, int len, btuwi_status_t *stat) // this is only correct for 64-bit code for(; ui; ui = UWI_NEXT(ui)) { - if (UWI_RECIPE(ui)->ra_status == RA_SP_RELATIVE) continue; - if ((UWI_RECIPE(ui)->ra_status == RA_STD_FRAME) || - (UWI_RECIPE(ui)->ra_status == RA_BP_FRAME)) { - UWI_RECIPE(ui)->ra_status = RA_BP_FRAME; - UWI_RECIPE(ui)->bp_ra_pos = 8; - UWI_RECIPE(ui)->bp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_SP_RELATIVE) continue; + if ((xr->ra_status == RA_STD_FRAME) || + (xr->ra_status == RA_BP_FRAME)) { + xr->ra_status = RA_BP_FRAME; + xr->reg.bp_ra_pos = 8; + xr->reg.bp_bp_pos = 0; } } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align32.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align32.c index 1e810eb109..06c42f89bf 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align32.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align32.c @@ -79,13 +79,14 @@ adjust_intel_align32_intervals(char *ins, int len, btuwi_status_t *stat) // this is only correct for 64-bit code for(; ui; ui = UWI_NEXT(ui)) { - if (UWI_RECIPE(ui)->ra_status == RA_SP_RELATIVE) continue; - if (((UWI_RECIPE(ui)->ra_status == RA_STD_FRAME) || - (UWI_RECIPE(ui)->ra_status == RA_BP_FRAME)) && - (UWI_RECIPE(ui)->bp_status == BP_SAVED)) { - UWI_RECIPE(ui)->ra_status = RA_BP_FRAME; - UWI_RECIPE(ui)->bp_ra_pos = 8; - UWI_RECIPE(ui)->bp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_SP_RELATIVE) continue; + if (((xr->ra_status == RA_STD_FRAME) || + (xr->ra_status == RA_BP_FRAME)) && + (xr->reg.bp_status == BP_SAVED)) { + xr->ra_status = RA_BP_FRAME; + xr->reg.bp_ra_pos = 8; + xr->reg.bp_bp_pos = 0; } } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align64.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align64.c index ba8db5b769..2183e29255 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align64.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-align64.c @@ -78,11 +78,12 @@ adjust_intel_align64_intervals(char *ins, int len, btuwi_status_t *stat) // this is only correct for 64-bit code for(; ui; ui = UWI_NEXT(ui)) { - if (UWI_RECIPE(ui)->ra_status == RA_SP_RELATIVE) continue; - if ((UWI_RECIPE(ui)->ra_status == RA_STD_FRAME) || (UWI_RECIPE(ui)->ra_status == RA_BP_FRAME)) { - UWI_RECIPE(ui)->ra_status = RA_BP_FRAME; - UWI_RECIPE(ui)->bp_ra_pos = 8; - UWI_RECIPE(ui)->bp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_SP_RELATIVE) continue; + if ((xr->ra_status == RA_STD_FRAME) || (xr->ra_status == RA_BP_FRAME)) { + xr->ra_status = RA_BP_FRAME; + xr->reg.bp_ra_pos = 8; + xr->reg.bp_bp_pos = 0; } } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c index 496ce6329d..883e88a571 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c @@ -84,9 +84,10 @@ adjust_intelmic_intervals(char *ins, int len, btuwi_status_t *stat) // this won't fix all of the intervals, but it will fix the one we care about. while(ui) { - if (UWI_RECIPE(ui)->ra_status == RA_STD_FRAME){ - UWI_RECIPE(ui)->bp_ra_pos = 8; - UWI_RECIPE(ui)->bp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_STD_FRAME){ + xr->reg.bp_ra_pos = 8; + xr->reg.bp_bp_pos = 0; } ui = UWI_NEXT(ui); } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel11-f90main.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel11-f90main.c index 338702791b..5f8499cac9 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel11-f90main.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-intel11-f90main.c @@ -70,9 +70,10 @@ adjust_intel11_f90main_intervals(char *ins, int len, btuwi_status_t *stat) // this won't fix all of the intervals, but it will fix the one we care about. while(ui) { - if (UWI_RECIPE(ui)->ra_status == RA_STD_FRAME){ - UWI_RECIPE(ui)->bp_ra_pos = 8; - UWI_RECIPE(ui)->bp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_STD_FRAME){ + xr->reg.bp_ra_pos = 8; + xr->reg.bp_bp_pos = 0; } ui = UWI_NEXT(ui); } diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c index 15e25798d3..00cf197fc0 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c @@ -96,7 +96,7 @@ adjust_dl_runtime_resolve_unwind_intervals(char *ins, int len, btuwi_status_t *s // one of the signatures matched unwind_interval *ui = stat->first; while(ui) { - UWI_RECIPE(ui)->sp_ra_pos += 16; + UWI_RECIPE(ui)->reg.sp_ra_pos += 16; ui = UWI_NEXT(ui); } return 1; diff --git a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c index ea1d69250a..f3d56c64f6 100644 --- a/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c +++ b/src/tool/hpcrun/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c @@ -66,9 +66,10 @@ adjust_pgi_mp_pexit_intervals(char *ins, int len, btuwi_status_t *stat) // this won't fix all of the intervals, but it will fix the one we care about. while(ui) { - if (UWI_RECIPE(ui)->ra_status == RA_SP_RELATIVE){ - UWI_RECIPE(ui)->sp_ra_pos = 0xb0; - UWI_RECIPE(ui)->sp_bp_pos = 0; + x86recipe_t *xr = UWI_RECIPE(ui); + if (xr->ra_status == RA_SP_RELATIVE){ + xr->reg.sp_ra_pos = 0xb0; + xr->reg.sp_bp_pos = 0; } ui = UWI_NEXT(ui); } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-addsub.c b/src/tool/hpcrun/unwind/x86-family/x86-addsub.c index d09f2782a1..152bda7421 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-addsub.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-addsub.c @@ -94,8 +94,8 @@ process_addsub(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *i // 9 December 2007 -- John Mellor-Crummey //------------------------------------------------------------------- } - reg->sp_ra_pos += immedv; - reg->sp_bp_pos += immedv; + reg.sp_ra_pos += immedv; + reg.sp_bp_pos += immedv; next = new_ui(nextInsn(iarg, xptr), istatus, ®, iarg->current, m_alloc); if (immedv > 0) { diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index 1f305884fe..a07fc33220 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -166,7 +166,7 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) } // ensure that we don't move past the end of the interval because of a misaligned instruction - void *nextins = iarg.ins + xed_decoded_inst_get_length(xptr); + void *nextins = nextInsn(&iarg, xptr); if (nextins > end) break; next = process_inst(xptr, &iarg, m_alloc); @@ -199,11 +199,11 @@ static bool x86_ui_same_data(x86recipe_t *proto, x86recipe_t *cand) { return ( (proto->ra_status == cand->ra_status) && - (proto->sp_ra_pos == cand->sp_ra_pos) && - (proto->sp_bp_pos == cand->sp_bp_pos) && - (proto->bp_status == cand->bp_status) && - (proto->bp_ra_pos == cand->bp_ra_pos) && - (proto->bp_bp_pos == cand->bp_bp_pos) ); + (proto->reg.sp_ra_pos == cand->reg.sp_ra_pos) && + (proto->reg.sp_bp_pos == cand->reg.sp_bp_pos) && + (proto->reg.bp_status == cand->reg.bp_status) && + (proto->reg.bp_ra_pos == cand->reg.bp_ra_pos) && + (proto->reg.bp_bp_pos == cand->reg.bp_bp_pos) ); } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-call.c b/src/tool/hpcrun/unwind/x86-family/x86-call.c index 8b152aa6fa..d66f1085e2 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-call.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-call.c @@ -68,7 +68,7 @@ call_is_push_next_addr_idiom(xed_decoded_inst_t* xptr, interval_arg_t* iarg) { void* ins = iarg->ins; void* call_addr = x86_get_branch_target(ins, xptr); - void* next_addr = ((char *) ins) + xed_decoded_inst_get_length(xptr); + void* next_addr = nextInsn(iarg, xptr); return (call_addr == next_addr); } @@ -98,7 +98,7 @@ process_call(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar // if (call_is_push_next_addr_idiom(xptr, iarg)) { x86recipe_t *xr = UWI_RECIPE(iarg->current); - x86registers reg = xr->reg; + x86registers_t reg = xr->reg; reg.sp_ra_pos += sizeof(void*); reg.sp_bp_pos += sizeof(void*); next = new_ui(nextInsn(iarg, xptr), xr->ra_status, ®, iarg->current, m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c index 3cb7bfd416..1f4941b686 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c @@ -82,19 +82,22 @@ reset_to_canonical_interval(xed_decoded_inst_t *xptr, unwind_interval **next, // if the return is not the last instruction in the interval, // set up an interval for code after the return - if (iarg->ins + xed_decoded_inst_get_length(xptr) < iarg->end){ + if ((void*)nextInsn(iarg, xptr) < iarg->end) { if (iarg->bp_frames_found) { // look for first bp frame first = find_first_bp_frame(first); set_ui_canonical(first, iarg->canonical_interval); iarg->canonical_interval = first; } else if (iarg->canonical_interval) { - if (hw_uwi && UWI_RECIPE(hw_uwi)->bp_status != BP_UNCHANGED) - if ((UWI_RECIPE(iarg->canonical_interval)->bp_status == BP_UNCHANGED) || - ((UWI_RECIPE(iarg->canonical_interval)->bp_status == BP_SAVED) && - (UWI_RECIPE(hw_uwi)->bp_status == BP_HOSED))) { + x86recipe_t *xr = hw_uwi ? UWI_RECIPE(hw_uwi) : NULL; + if (xr && xr->reg.bp_status != BP_UNCHANGED) { + bp_loc bp_status = UWI_RECIPE(iarg->canonical_interval)->reg.bp_status; + if ((bp_status == BP_UNCHANGED) || + ((bp_status == BP_SAVED) && + (xr->reg.bp_status == BP_HOSED))) { set_ui_canonical(hw_uwi, iarg->canonical_interval); iarg->canonical_interval = hw_uwi; + } } first = iarg->canonical_interval; } else { @@ -151,10 +154,16 @@ find_first_bp_frame(unwind_interval *first) unwind_interval * find_first_non_decr(unwind_interval *first, unwind_interval *highwatermark) { - while (first && UWI_NEXT(first) && - (UWI_RECIPE(first)->sp_ra_pos <= UWI_RECIPE(UWI_NEXT(first))->sp_ra_pos) && + if (first == NULL) + return NULL; + int sp_ra_pos = UWI_RECIPE(first)->reg.sp_ra_pos; + int next_ra_pos; + unwind_interval *next; + while ((next = UWI_NEXT(first)) && + (sp_ra_pos <= (next_ra_pos = UWI_RECIPE(next)->reg.sp_ra_pos)) && (first != highwatermark)) { - first = UWI_NEXT(first); + first = next; + sp_ra_pos = next_ra_pos; } return first; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c index 17202357b5..321f6df475 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c @@ -100,8 +100,9 @@ void hpcrun_cold_code_fixup(unwind_interval *current, unwind_interval *warm) { TMSG(COLD_CODE," --fixing up current intervals with the warm interval"); - int ra_offset = UWI_RECIPE(warm)->sp_ra_pos; - int bp_offset = UWI_RECIPE(warm)->sp_bp_pos; + x86recipe_t *xr = UWI_RECIPE(warm); + int ra_offset = xr->reg.sp_ra_pos; + int bp_offset = xr->reg.sp_bp_pos; if (ra_offset == 0) { TMSG(COLD_CODE," --warm code calling routine has offset 0," " so no action taken"); @@ -109,8 +110,9 @@ hpcrun_cold_code_fixup(unwind_interval *current, unwind_interval *warm) } TMSG(COLD_CODE," --updating sp_ra_pos with offset %d",ra_offset); for(unwind_interval *intv = current; intv; intv = UWI_PREV(intv)) { - UWI_RECIPE(intv)->sp_ra_pos += ra_offset; - UWI_RECIPE(intv)->sp_bp_pos += bp_offset; + xr = UWI_RECIPE(intv); + xr->reg.sp_ra_pos += ra_offset; + xr->reg.sp_bp_pos += bp_offset; } } @@ -119,7 +121,7 @@ bool hpcrun_is_cold_code(xed_decoded_inst_t *xptr, interval_arg_t *iarg) { void *ins = iarg->ins; - char *ins_end = ins + xed_decoded_inst_get_length(xptr); + char *ins_end = nextInsn(iarg, xptr); if (ins_end == iarg->end) { void *branch_target = x86_get_branch_target(ins,xptr); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h b/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h index cf21b6c297..efd15ad6e8 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h @@ -73,4 +73,8 @@ typedef struct interval_arg_t { void *return_addr; // A place to store void * return values. } interval_arg_t; +static inline char *nextInsn(interval_arg_t *iarg, xed_decoded_inst_t *xptr) { + return iarg->ins + xed_decoded_inst_get_length(xptr); +} + #endif // X86_INTERVAL_ARG_H diff --git a/src/tool/hpcrun/unwind/x86-family/x86-lea.c b/src/tool/hpcrun/unwind/x86-family/x86-lea.c index 773823fd64..857a2aeef5 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-lea.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-lea.c @@ -73,7 +73,7 @@ process_lea(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg reg.bp_status = BP_HOSED; next = new_ui(next_ins, RA_SP_RELATIVE, ®, next, m_alloc); if (HW_TEST_STATE(hw_tmp->state, HW_BP_SAVED, HW_BP_OVERWRITTEN) && - (UWI_RECIPE(hw_tmp->uwi)->sp_ra_pos == xr->sp_ra_pos)) { + (UWI_RECIPE(hw_tmp->uwi)->reg.sp_ra_pos == xr->reg.sp_ra_pos)) { hw_tmp->uwi = next; hw_tmp->state = HW_NEW_STATE(hw_tmp->state, HW_BP_OVERWRITTEN); } @@ -89,7 +89,7 @@ process_lea(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg // begin a new interval where sp_ra_pos is adjusted by the displacement. //======================================================================== xed_int64_t disp = xed_decoded_inst_get_memory_displacement(xptr, mem_op_index); - reg.ra_pos -= disp; + reg.sp_ra_pos -= disp; next = new_ui(next_ins, xr->ra_status, ®, next, m_alloc); if (disp < 0) { diff --git a/src/tool/hpcrun/unwind/x86-family/x86-leave.c b/src/tool/hpcrun/unwind/x86-family/x86-leave.c index 0c7f1ce52e..7f0fb6da1c 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-leave.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-leave.c @@ -55,7 +55,7 @@ unwind_interval * process_leave(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg, mem_alloc m_alloc) { - x86_registers_t reg = { 0, 0, BP_UNCHANGED, 0, 0}; + x86registers_t reg = { 0, 0, BP_UNCHANGED, 0, 0}; unwind_interval *next; next = new_ui(nextInsn(iarg, xptr), RA_SP_RELATIVE, ®, iarg->current, m_alloc); return next; diff --git a/src/tool/hpcrun/unwind/x86-family/x86-push.c b/src/tool/hpcrun/unwind/x86-family/x86-push.c index a9072d063d..39ad5a929b 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-push.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-push.c @@ -68,8 +68,8 @@ process_push(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iar const xed_operand_t *op0 = xed_inst_operand(xi, 0); xed_operand_enum_t op0_name = xed_operand_name(op0); - x86_recipe_t *xr = UWI_RECIPE(iarg->current); - x86_registers_t reg = xr->reg; + x86recipe_t *xr = UWI_RECIPE(iarg->current); + x86registers_t reg = xr->reg; bp_loc bp_status = reg.bp_status; int size; @@ -105,8 +105,8 @@ process_pop(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg const xed_operand_t *op0 = xed_inst_operand(xi, 0); xed_operand_enum_t op0_name = xed_operand_name(op0); - x86_recipe_t *xr = UWI_RECIPE(iarg->current); - x86_registers_t reg = xr->reg; + x86recipe_t *xr = UWI_RECIPE(iarg->current); + x86registers_t reg = xr->reg; int size; switch(iclass(xptr)) { diff --git a/src/tool/hpcrun/unwind/x86-family/x86-return.c b/src/tool/hpcrun/unwind/x86-family/x86-return.c index 8ce99508ad..c83e29dd4c 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-return.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-return.c @@ -69,15 +69,16 @@ process_return(xed_decoded_inst_t *xptr, bool irdebug, interval_arg_t *iarg, unwind_interval *next = iarg->current; if (UWI_RECIPE(iarg->current)->ra_status == RA_SP_RELATIVE) { - int offset = UWI_RECIPE(iarg->current)->sp_ra_pos; + int offset = UWI_RECIPE(iarg->current)->reg.sp_ra_pos; if (offset != 0) { unwind_interval *u = iarg->current; for (;;) { // fix offset - UWI_RECIPE(u)->sp_ra_pos -= offset; - UWI_RECIPE(u)->sp_bp_pos -= offset; + x86recipe_t *xr = UWI_RECIPE(u); + xr->reg.sp_ra_pos -= offset; + xr->reg.sp_bp_pos -= offset; - if (UWI_RECIPE(u)->restored_canonical == 1) { + if (xr->restored_canonical == 1) { break; } u = UWI_PREV(u); @@ -86,18 +87,19 @@ process_return(xed_decoded_inst_t *xptr, bool irdebug, interval_arg_t *iarg, } } } - if (UWI_RECIPE(iarg->current)->bp_status == BP_HOSED) { + if (UWI_RECIPE(iarg->current)->reg.bp_status == BP_HOSED) { // invariant: when we reach a return, if the BP was overwritten, it // should have been restored. this must be incorrect. let's reset // the bp status for all intervals leading up to this one since // the last canonical restore. unwind_interval *u = iarg->current; for (;;) { - if (UWI_RECIPE(u)->bp_status != BP_HOSED) { + x86recipe_t *xr = UWI_RECIPE(u); + if (xr->reg.bp_status != BP_HOSED) { break; } - UWI_RECIPE(u)->bp_status = BP_UNCHANGED; - if (UWI_RECIPE(u)->restored_canonical == 1) { + xr->reg.bp_status = BP_UNCHANGED; + if (xr->restored_canonical == 1) { break; } u = UWI_PREV(u); @@ -107,15 +109,15 @@ process_return(xed_decoded_inst_t *xptr, bool irdebug, interval_arg_t *iarg, } } } - if (UWI_RECIPE(iarg->current)->bp_status == BP_SAVED) { + if (UWI_RECIPE(iarg->current)->reg.bp_status == BP_SAVED) { suspicious_interval(iarg->ins); } - if (iarg->ins + xed_decoded_inst_get_length(xptr) < iarg->end) { + if ((void*)nextInsn(iarg, xptr) < iarg->end) { //------------------------------------------------------------------------- // the return is not the last instruction in the interval; // set up an interval for code after the return //------------------------------------------------------------------------- - if (plt_is_next(iarg->ins + xed_decoded_inst_get_length(xptr))) { + if (plt_is_next(nextInsn(iarg, xptr))) { //------------------------------------------------------------------------- // the code following the return is a program linkage table. each entry in // the program linkage table should be invoked with the return address at diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index 4f1f54a661..1404ee4f7e 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -79,7 +79,7 @@ suspicious_interval(void *pc) } unwind_interval* -new_ui(char *start, const x86registers_t *reg, +new_ui(char *start, ra_loc ra_status, const x86registers_t *reg, unwind_interval *prev, mem_alloc m_alloc) { bitree_uwi_t *u = bitree_uwi_malloc(m_alloc, sizeof(x86recipe_t)); @@ -96,6 +96,7 @@ new_ui(char *start, const x86registers_t *reg, interval->start = (uintptr_t)start; x86recipe_t* x86recipe = (x86recipe_t*) uwi->recipe; + x86recipe->ra_status = ra_status; x86recipe->reg = *reg; return u; @@ -128,11 +129,11 @@ fluke_ui(char *loc, unsigned int pos, mem_alloc m_alloc) x86recipe_t* x86recipe = (x86recipe_t*) uwi->recipe; x86recipe->ra_status = RA_SP_RELATIVE; - x86recipe->sp_ra_pos = pos; - x86recipe->bp_ra_pos = 0; - x86recipe->bp_status = 0; - x86recipe->sp_bp_pos = 0; - x86recipe->bp_bp_pos = 0; + x86recipe->reg.sp_ra_pos = pos; + x86recipe->reg.bp_ra_pos = 0; + x86recipe->reg.bp_status = 0; + x86recipe->reg.sp_bp_pos = 0; + x86recipe->reg.bp_bp_pos = 0; return u; } @@ -146,16 +147,18 @@ link_ui(unwind_interval *current, unwind_interval *next) static void _dump_ui_str(unwind_interval *u, char *buf, size_t len) { + x86recipe_t *xr = UWI_RECIPE(u); + x86registers_t reg = xr->reg; snprintf(buf, len, "UNW: start=%p end =%p ra_status=%s sp_ra_pos=%d sp_bp_pos=%d bp_status=%s " "bp_ra_pos = %d bp_bp_pos=%d next=%p prev=%p prev_canonical=%p rest_canon=%d\n" "has_tail_calls = %d", (void *) UWI_START_ADDR(u), (void *) UWI_END_ADDR(u), - ra_status_string(UWI_RECIPE(u)->ra_status), - UWI_RECIPE(u)->sp_ra_pos, UWI_RECIPE(u)->sp_bp_pos, - bp_status_string(UWI_RECIPE(u)->bp_status), - UWI_RECIPE(u)->bp_ra_pos, UWI_RECIPE(u)->bp_bp_pos, + ra_status_string(xr->ra_status), + reg.sp_ra_pos, reg.sp_bp_pos, + bp_status_string(reg.bp_status), + reg.bp_ra_pos, reg.bp_bp_pos, UWI_NEXT(u), UWI_PREV(u), - UWI_RECIPE(u)->prev_canonical, UWI_RECIPE(u)->restored_canonical, + xr->prev_canonical, xr->restored_canonical, UWI_RECIPE(u)->has_tail_calls); } @@ -224,7 +227,7 @@ x86recipe_tostr(void* recipe, char str[]) // TODO x86recipe_t* x86recipe = (x86recipe_t*)recipe; snprintf(str, MAX_RECIPE_STR, "%s%d%s%s", - "x86recipe ", x86recipe->sp_ra_pos, + "x86recipe ", x86recipe->reg.sp_ra_pos, ": tail_call = ", x86recipe->has_tail_calls? "true": "false"); } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h index bbe4d35b06..72eccd2ce8 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h @@ -132,12 +132,8 @@ extern "C" { void set_ui_restored_canonical(unwind_interval *u, unwind_interval *value); - static inline char *nextInsn(interval_arg_t *iarg, xed_decoded_int_t *xptr) { - return iarg->ins + xed_decoded_inst_get_length(xptr); - } - unwind_interval * - new_ui(char *startaddr, const x86registers_t *reg, + new_ui(char *startaddr, ra_loc ra_status, const x86registers_t *reg, unwind_interval *prev, mem_alloc m_alloc); unwind_interval *fluke_ui(char *pc,unsigned int sp_ra_pos, mem_alloc m_alloc); diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 8eab0a0107..09bd55e290 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -463,19 +463,20 @@ unw_step_sp(hpcrun_unw_cursor_t* cursor) void* sp = cursor->sp; void* pc = cursor->pc_unnorm; unwind_interval* uw = cursor->unwr_info.btuwi; + x86recipe_t *xr = UWI_RECIPE(uw); TMSG(UNW,"step_sp: cursor { bp=%p, sp=%p, pc=%p }", bp, sp, pc); if (MYDBG) { dump_ui(uw, 0); } void** next_bp = NULL; - void** next_sp = (void **)(sp + UWI_RECIPE(uw)->sp_ra_pos); + void** next_sp = (void **)(sp + xr->reg.sp_ra_pos); void* ra_loc = (void*) next_sp; void* next_pc = *next_sp; TMSG(UNW," step_sp: potential next cursor next_sp=%p ==> next_pc = %p", next_sp, next_pc); - if (UWI_RECIPE(uw)->bp_status == BP_UNCHANGED){ + if (xr->reg.bp_status == BP_UNCHANGED){ next_bp = bp; TMSG(UNW," step_sp: unwind step has BP_UNCHANGED ==> next_bp=%p", next_bp); } @@ -485,7 +486,7 @@ unw_step_sp(hpcrun_unw_cursor_t* cursor) // save area in the activation frame according to the unwind // information produced by binary analysis //----------------------------------------------------------- - next_bp = (void **)(sp + UWI_RECIPE(uw)->sp_bp_pos); + next_bp = (void **)(sp + xr->reg.sp_bp_pos); TMSG(UNW," step_sp: unwind next_bp loc = %p", next_bp); next_bp = *next_bp; TMSG(UNW," step_sp: sp unwind next_bp val = %p", next_bp); @@ -516,8 +517,9 @@ unw_step_sp(hpcrun_unw_cursor_t* cursor) return STEP_ERROR; } unwind_interval* uw = cursor->unwr_info.btuwi; - if ((RA_BP_FRAME == UWI_RECIPE(uw)->ra_status) || - (RA_STD_FRAME == UWI_RECIPE(uw)->ra_status)) { // Makes sense to sanity check BP, do it + x86recipe_t *xr = UWI_RECIPE(uw); + if ((RA_BP_FRAME == xr->ra_status) || + (RA_STD_FRAME == xr->ra_status)) { // Makes sense to sanity check BP, do it //----------------------------------------------------------- // if value of BP reloaded from the save area does not point // into the stack, then it cannot possibly be useful as a frame @@ -557,17 +559,16 @@ unw_step_sp(hpcrun_unw_cursor_t* cursor) static step_state unw_step_bp(hpcrun_unw_cursor_t* cursor) { - void *sp, **bp, *pc; void **next_sp, **next_bp, *next_pc; - unwind_interval *uw; - TMSG(UNW_STRATEGY,"Using BP step"); // current frame - bp = cursor->bp; - sp = cursor->sp; - pc = cursor->pc_unnorm; - uw = cursor->unwr_info.btuwi; + void **bp = cursor->bp; + void *sp = cursor->sp; + void *pc = cursor->pc_unnorm; + unwind_interval *uw = cursor->unwr_info.btuwi; + x86recipe_t *xr = UWI_RECIPE(uw); + TMSG(UNW,"step_bp: cursor { bp=%p, sp=%p, pc=%p }", bp, sp, pc); if (MYDBG) { dump_ui(uw, 0); } @@ -586,9 +587,9 @@ unw_step_bp(hpcrun_unw_cursor_t* cursor) } } // bp relative - next_sp = (void **)((void *)bp + UWI_RECIPE(uw)->bp_bp_pos); + next_sp = (void **)((void *)bp + xr->reg.bp_bp_pos); next_bp = *next_sp; - next_sp = (void **)((void *)bp + UWI_RECIPE(uw)->bp_ra_pos); + next_sp = (void **)((void *)bp + xr->reg.bp_ra_pos); void* ra_loc = (void*) next_sp; next_pc = *next_sp; next_sp += 1; From 615685a89c38bd3e5835db15f745e03d7ee698e9 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 6 Apr 2017 14:38:38 -0500 Subject: [PATCH 28/85] Eliminate some redundant calculation. --- src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c | 2 +- src/tool/hpcrun/unwind/x86-family/x86-unwind.c | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index a07fc33220..55493a801e 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -177,7 +177,7 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) if (noisy) dump_ui(iarg.current, true); } - iarg.ins += xed_decoded_inst_get_length(xptr); + iarg.ins = nextins; UWI_END_ADDR(iarg.current) = (uintptr_t)iarg.ins; } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 09bd55e290..0ec6d87e0c 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -516,8 +516,6 @@ unw_step_sp(hpcrun_unw_cursor_t* cursor) return STEP_ERROR; } - unwind_interval* uw = cursor->unwr_info.btuwi; - x86recipe_t *xr = UWI_RECIPE(uw); if ((RA_BP_FRAME == xr->ra_status) || (RA_STD_FRAME == xr->ra_status)) { // Makes sense to sanity check BP, do it //----------------------------------------------------------- From b87c16ff2357a65d97a0aac11f4d6c26d5023568 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 6 Apr 2017 16:50:59 -0500 Subject: [PATCH 29/85] Clean up no-trampoline. --- src/tool/hpcrun/unwind/common/backtrace.c | 35 +++++++++++------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index 92215583de..f856fa69db 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -203,8 +203,7 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, hpcrun_unw_cursor_t cursor; hpcrun_unw_init_cursor(&cursor, context); - int unw_len = 0; - while (true) { + do { void* ip; hpcrun_unw_get_ip_unnorm_reg(&cursor, &ip); @@ -217,8 +216,8 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, hpcrun_unw_drop(); } - if (hpcrun_trampoline_at_entry(ip)) { - if (unw_len == 0){ + else if (hpcrun_trampoline_at_entry(ip)) { + if (ret == STEP_ERROR){ // we are about to enter the trampoline code to synchronously // record a return. for now, simply do nothing ... // FIXME: with a bit more effort, we could charge @@ -247,25 +246,25 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, td->btbuf_cur->the_function = cursor.the_function; - frame_t* prev = td->btbuf_cur; - td->btbuf_cur++; - unw_len++; + frame_t* prev = td->btbuf_cur++; ret = hpcrun_unw_step(&cursor); - if (ret == STEP_TROLL) { + switch (ret) { + case STEP_TROLL: bt->n_trolls++; - } - if (ret <= 0) { - if (ret == STEP_ERROR) { - hpcrun_stats_num_samples_dropped_inc(); - } - else { // STEP_STOP - bt->fence = cursor.fence; - } + /* fallthrough */ + default: + prev->ra_loc = hpcrun_unw_get_ra_loc(&cursor); + break; + + case STEP_ERROR: + hpcrun_stats_num_samples_dropped_inc(); + break; + case STEP_STOP: + bt->fence = cursor.fence; break; } - prev->ra_loc = hpcrun_unw_get_ra_loc(&cursor); - } + } while (ret != STEP_ERROR && ret != STEP_STOP); TMSG(FENCE, "backtrace generation detects fence = %s", fence_enum_name(bt->fence)); From 5cde5991a6a803030b7434ece8df00c1d991e657 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 7 Apr 2017 18:23:00 -0500 Subject: [PATCH 30/85] Initialize the libunwind cursor with local_signal to address the problem case where the program stops at the first function instruction. --- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index bfedeb81f5..b405ac3079 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -184,7 +184,7 @@ hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* h_cursor, void* context) unw_context_t *ctx = (unw_context_t *) context; unw_word_t pc; - if (ctx != NULL && unw_init_local(cursor, ctx) == 0) { + if (ctx != NULL && unw_init_local_signal(cursor, ctx) == 0) { unw_get_reg(cursor, UNW_REG_IP, &pc); } else { pc = 0; From 0d0d13834befacd54f5be07618aafbf2abfbe67c Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Sun, 9 Apr 2017 12:49:16 -0500 Subject: [PATCH 31/85] Catch up to master. --- src/tool/hpcrun/loadmap.c | 40 ++-- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 171 ++++++++++++------ 2 files changed, 139 insertions(+), 72 deletions(-) diff --git a/src/tool/hpcrun/loadmap.c b/src/tool/hpcrun/loadmap.c index 330aaa2d6e..3650fa22d6 100644 --- a/src/tool/hpcrun/loadmap.c +++ b/src/tool/hpcrun/loadmap.c @@ -58,7 +58,9 @@ #include #include -#define LOADMAP_DEBUG 1 +#define LOADMAP_DEBUG 0 + +#define UW_RECIPE_MAP_DEBUG 0 static hpcrun_loadmap_t s_loadmap; static hpcrun_loadmap_t* s_loadmap_ptr = NULL; @@ -437,6 +439,11 @@ hpcrun_loadmap_map(dso_info_t* dso) lm->dso_info = dso; hpcrun_loadmap_pushFront(lm); +#if UW_RECIPE_MAP_DEBUG + fprintf(stderr, "hpcrun_loadmap_map: '%s' start=%p end=%p\n", + dso->name, lm->dso_info->start_addr, lm->dso_info->end_addr); +#endif + hpcrun_loadmap_notify_map(lm->dso_info->start_addr, lm->dso_info->end_addr); } @@ -454,6 +461,12 @@ hpcrun_loadmap_unmap(load_module_t* lm) TMSG(LOADMAP,"hpcrun_loadmap_unmap: '%s'", lm->name); dso_info_t* old_dso = lm->dso_info; + + if (old_dso == NULL) return; // nothing to do! + + void *start_addr = old_dso->start_addr; + void *end_addr = old_dso->end_addr; + lm->dso_info = NULL; // tallent: For now, do not move the loadmap to the back of the @@ -463,21 +476,24 @@ hpcrun_loadmap_unmap(load_module_t* lm) //hpcrun_loadmap_moveToBack(lm); // add old_dso to the head of the s_dso_free_list - if (old_dso) { - old_dso->next = s_dso_free_list; - old_dso->prev = NULL; - if (s_dso_free_list) { - s_dso_free_list->prev = old_dso; - } - s_dso_free_list = old_dso; - TMSG(LOADMAP, "Deleting unw intervals"); + old_dso->next = s_dso_free_list; + old_dso->prev = NULL; + if (s_dso_free_list) { + s_dso_free_list->prev = old_dso; + } + s_dso_free_list = old_dso; + TMSG(LOADMAP, "Deleting unw intervals"); #if LOADMAP_DEBUG - assert((uintptr_t)old_dso->end_addr < UINTPTR_MAX) ; + assert((uintptr_t)end_addr < UINTPTR_MAX) ; #endif - hpcrun_loadmap_notify_unmap(old_dso->start_addr, old_dso->end_addr); - } +#if UW_RECIPE_MAP_DEBUG + fprintf(stderr, "hpcrun_loadmap_unmap: '%s' start=%p end=%p\n", + lm->name, start_addr, end_addr); +#endif + + hpcrun_loadmap_notify_unmap(start_addr, end_addr); } diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 8029169272..c6d6bc2354 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -54,13 +54,27 @@ */ //--------------------------------------------------------------------- -// system include files +// debugging support //--------------------------------------------------------------------- +#define UW_RECIPE_MAP_DEBUG 0 + +#define UW_RECIPE_MAP_DEBUG_VERBOSE 0 + +#if UW_RECIPE_MAP_DEBUG_VERBOSE +#undef UW_RECIPE_MAP_DEBUG +#define UW_RECIPE_MAP_DEBUG 1 +#endif + + #if UW_RECIPE_MAP_DEBUG #include +#include +#include #endif + + //--------------------------------------------------------------------- // local include files //--------------------------------------------------------------------- @@ -99,10 +113,6 @@ #define SKIPLIST_HEIGHT 8 -#define UW_RECIPE_MAP_DEBUG 0 - - -#define UW_RECIPE_MAP_DEBUG 0 #define NUM_NODES 10 /* @@ -361,51 +371,25 @@ ildmod_stat_maxspaces() return ILdMod_Stat_MaxSpaces; } -/* - * Compute a string representation of map and store result in str. - */ -/* - * pre-condition: *nodeval is an ilmstat_btuwi_pair_t. - */ +//--------------------------------------------------------------------- +// private operations +//--------------------------------------------------------------------- +#if UW_RECIPE_MAP_DEBUG static void -cskl_ilmstat_btuwi_node_tostr(void* nodeval, int node_height, int max_height, - char str[], int max_cskl_str_len) +uw_recipe_map_report(const char *op, void *start, void *end) { - cskl_levels_tostr(node_height, max_height, str, max_cskl_str_len); - - // build needed indentation to print the binary tree inside the skiplist: - char cskl_itpair_treeIndent[MAX_CSKIPLIST_STR]; - cskl_itpair_treeIndent[0] = '\0'; - int indentlen= strlen(cskl_itpair_treeIndent); - strncat(cskl_itpair_treeIndent, str, MAX_CSKIPLIST_STR - indentlen -1); - indentlen= strlen(cskl_itpair_treeIndent); - strncat(cskl_itpair_treeIndent, ildmod_stat_maxspaces(), MAX_CSKIPLIST_STR - indentlen -1); - - // print the binary tree with the proper indentation: - char itpairstr[max_ilmstat_btuwi_pair_len()]; - ilmstat_btuwi_pair_t* node_val = (ilmstat_btuwi_pair_t*)nodeval; - ilmstat_btuwi_pair_tostr_indent(node_val, cskl_itpair_treeIndent, itpairstr); - - // add new line: - cskl_append_node_str(itpairstr, str, max_cskl_str_len); + fprintf(stderr, "%s [start=%p, end=%p)\n", op, start, end); } - -void -uw_recipe_map_print(void) -{ - char buf[MAX_CSKIPLIST_STR]; - cskl_tostr(addr2recipe_map, cskl_ilmstat_btuwi_node_tostr, buf, MAX_CSKIPLIST_STR); - printf("%s", buf); -} - -//--------------------------------------------------------------------- -// private operations -//--------------------------------------------------------------------- +#else +#define uw_recipe_map_report(op, start, end) +#endif static void uw_recipe_map_poison(uintptr_t start, uintptr_t end) { + uw_recipe_map_report("uw_recipe_map_poison", (void *) start, (void *) end); + ilmstat_btuwi_pair_t* itpair = ilmstat_btuwi_pair_build(start, end, NULL, NEVER, NULL, my_alloc); csklnode_t *node = cskl_insert(addr2recipe_map, itpair, my_alloc); @@ -451,14 +435,16 @@ uw_recipe_map_unpoison(uintptr_t start, uintptr_t end) { ilmstat_btuwi_pair_t* ilmstat_btuwi = uw_recipe_map_inrange_find(start); + uw_recipe_map_report("uw_recipe_map_unpoison", (void *) start, (void *) end); + #if UW_RECIPE_MAP_DEBUG assert(ilmstat_btuwi != NULL); // start should be in range of some poisoned interval -#endif -#if UW_RECIPE_MAP_DEBUG ildmod_stat_t* ilmstat = ilmstat_btuwi->ilmstat; + assert(ilmstat != NULL); assert(atomic_load_explicit(&ilmstat->stat, memory_order_relaxed) == NEVER); // should be a poisoned node #endif + interval_t* interval = ilmstat_btuwi->ilmstat->interval; uintptr_t s0 = interval->start; uintptr_t e0 = interval->end; @@ -472,41 +458,69 @@ static void uw_recipe_map_repoison(uintptr_t start, uintptr_t end) { if (start > 0) { - ilmstat_btuwi_pair_t* itp_left = uw_recipe_map_inrange_find(start - 1); - if (itp_left) { // poisoned interval on the left - interval_t* interval_left = itp_left->ilmstat->interval; - start = interval_left->start; - uw_recipe_map_cmp_del_bulk_unsynch(itp_left, itp_left); + ilmstat_btuwi_pair_t* ileft = uw_recipe_map_inrange_find(start - 1); + if (ileft) { + ildmod_stat_t* ilmstat = ileft->ilmstat; + if ((ilmstat->interval->end == start) && + (NEVER == atomic_load_explicit(&ilmstat->stat, memory_order_acquire))) { + // poisoned interval adjacent on the left + start = ilmstat->interval->start; + uw_recipe_map_cmp_del_bulk_unsynch(ileft, ileft); + } } } if (end < UINTPTR_MAX) { - ilmstat_btuwi_pair_t* itp_right = uw_recipe_map_inrange_find(end); - if (itp_right) { // poisoned interval on the right - interval_t* interval_right = itp_right->ilmstat->interval; - end = interval_right->start; - uw_recipe_map_cmp_del_bulk_unsynch(itp_right, itp_right); + ilmstat_btuwi_pair_t* iright = uw_recipe_map_inrange_find(end+1); + if (iright) { + ildmod_stat_t* ilmstat = iright->ilmstat; + if ((ilmstat->interval->start == end) && + (NEVER == atomic_load_explicit(&ilmstat->stat, memory_order_acquire))) { + // poisoned interval adjacent on the right + end = ilmstat->interval->end; + uw_recipe_map_cmp_del_bulk_unsynch(iright, iright); + } } } - uw_recipe_map_poison(start,end); + uw_recipe_map_poison(start, end); } +#if UW_RECIPE_MAP_DEBUG_VERBOSE +static void +uw_recipe_map_report_and_dump(const char *op, void *start, void *end) +{ + uw_recipe_map_report(op, start, end); + uw_recipe_map_print(); +} +#else +#define uw_recipe_map_report_and_dump(op, start, end) +#endif + + static void uw_recipe_map_notify_map(void *start, void *end) { - uw_recipe_map_unpoison((uintptr_t)start, (uintptr_t)end); + uw_recipe_map_report_and_dump("*** map: before unpoisoning", start, end); + + uw_recipe_map_unpoison((uintptr_t)start, (uintptr_t)end); + + uw_recipe_map_report_and_dump("*** map: after unpoisoning", start, end); } static void uw_recipe_map_notify_unmap(void *start, void *end) { + uw_recipe_map_report_and_dump("*** unmap: before poisoning", start, end); + // Remove intervals in the range [start, end) from the unwind interval tree. TMSG(UW_RECIPE_MAP, "uw_recipe_map_delete_range from %p to %p", start, end); - cskl_inrange_del_bulk_unsynch(addr2recipe_map, start, ((void*)(intptr_t)end - 1), cskl_ilmstat_btuwi_free); + cskl_inrange_del_bulk_unsynch(addr2recipe_map, start, ((void*)((char *) end) - 1), cskl_ilmstat_btuwi_free); // join poisoned intervals here. uw_recipe_map_repoison((uintptr_t)start, (uintptr_t)end); + + uw_recipe_map_report_and_dump("*** unmap: after poisoning", start, end); } static void @@ -539,13 +553,12 @@ uw_recipe_map_init(void) { #if UW_RECIPE_MAP_DEBUG - printf("DXN_DBG uw_recipe_map_init: call a2r_map_init(my_alloc) ... \n"); + fprintf(stderr, "uw_recipe_map_init: call a2r_map_init(my_alloc) ... \n"); #endif cskl_init(); #if UW_RECIPE_MAP_DEBUG - printf("DXN_DGB %s: mcs_init(&GFL_lock), call bitree_uwi_init() \n", __func__); - fflush(stdout); + fprintf(stderr, "%s: mcs_init(&GFL_lock), call bitree_uwi_init() \n", __func__); #endif mcs_init(&GFL_lock); bitree_uwi_init(); @@ -675,3 +688,41 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) //--------------------------------------------------------------------- // debug operations //--------------------------------------------------------------------- + +/* + * Compute a string representation of map and store result in str. + */ +/* + * pre-condition: *nodeval is an ilmstat_btuwi_pair_t. + */ + +static void +cskl_ilmstat_btuwi_node_tostr(void* nodeval, int node_height, int max_height, + char str[], int max_cskl_str_len) +{ + cskl_levels_tostr(node_height, max_height, str, max_cskl_str_len); + + // build needed indentation to print the binary tree inside the skiplist: + char cskl_itpair_treeIndent[MAX_CSKIPLIST_STR]; + cskl_itpair_treeIndent[0] = '\0'; + int indentlen= strlen(cskl_itpair_treeIndent); + strncat(cskl_itpair_treeIndent, str, MAX_CSKIPLIST_STR - indentlen -1); + indentlen= strlen(cskl_itpair_treeIndent); + strncat(cskl_itpair_treeIndent, ildmod_stat_maxspaces(), MAX_CSKIPLIST_STR - indentlen -1); + + // print the binary tree with the proper indentation: + char itpairstr[max_ilmstat_btuwi_pair_len()]; + ilmstat_btuwi_pair_t* node_val = (ilmstat_btuwi_pair_t*)nodeval; + ilmstat_btuwi_pair_tostr_indent(node_val, cskl_itpair_treeIndent, itpairstr); + + // add new line: + cskl_append_node_str(itpairstr, str, max_cskl_str_len); +} + +void +uw_recipe_map_print(void) +{ + char buf[MAX_CSKIPLIST_STR]; + cskl_tostr(addr2recipe_map, cskl_ilmstat_btuwi_node_tostr, buf, MAX_CSKIPLIST_STR); + fprintf(stderr, "%s", buf); +} From abfbd2a5699c396e2fef7d931fcc206e4441b308 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 10 Apr 2017 15:47:47 -0500 Subject: [PATCH 32/85] Restore correct ip update in x86 disassembly. --- src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index 55493a801e..a07fc33220 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -177,7 +177,7 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) if (noisy) dump_ui(iarg.current, true); } - iarg.ins = nextins; + iarg.ins += xed_decoded_inst_get_length(xptr); UWI_END_ADDR(iarg.current) = (uintptr_t)iarg.ins; } From fc76e60eb5b13e18d1d3d4f185e2587f0fd5f964 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 5 May 2017 17:47:35 -0500 Subject: [PATCH 33/85] Remote link to hold tree together. --- src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c index aba05553d3..743858054a 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c @@ -124,7 +124,6 @@ new_ui(char *startaddr, mem_alloc m_alloc) { bitree_uwi_t *u = bitree_uwi_malloc(m_alloc, sizeof(ppc64recipe_t)); - bitree_uwi_set_leftsubtree(u, prev); uwi_t *uwi = bitree_uwi_rootval(u); // ---------------------------------------------------------------- From 278b01ee32c3377755f5f00945284b025a442795 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 5 May 2017 17:49:32 -0500 Subject: [PATCH 34/85] Using a modified libunwind, process dwarf content for a procedure to create register updates for each distinct address range of the procedure, and cache them a binary tree, stored at the node of the skip list that corresponds to the procedure. Use cached register updates to update a libunwind cursor, rather than having libunwind redo the dwarf decoding, or depending on the libunwind cache, for every step up the stack. --- Makefile.in | 10 +- doc/Makefile.in | 6 +- doc/man/Makefile.in | 6 +- doc/manual/Makefile.in | 6 +- doc/www/Makefile.in | 6 +- lib/Makefile.in | 6 +- src/Makefile.in | 6 +- src/lib/Makefile.in | 6 +- src/lib/analysis/Makefile.in | 95 +- src/lib/banal/Makefile.in | 81 +- src/lib/binutils/Makefile.in | 95 +- src/lib/isa/Makefile.in | 81 +- src/lib/prof-lean/Makefile.in | 154 +- src/lib/prof/Makefile.in | 137 +- src/lib/profxml/Makefile.in | 74 +- src/lib/stubs-gcc_s/Makefile.in | 45 +- src/lib/support-lean/Makefile.in | 46 +- src/lib/support/Makefile.in | 246 +- src/lib/xml/Makefile.in | 39 +- src/tool/Makefile.in | 6 +- src/tool/hpcfnbounds/Makefile.in | 153 +- src/tool/hpclump/Makefile.in | 58 +- src/tool/hpcprof-flat/Makefile.in | 70 +- src/tool/hpcprof-mpi/Makefile.in | 70 +- src/tool/hpcprof/Makefile.in | 57 +- src/tool/hpcproftt/Makefile.in | 57 +- src/tool/hpcrun-flat/Makefile.in | 130 +- src/tool/hpcrun/Makefile.am | 2 +- src/tool/hpcrun/Makefile.in | 3055 +++-------------- .../unwind/generic-libunwind/libunw-unwind.c | 130 +- src/tool/hpcrun/utilities/bgq-cnk/Makefile.in | 33 +- src/tool/hpcserver/Makefile.in | 253 +- src/tool/hpcserver/mpi/Makefile.in | 326 +- src/tool/hpcstruct/Makefile.in | 57 +- src/tool/misc/Makefile.in | 6 +- src/tool/xprof/Makefile.in | 188 +- 36 files changed, 1156 insertions(+), 4640 deletions(-) diff --git a/Makefile.in b/Makefile.in index 8cb0a8f9c9..67a6bca838 100644 --- a/Makefile.in +++ b/Makefile.in @@ -159,6 +159,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ @@ -497,15 +499,15 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign Makefile + $(AUTOMAKE) --foreign --ignore-deps Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/Makefile.in b/doc/Makefile.in index d67079bc4e..167742fbbc 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -121,6 +121,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -446,9 +448,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign doc/Makefile + $(AUTOMAKE) --foreign --ignore-deps doc/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/man/Makefile.in b/doc/man/Makefile.in index a71b65bae5..1cbb891b22 100644 --- a/doc/man/Makefile.in +++ b/doc/man/Makefile.in @@ -123,6 +123,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -456,9 +458,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/man/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/man/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign doc/man/Makefile + $(AUTOMAKE) --foreign --ignore-deps doc/man/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/manual/Makefile.in b/doc/manual/Makefile.in index d2272ce23c..68fd8b572e 100644 --- a/doc/manual/Makefile.in +++ b/doc/manual/Makefile.in @@ -123,6 +123,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -416,9 +418,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/manual/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/manual/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign doc/manual/Makefile + $(AUTOMAKE) --foreign --ignore-deps doc/manual/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/www/Makefile.in b/doc/www/Makefile.in index b819887432..3497c4fd65 100644 --- a/doc/www/Makefile.in +++ b/doc/www/Makefile.in @@ -123,6 +123,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -480,9 +482,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/www/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/www/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign doc/www/Makefile + $(AUTOMAKE) --foreign --ignore-deps doc/www/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/lib/Makefile.in b/lib/Makefile.in index 29dc29f731..2ae667729f 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -122,6 +122,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -441,9 +443,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign lib/Makefile + $(AUTOMAKE) --foreign --ignore-deps lib/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/Makefile.in b/src/Makefile.in index e4e1d8e713..d54aab9fa2 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -121,6 +121,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -440,9 +442,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index 15dce5f3e5..fb99cfb8fa 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -132,6 +132,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -449,9 +451,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/lib/analysis/Makefile.in b/src/lib/analysis/Makefile.in index c40b065195..64c5b94424 100644 --- a/src/lib/analysis/Makefile.in +++ b/src/lib/analysis/Makefile.in @@ -169,9 +169,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -234,7 +233,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -558,9 +557,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/analysis/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/analysis/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/analysis/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/analysis/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -600,99 +599,41 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Args.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-CallPath.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Raw.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-TextUtil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Util.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCanalysis_la-CallPath.lo: CallPath.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-CallPath.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-CallPath.Tpo -c -o libHPCanalysis_la-CallPath.lo `test -f 'CallPath.cpp' || echo '$(srcdir)/'`CallPath.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-CallPath.Tpo $(DEPDIR)/libHPCanalysis_la-CallPath.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CallPath.cpp' object='libHPCanalysis_la-CallPath.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath.lo `test -f 'CallPath.cpp' || echo '$(srcdir)/'`CallPath.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath.lo `test -f 'CallPath.cpp' || echo '$(srcdir)/'`CallPath.cpp libHPCanalysis_la-CallPath-MetricComponentsFact.lo: CallPath-MetricComponentsFact.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-CallPath-MetricComponentsFact.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Tpo -c -o libHPCanalysis_la-CallPath-MetricComponentsFact.lo `test -f 'CallPath-MetricComponentsFact.cpp' || echo '$(srcdir)/'`CallPath-MetricComponentsFact.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Tpo $(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CallPath-MetricComponentsFact.cpp' object='libHPCanalysis_la-CallPath-MetricComponentsFact.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath-MetricComponentsFact.lo `test -f 'CallPath-MetricComponentsFact.cpp' || echo '$(srcdir)/'`CallPath-MetricComponentsFact.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath-MetricComponentsFact.lo `test -f 'CallPath-MetricComponentsFact.cpp' || echo '$(srcdir)/'`CallPath-MetricComponentsFact.cpp libHPCanalysis_la-Flat-SrcCorrelation.lo: Flat-SrcCorrelation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Flat-SrcCorrelation.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Tpo -c -o libHPCanalysis_la-Flat-SrcCorrelation.lo `test -f 'Flat-SrcCorrelation.cpp' || echo '$(srcdir)/'`Flat-SrcCorrelation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Tpo $(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Flat-SrcCorrelation.cpp' object='libHPCanalysis_la-Flat-SrcCorrelation.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-SrcCorrelation.lo `test -f 'Flat-SrcCorrelation.cpp' || echo '$(srcdir)/'`Flat-SrcCorrelation.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-SrcCorrelation.lo `test -f 'Flat-SrcCorrelation.cpp' || echo '$(srcdir)/'`Flat-SrcCorrelation.cpp libHPCanalysis_la-Flat-ObjCorrelation.lo: Flat-ObjCorrelation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Flat-ObjCorrelation.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Tpo -c -o libHPCanalysis_la-Flat-ObjCorrelation.lo `test -f 'Flat-ObjCorrelation.cpp' || echo '$(srcdir)/'`Flat-ObjCorrelation.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Tpo $(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Flat-ObjCorrelation.cpp' object='libHPCanalysis_la-Flat-ObjCorrelation.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-ObjCorrelation.lo `test -f 'Flat-ObjCorrelation.cpp' || echo '$(srcdir)/'`Flat-ObjCorrelation.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-ObjCorrelation.lo `test -f 'Flat-ObjCorrelation.cpp' || echo '$(srcdir)/'`Flat-ObjCorrelation.cpp libHPCanalysis_la-Raw.lo: Raw.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Raw.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Raw.Tpo -c -o libHPCanalysis_la-Raw.lo `test -f 'Raw.cpp' || echo '$(srcdir)/'`Raw.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Raw.Tpo $(DEPDIR)/libHPCanalysis_la-Raw.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Raw.cpp' object='libHPCanalysis_la-Raw.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Raw.lo `test -f 'Raw.cpp' || echo '$(srcdir)/'`Raw.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Raw.lo `test -f 'Raw.cpp' || echo '$(srcdir)/'`Raw.cpp libHPCanalysis_la-Args.lo: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Args.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Args.Tpo -c -o libHPCanalysis_la-Args.lo `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Args.Tpo $(DEPDIR)/libHPCanalysis_la-Args.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='libHPCanalysis_la-Args.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Args.lo `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Args.lo `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp libHPCanalysis_la-ArgsHPCProf.lo: ArgsHPCProf.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-ArgsHPCProf.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Tpo -c -o libHPCanalysis_la-ArgsHPCProf.lo `test -f 'ArgsHPCProf.cpp' || echo '$(srcdir)/'`ArgsHPCProf.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Tpo $(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ArgsHPCProf.cpp' object='libHPCanalysis_la-ArgsHPCProf.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-ArgsHPCProf.lo `test -f 'ArgsHPCProf.cpp' || echo '$(srcdir)/'`ArgsHPCProf.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-ArgsHPCProf.lo `test -f 'ArgsHPCProf.cpp' || echo '$(srcdir)/'`ArgsHPCProf.cpp libHPCanalysis_la-Util.lo: Util.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Util.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Util.Tpo -c -o libHPCanalysis_la-Util.lo `test -f 'Util.cpp' || echo '$(srcdir)/'`Util.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Util.Tpo $(DEPDIR)/libHPCanalysis_la-Util.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Util.cpp' object='libHPCanalysis_la-Util.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Util.lo `test -f 'Util.cpp' || echo '$(srcdir)/'`Util.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Util.lo `test -f 'Util.cpp' || echo '$(srcdir)/'`Util.cpp libHPCanalysis_la-TextUtil.lo: TextUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-TextUtil.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-TextUtil.Tpo -c -o libHPCanalysis_la-TextUtil.lo `test -f 'TextUtil.cpp' || echo '$(srcdir)/'`TextUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-TextUtil.Tpo $(DEPDIR)/libHPCanalysis_la-TextUtil.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TextUtil.cpp' object='libHPCanalysis_la-TextUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-TextUtil.lo `test -f 'TextUtil.cpp' || echo '$(srcdir)/'`TextUtil.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-TextUtil.lo `test -f 'TextUtil.cpp' || echo '$(srcdir)/'`TextUtil.cpp mostlyclean-libtool: -rm -f *.lo @@ -823,7 +764,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -869,7 +809,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/banal/Makefile.in b/src/lib/banal/Makefile.in index 47ddb02e2b..f890c36e20 100644 --- a/src/lib/banal/Makefile.in +++ b/src/lib/banal/Makefile.in @@ -188,9 +188,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -254,7 +253,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -576,9 +575,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/banal/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/banal/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/banal/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/banal/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -621,83 +620,35 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Linemap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-OAInterface.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Struct-Inline.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Struct.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-StructSimple.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_simple_la-StructSimple.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCbanal_la-Linemap.lo: Linemap.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Linemap.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Linemap.Tpo -c -o libHPCbanal_la-Linemap.lo `test -f 'Linemap.cpp' || echo '$(srcdir)/'`Linemap.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Linemap.Tpo $(DEPDIR)/libHPCbanal_la-Linemap.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Linemap.cpp' object='libHPCbanal_la-Linemap.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Linemap.lo `test -f 'Linemap.cpp' || echo '$(srcdir)/'`Linemap.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Linemap.lo `test -f 'Linemap.cpp' || echo '$(srcdir)/'`Linemap.cpp libHPCbanal_la-Struct.lo: Struct.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Struct.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Struct.Tpo -c -o libHPCbanal_la-Struct.lo `test -f 'Struct.cpp' || echo '$(srcdir)/'`Struct.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Struct.Tpo $(DEPDIR)/libHPCbanal_la-Struct.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct.cpp' object='libHPCbanal_la-Struct.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct.lo `test -f 'Struct.cpp' || echo '$(srcdir)/'`Struct.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct.lo `test -f 'Struct.cpp' || echo '$(srcdir)/'`Struct.cpp libHPCbanal_la-StructSimple.lo: StructSimple.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-StructSimple.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-StructSimple.Tpo -c -o libHPCbanal_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-StructSimple.Tpo $(DEPDIR)/libHPCbanal_la-StructSimple.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StructSimple.cpp' object='libHPCbanal_la-StructSimple.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp libHPCbanal_la-Struct-LocationMgr.lo: Struct-LocationMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Struct-LocationMgr.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Tpo -c -o libHPCbanal_la-Struct-LocationMgr.lo `test -f 'Struct-LocationMgr.cpp' || echo '$(srcdir)/'`Struct-LocationMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Tpo $(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-LocationMgr.cpp' object='libHPCbanal_la-Struct-LocationMgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-LocationMgr.lo `test -f 'Struct-LocationMgr.cpp' || echo '$(srcdir)/'`Struct-LocationMgr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-LocationMgr.lo `test -f 'Struct-LocationMgr.cpp' || echo '$(srcdir)/'`Struct-LocationMgr.cpp libHPCbanal_la-Struct-Inline.lo: Struct-Inline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Struct-Inline.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Struct-Inline.Tpo -c -o libHPCbanal_la-Struct-Inline.lo `test -f 'Struct-Inline.cpp' || echo '$(srcdir)/'`Struct-Inline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Struct-Inline.Tpo $(DEPDIR)/libHPCbanal_la-Struct-Inline.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-Inline.cpp' object='libHPCbanal_la-Struct-Inline.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-Inline.lo `test -f 'Struct-Inline.cpp' || echo '$(srcdir)/'`Struct-Inline.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-Inline.lo `test -f 'Struct-Inline.cpp' || echo '$(srcdir)/'`Struct-Inline.cpp libHPCbanal_la-OAInterface.lo: OAInterface.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-OAInterface.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-OAInterface.Tpo -c -o libHPCbanal_la-OAInterface.lo `test -f 'OAInterface.cpp' || echo '$(srcdir)/'`OAInterface.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-OAInterface.Tpo $(DEPDIR)/libHPCbanal_la-OAInterface.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='OAInterface.cpp' object='libHPCbanal_la-OAInterface.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-OAInterface.lo `test -f 'OAInterface.cpp' || echo '$(srcdir)/'`OAInterface.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-OAInterface.lo `test -f 'OAInterface.cpp' || echo '$(srcdir)/'`OAInterface.cpp libHPCbanal_simple_la-StructSimple.lo: StructSimple.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_simple_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_simple_la-StructSimple.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_simple_la-StructSimple.Tpo -c -o libHPCbanal_simple_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_simple_la-StructSimple.Tpo $(DEPDIR)/libHPCbanal_simple_la-StructSimple.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StructSimple.cpp' object='libHPCbanal_simple_la-StructSimple.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_simple_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_simple_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_simple_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_simple_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp mostlyclean-libtool: -rm -f *.lo @@ -828,7 +779,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -874,7 +824,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/binutils/Makefile.in b/src/lib/binutils/Makefile.in index d9b480cac8..f6958999ad 100644 --- a/src/lib/binutils/Makefile.in +++ b/src/lib/binutils/Makefile.in @@ -167,9 +167,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -232,7 +231,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -552,9 +551,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/binutils/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/binutils/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/binutils/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/binutils/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -594,99 +593,41 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-BinUtils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Dbg-LM.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Demangler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Insn.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-LM.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Proc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Seg.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-VMAInterval.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCbinutils_la-Demangler.lo: Demangler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Demangler.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Demangler.Tpo -c -o libHPCbinutils_la-Demangler.lo `test -f 'Demangler.cpp' || echo '$(srcdir)/'`Demangler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Demangler.Tpo $(DEPDIR)/libHPCbinutils_la-Demangler.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Demangler.cpp' object='libHPCbinutils_la-Demangler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Demangler.lo `test -f 'Demangler.cpp' || echo '$(srcdir)/'`Demangler.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Demangler.lo `test -f 'Demangler.cpp' || echo '$(srcdir)/'`Demangler.cpp libHPCbinutils_la-LM.lo: LM.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-LM.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-LM.Tpo -c -o libHPCbinutils_la-LM.lo `test -f 'LM.cpp' || echo '$(srcdir)/'`LM.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-LM.Tpo $(DEPDIR)/libHPCbinutils_la-LM.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LM.cpp' object='libHPCbinutils_la-LM.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-LM.lo `test -f 'LM.cpp' || echo '$(srcdir)/'`LM.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-LM.lo `test -f 'LM.cpp' || echo '$(srcdir)/'`LM.cpp libHPCbinutils_la-Seg.lo: Seg.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Seg.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Seg.Tpo -c -o libHPCbinutils_la-Seg.lo `test -f 'Seg.cpp' || echo '$(srcdir)/'`Seg.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Seg.Tpo $(DEPDIR)/libHPCbinutils_la-Seg.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Seg.cpp' object='libHPCbinutils_la-Seg.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Seg.lo `test -f 'Seg.cpp' || echo '$(srcdir)/'`Seg.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Seg.lo `test -f 'Seg.cpp' || echo '$(srcdir)/'`Seg.cpp libHPCbinutils_la-Proc.lo: Proc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Proc.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Proc.Tpo -c -o libHPCbinutils_la-Proc.lo `test -f 'Proc.cpp' || echo '$(srcdir)/'`Proc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Proc.Tpo $(DEPDIR)/libHPCbinutils_la-Proc.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Proc.cpp' object='libHPCbinutils_la-Proc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Proc.lo `test -f 'Proc.cpp' || echo '$(srcdir)/'`Proc.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Proc.lo `test -f 'Proc.cpp' || echo '$(srcdir)/'`Proc.cpp libHPCbinutils_la-Insn.lo: Insn.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Insn.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Insn.Tpo -c -o libHPCbinutils_la-Insn.lo `test -f 'Insn.cpp' || echo '$(srcdir)/'`Insn.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Insn.Tpo $(DEPDIR)/libHPCbinutils_la-Insn.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Insn.cpp' object='libHPCbinutils_la-Insn.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Insn.lo `test -f 'Insn.cpp' || echo '$(srcdir)/'`Insn.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Insn.lo `test -f 'Insn.cpp' || echo '$(srcdir)/'`Insn.cpp libHPCbinutils_la-Dbg-LM.lo: Dbg-LM.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Dbg-LM.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Dbg-LM.Tpo -c -o libHPCbinutils_la-Dbg-LM.lo `test -f 'Dbg-LM.cpp' || echo '$(srcdir)/'`Dbg-LM.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Dbg-LM.Tpo $(DEPDIR)/libHPCbinutils_la-Dbg-LM.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Dbg-LM.cpp' object='libHPCbinutils_la-Dbg-LM.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-LM.lo `test -f 'Dbg-LM.cpp' || echo '$(srcdir)/'`Dbg-LM.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-LM.lo `test -f 'Dbg-LM.cpp' || echo '$(srcdir)/'`Dbg-LM.cpp libHPCbinutils_la-Dbg-Proc.lo: Dbg-Proc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Dbg-Proc.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Tpo -c -o libHPCbinutils_la-Dbg-Proc.lo `test -f 'Dbg-Proc.cpp' || echo '$(srcdir)/'`Dbg-Proc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Tpo $(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Dbg-Proc.cpp' object='libHPCbinutils_la-Dbg-Proc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-Proc.lo `test -f 'Dbg-Proc.cpp' || echo '$(srcdir)/'`Dbg-Proc.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-Proc.lo `test -f 'Dbg-Proc.cpp' || echo '$(srcdir)/'`Dbg-Proc.cpp libHPCbinutils_la-BinUtils.lo: BinUtils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-BinUtils.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-BinUtils.Tpo -c -o libHPCbinutils_la-BinUtils.lo `test -f 'BinUtils.cpp' || echo '$(srcdir)/'`BinUtils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-BinUtils.Tpo $(DEPDIR)/libHPCbinutils_la-BinUtils.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BinUtils.cpp' object='libHPCbinutils_la-BinUtils.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-BinUtils.lo `test -f 'BinUtils.cpp' || echo '$(srcdir)/'`BinUtils.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-BinUtils.lo `test -f 'BinUtils.cpp' || echo '$(srcdir)/'`BinUtils.cpp libHPCbinutils_la-VMAInterval.lo: VMAInterval.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-VMAInterval.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-VMAInterval.Tpo -c -o libHPCbinutils_la-VMAInterval.lo `test -f 'VMAInterval.cpp' || echo '$(srcdir)/'`VMAInterval.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-VMAInterval.Tpo $(DEPDIR)/libHPCbinutils_la-VMAInterval.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='VMAInterval.cpp' object='libHPCbinutils_la-VMAInterval.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-VMAInterval.lo `test -f 'VMAInterval.cpp' || echo '$(srcdir)/'`VMAInterval.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-VMAInterval.lo `test -f 'VMAInterval.cpp' || echo '$(srcdir)/'`VMAInterval.cpp mostlyclean-libtool: -rm -f *.lo @@ -817,7 +758,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -863,7 +803,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/isa/Makefile.in b/src/lib/isa/Makefile.in index 0848f79089..050ffab706 100644 --- a/src/lib/isa/Makefile.in +++ b/src/lib/isa/Makefile.in @@ -177,9 +177,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -242,7 +241,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -554,9 +553,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/isa/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/isa/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/isa/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/isa/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -596,83 +595,35 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-IA64ISA.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-ISA.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-PowerISA.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISA.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISABinutils.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISAXed.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCisa_la-ISA.lo: ISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-ISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-ISA.Tpo -c -o libHPCisa_la-ISA.lo `test -f 'ISA.cpp' || echo '$(srcdir)/'`ISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-ISA.Tpo $(DEPDIR)/libHPCisa_la-ISA.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ISA.cpp' object='libHPCisa_la-ISA.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-ISA.lo `test -f 'ISA.cpp' || echo '$(srcdir)/'`ISA.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-ISA.lo `test -f 'ISA.cpp' || echo '$(srcdir)/'`ISA.cpp libHPCisa_la-PowerISA.lo: PowerISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-PowerISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-PowerISA.Tpo -c -o libHPCisa_la-PowerISA.lo `test -f 'PowerISA.cpp' || echo '$(srcdir)/'`PowerISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-PowerISA.Tpo $(DEPDIR)/libHPCisa_la-PowerISA.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PowerISA.cpp' object='libHPCisa_la-PowerISA.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-PowerISA.lo `test -f 'PowerISA.cpp' || echo '$(srcdir)/'`PowerISA.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-PowerISA.lo `test -f 'PowerISA.cpp' || echo '$(srcdir)/'`PowerISA.cpp libHPCisa_la-x86ISA.lo: x86ISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISA.Tpo -c -o libHPCisa_la-x86ISA.lo `test -f 'x86ISA.cpp' || echo '$(srcdir)/'`x86ISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISA.Tpo $(DEPDIR)/libHPCisa_la-x86ISA.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISA.cpp' object='libHPCisa_la-x86ISA.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISA.lo `test -f 'x86ISA.cpp' || echo '$(srcdir)/'`x86ISA.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISA.lo `test -f 'x86ISA.cpp' || echo '$(srcdir)/'`x86ISA.cpp libHPCisa_la-x86ISABinutils.lo: x86ISABinutils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISABinutils.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISABinutils.Tpo -c -o libHPCisa_la-x86ISABinutils.lo `test -f 'x86ISABinutils.cpp' || echo '$(srcdir)/'`x86ISABinutils.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISABinutils.Tpo $(DEPDIR)/libHPCisa_la-x86ISABinutils.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISABinutils.cpp' object='libHPCisa_la-x86ISABinutils.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISABinutils.lo `test -f 'x86ISABinutils.cpp' || echo '$(srcdir)/'`x86ISABinutils.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISABinutils.lo `test -f 'x86ISABinutils.cpp' || echo '$(srcdir)/'`x86ISABinutils.cpp libHPCisa_la-IA64ISA.lo: IA64ISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-IA64ISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-IA64ISA.Tpo -c -o libHPCisa_la-IA64ISA.lo `test -f 'IA64ISA.cpp' || echo '$(srcdir)/'`IA64ISA.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-IA64ISA.Tpo $(DEPDIR)/libHPCisa_la-IA64ISA.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IA64ISA.cpp' object='libHPCisa_la-IA64ISA.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-IA64ISA.lo `test -f 'IA64ISA.cpp' || echo '$(srcdir)/'`IA64ISA.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-IA64ISA.lo `test -f 'IA64ISA.cpp' || echo '$(srcdir)/'`IA64ISA.cpp libHPCisa_la-x86ISAXed.lo: x86ISAXed.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISAXed.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISAXed.Tpo -c -o libHPCisa_la-x86ISAXed.lo `test -f 'x86ISAXed.cpp' || echo '$(srcdir)/'`x86ISAXed.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISAXed.Tpo $(DEPDIR)/libHPCisa_la-x86ISAXed.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISAXed.cpp' object='libHPCisa_la-x86ISAXed.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed.lo `test -f 'x86ISAXed.cpp' || echo '$(srcdir)/'`x86ISAXed.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed.lo `test -f 'x86ISAXed.cpp' || echo '$(srcdir)/'`x86ISAXed.cpp libHPCisa_la-x86ISAXed_dummy.lo: x86ISAXed_dummy.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISAXed_dummy.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Tpo -c -o libHPCisa_la-x86ISAXed_dummy.lo `test -f 'x86ISAXed_dummy.cpp' || echo '$(srcdir)/'`x86ISAXed_dummy.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Tpo $(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISAXed_dummy.cpp' object='libHPCisa_la-x86ISAXed_dummy.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed_dummy.lo `test -f 'x86ISAXed_dummy.cpp' || echo '$(srcdir)/'`x86ISAXed_dummy.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed_dummy.lo `test -f 'x86ISAXed_dummy.cpp' || echo '$(srcdir)/'`x86ISAXed_dummy.cpp mostlyclean-libtool: -rm -f *.lo @@ -803,7 +754,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -849,7 +799,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/prof-lean/Makefile.in b/src/lib/prof-lean/Makefile.in index 93768cf557..1147d32d6a 100644 --- a/src/lib/prof-lean/Makefile.in +++ b/src/lib/prof-lean/Makefile.in @@ -177,9 +177,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -224,7 +223,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -559,9 +558,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/prof-lean/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/prof-lean/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/prof-lean/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/prof-lean/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -594,11 +593,7 @@ clean-noinstLTLIBRARIES: lush/$(am__dirstamp): @$(MKDIR_P) lush @: > lush/$(am__dirstamp) -lush/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) lush/$(DEPDIR) - @: > lush/$(DEPDIR)/$(am__dirstamp) -lush/libHPCprof_lean_la-lush-support.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) +lush/libHPCprof_lean_la-lush-support.lo: lush/$(am__dirstamp) libHPCprof-lean.la: $(libHPCprof_lean_la_OBJECTS) $(libHPCprof_lean_la_DEPENDENCIES) $(EXTRA_libHPCprof_lean_la_DEPENDENCIES) $(AM_V_CCLD)$(libHPCprof_lean_la_LINK) $(libHPCprof_lean_la_OBJECTS) $(libHPCprof_lean_la_LIBADD) $(LIBS) @@ -611,158 +606,62 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-BalancedTree.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-binarytree.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-cskiplist.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-generic_pair.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcfmt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcio.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-mcs-lock.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-placeholders.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-randomizer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-spinlock.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-urand.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-usec_time.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Plo@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< libHPCprof_lean_la-hpcrun-fmt.lo: hpcrun-fmt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcrun-fmt.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Tpo -c -o libHPCprof_lean_la-hpcrun-fmt.lo `test -f 'hpcrun-fmt.c' || echo '$(srcdir)/'`hpcrun-fmt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun-fmt.c' object='libHPCprof_lean_la-hpcrun-fmt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcrun-fmt.lo `test -f 'hpcrun-fmt.c' || echo '$(srcdir)/'`hpcrun-fmt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcrun-fmt.lo `test -f 'hpcrun-fmt.c' || echo '$(srcdir)/'`hpcrun-fmt.c libHPCprof_lean_la-hpcfmt.lo: hpcfmt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcfmt.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcfmt.Tpo -c -o libHPCprof_lean_la-hpcfmt.lo `test -f 'hpcfmt.c' || echo '$(srcdir)/'`hpcfmt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcfmt.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcfmt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcfmt.c' object='libHPCprof_lean_la-hpcfmt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcfmt.lo `test -f 'hpcfmt.c' || echo '$(srcdir)/'`hpcfmt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcfmt.lo `test -f 'hpcfmt.c' || echo '$(srcdir)/'`hpcfmt.c libHPCprof_lean_la-hpcio.lo: hpcio.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcio.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcio.Tpo -c -o libHPCprof_lean_la-hpcio.lo `test -f 'hpcio.c' || echo '$(srcdir)/'`hpcio.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcio.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcio.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcio.c' object='libHPCprof_lean_la-hpcio.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio.lo `test -f 'hpcio.c' || echo '$(srcdir)/'`hpcio.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio.lo `test -f 'hpcio.c' || echo '$(srcdir)/'`hpcio.c libHPCprof_lean_la-hpcio-buffer.lo: hpcio-buffer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcio-buffer.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Tpo -c -o libHPCprof_lean_la-hpcio-buffer.lo `test -f 'hpcio-buffer.c' || echo '$(srcdir)/'`hpcio-buffer.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcio-buffer.c' object='libHPCprof_lean_la-hpcio-buffer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio-buffer.lo `test -f 'hpcio-buffer.c' || echo '$(srcdir)/'`hpcio-buffer.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio-buffer.lo `test -f 'hpcio-buffer.c' || echo '$(srcdir)/'`hpcio-buffer.c libHPCprof_lean_la-mcs-lock.lo: mcs-lock.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-mcs-lock.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-mcs-lock.Tpo -c -o libHPCprof_lean_la-mcs-lock.lo `test -f 'mcs-lock.c' || echo '$(srcdir)/'`mcs-lock.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-mcs-lock.Tpo $(DEPDIR)/libHPCprof_lean_la-mcs-lock.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mcs-lock.c' object='libHPCprof_lean_la-mcs-lock.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-mcs-lock.lo `test -f 'mcs-lock.c' || echo '$(srcdir)/'`mcs-lock.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-mcs-lock.lo `test -f 'mcs-lock.c' || echo '$(srcdir)/'`mcs-lock.c libHPCprof_lean_la-pfq-rwlock.lo: pfq-rwlock.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-pfq-rwlock.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Tpo -c -o libHPCprof_lean_la-pfq-rwlock.lo `test -f 'pfq-rwlock.c' || echo '$(srcdir)/'`pfq-rwlock.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Tpo $(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pfq-rwlock.c' object='libHPCprof_lean_la-pfq-rwlock.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-pfq-rwlock.lo `test -f 'pfq-rwlock.c' || echo '$(srcdir)/'`pfq-rwlock.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-pfq-rwlock.lo `test -f 'pfq-rwlock.c' || echo '$(srcdir)/'`pfq-rwlock.c libHPCprof_lean_la-spinlock.lo: spinlock.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-spinlock.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-spinlock.Tpo -c -o libHPCprof_lean_la-spinlock.lo `test -f 'spinlock.c' || echo '$(srcdir)/'`spinlock.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-spinlock.Tpo $(DEPDIR)/libHPCprof_lean_la-spinlock.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='spinlock.c' object='libHPCprof_lean_la-spinlock.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-spinlock.lo `test -f 'spinlock.c' || echo '$(srcdir)/'`spinlock.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-spinlock.lo `test -f 'spinlock.c' || echo '$(srcdir)/'`spinlock.c libHPCprof_lean_la-urand.lo: urand.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-urand.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-urand.Tpo -c -o libHPCprof_lean_la-urand.lo `test -f 'urand.c' || echo '$(srcdir)/'`urand.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-urand.Tpo $(DEPDIR)/libHPCprof_lean_la-urand.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='urand.c' object='libHPCprof_lean_la-urand.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-urand.lo `test -f 'urand.c' || echo '$(srcdir)/'`urand.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-urand.lo `test -f 'urand.c' || echo '$(srcdir)/'`urand.c libHPCprof_lean_la-usec_time.lo: usec_time.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-usec_time.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-usec_time.Tpo -c -o libHPCprof_lean_la-usec_time.lo `test -f 'usec_time.c' || echo '$(srcdir)/'`usec_time.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-usec_time.Tpo $(DEPDIR)/libHPCprof_lean_la-usec_time.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='usec_time.c' object='libHPCprof_lean_la-usec_time.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-usec_time.lo `test -f 'usec_time.c' || echo '$(srcdir)/'`usec_time.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-usec_time.lo `test -f 'usec_time.c' || echo '$(srcdir)/'`usec_time.c libHPCprof_lean_la-BalancedTree.lo: BalancedTree.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-BalancedTree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-BalancedTree.Tpo -c -o libHPCprof_lean_la-BalancedTree.lo `test -f 'BalancedTree.c' || echo '$(srcdir)/'`BalancedTree.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-BalancedTree.Tpo $(DEPDIR)/libHPCprof_lean_la-BalancedTree.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='BalancedTree.c' object='libHPCprof_lean_la-BalancedTree.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-BalancedTree.lo `test -f 'BalancedTree.c' || echo '$(srcdir)/'`BalancedTree.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-BalancedTree.lo `test -f 'BalancedTree.c' || echo '$(srcdir)/'`BalancedTree.c libHPCprof_lean_la-placeholders.lo: placeholders.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-placeholders.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-placeholders.Tpo -c -o libHPCprof_lean_la-placeholders.lo `test -f 'placeholders.c' || echo '$(srcdir)/'`placeholders.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-placeholders.Tpo $(DEPDIR)/libHPCprof_lean_la-placeholders.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='placeholders.c' object='libHPCprof_lean_la-placeholders.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-placeholders.lo `test -f 'placeholders.c' || echo '$(srcdir)/'`placeholders.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-placeholders.lo `test -f 'placeholders.c' || echo '$(srcdir)/'`placeholders.c lush/libHPCprof_lean_la-lush-support.lo: lush/lush-support.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT lush/libHPCprof_lean_la-lush-support.lo -MD -MP -MF lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Tpo -c -o lush/libHPCprof_lean_la-lush-support.lo `test -f 'lush/lush-support.c' || echo '$(srcdir)/'`lush/lush-support.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Tpo lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support.c' object='lush/libHPCprof_lean_la-lush-support.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o lush/libHPCprof_lean_la-lush-support.lo `test -f 'lush/lush-support.c' || echo '$(srcdir)/'`lush/lush-support.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o lush/libHPCprof_lean_la-lush-support.lo `test -f 'lush/lush-support.c' || echo '$(srcdir)/'`lush/lush-support.c libHPCprof_lean_la-binarytree.lo: binarytree.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-binarytree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-binarytree.Tpo -c -o libHPCprof_lean_la-binarytree.lo `test -f 'binarytree.c' || echo '$(srcdir)/'`binarytree.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-binarytree.Tpo $(DEPDIR)/libHPCprof_lean_la-binarytree.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='binarytree.c' object='libHPCprof_lean_la-binarytree.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-binarytree.lo `test -f 'binarytree.c' || echo '$(srcdir)/'`binarytree.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-binarytree.lo `test -f 'binarytree.c' || echo '$(srcdir)/'`binarytree.c libHPCprof_lean_la-cskiplist.lo: cskiplist.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-cskiplist.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-cskiplist.Tpo -c -o libHPCprof_lean_la-cskiplist.lo `test -f 'cskiplist.c' || echo '$(srcdir)/'`cskiplist.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-cskiplist.Tpo $(DEPDIR)/libHPCprof_lean_la-cskiplist.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cskiplist.c' object='libHPCprof_lean_la-cskiplist.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-cskiplist.lo `test -f 'cskiplist.c' || echo '$(srcdir)/'`cskiplist.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-cskiplist.lo `test -f 'cskiplist.c' || echo '$(srcdir)/'`cskiplist.c libHPCprof_lean_la-generic_pair.lo: generic_pair.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-generic_pair.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-generic_pair.Tpo -c -o libHPCprof_lean_la-generic_pair.lo `test -f 'generic_pair.c' || echo '$(srcdir)/'`generic_pair.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-generic_pair.Tpo $(DEPDIR)/libHPCprof_lean_la-generic_pair.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='generic_pair.c' object='libHPCprof_lean_la-generic_pair.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-generic_pair.lo `test -f 'generic_pair.c' || echo '$(srcdir)/'`generic_pair.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-generic_pair.lo `test -f 'generic_pair.c' || echo '$(srcdir)/'`generic_pair.c libHPCprof_lean_la-randomizer.lo: randomizer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-randomizer.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-randomizer.Tpo -c -o libHPCprof_lean_la-randomizer.lo `test -f 'randomizer.c' || echo '$(srcdir)/'`randomizer.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-randomizer.Tpo $(DEPDIR)/libHPCprof_lean_la-randomizer.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randomizer.c' object='libHPCprof_lean_la-randomizer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-randomizer.lo `test -f 'randomizer.c' || echo '$(srcdir)/'`randomizer.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-randomizer.lo `test -f 'randomizer.c' || echo '$(srcdir)/'`randomizer.c mostlyclean-libtool: -rm -f *.lo @@ -884,7 +783,6 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -rm -f lush/$(DEPDIR)/$(am__dirstamp) -rm -f lush/$(am__dirstamp) maintainer-clean-generic: @@ -896,7 +794,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) lush/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -942,7 +839,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) lush/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/prof/Makefile.in b/src/lib/prof/Makefile.in index c59f2f18d6..03f026aa21 100644 --- a/src/lib/prof/Makefile.in +++ b/src/lib/prof/Makefile.in @@ -173,9 +173,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -238,7 +237,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -569,9 +568,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/prof/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/prof/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/prof/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/prof/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -611,147 +610,59 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CCT-Merge.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CCT-Tree.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CallPath-Profile.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Flat-ProfileData.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-LoadMap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-ADesc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-AExpr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-IData.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-Mgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-NameMappings.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Struct-Tree.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCprof_la-Metric-Mgr.lo: Metric-Mgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-Mgr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-Mgr.Tpo -c -o libHPCprof_la-Metric-Mgr.lo `test -f 'Metric-Mgr.cpp' || echo '$(srcdir)/'`Metric-Mgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-Mgr.Tpo $(DEPDIR)/libHPCprof_la-Metric-Mgr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-Mgr.cpp' object='libHPCprof_la-Metric-Mgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-Mgr.lo `test -f 'Metric-Mgr.cpp' || echo '$(srcdir)/'`Metric-Mgr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-Mgr.lo `test -f 'Metric-Mgr.cpp' || echo '$(srcdir)/'`Metric-Mgr.cpp libHPCprof_la-Metric-ADesc.lo: Metric-ADesc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-ADesc.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-ADesc.Tpo -c -o libHPCprof_la-Metric-ADesc.lo `test -f 'Metric-ADesc.cpp' || echo '$(srcdir)/'`Metric-ADesc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-ADesc.Tpo $(DEPDIR)/libHPCprof_la-Metric-ADesc.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-ADesc.cpp' object='libHPCprof_la-Metric-ADesc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-ADesc.lo `test -f 'Metric-ADesc.cpp' || echo '$(srcdir)/'`Metric-ADesc.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-ADesc.lo `test -f 'Metric-ADesc.cpp' || echo '$(srcdir)/'`Metric-ADesc.cpp libHPCprof_la-Metric-IData.lo: Metric-IData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-IData.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-IData.Tpo -c -o libHPCprof_la-Metric-IData.lo `test -f 'Metric-IData.cpp' || echo '$(srcdir)/'`Metric-IData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-IData.Tpo $(DEPDIR)/libHPCprof_la-Metric-IData.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-IData.cpp' object='libHPCprof_la-Metric-IData.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IData.lo `test -f 'Metric-IData.cpp' || echo '$(srcdir)/'`Metric-IData.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IData.lo `test -f 'Metric-IData.cpp' || echo '$(srcdir)/'`Metric-IData.cpp libHPCprof_la-Metric-AExpr.lo: Metric-AExpr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-AExpr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-AExpr.Tpo -c -o libHPCprof_la-Metric-AExpr.lo `test -f 'Metric-AExpr.cpp' || echo '$(srcdir)/'`Metric-AExpr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-AExpr.Tpo $(DEPDIR)/libHPCprof_la-Metric-AExpr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-AExpr.cpp' object='libHPCprof_la-Metric-AExpr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExpr.lo `test -f 'Metric-AExpr.cpp' || echo '$(srcdir)/'`Metric-AExpr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExpr.lo `test -f 'Metric-AExpr.cpp' || echo '$(srcdir)/'`Metric-AExpr.cpp libHPCprof_la-Metric-AExprIncr.lo: Metric-AExprIncr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-AExprIncr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Tpo -c -o libHPCprof_la-Metric-AExprIncr.lo `test -f 'Metric-AExprIncr.cpp' || echo '$(srcdir)/'`Metric-AExprIncr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Tpo $(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-AExprIncr.cpp' object='libHPCprof_la-Metric-AExprIncr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExprIncr.lo `test -f 'Metric-AExprIncr.cpp' || echo '$(srcdir)/'`Metric-AExprIncr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExprIncr.lo `test -f 'Metric-AExprIncr.cpp' || echo '$(srcdir)/'`Metric-AExprIncr.cpp libHPCprof_la-Metric-IDBExpr.lo: Metric-IDBExpr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-IDBExpr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Tpo -c -o libHPCprof_la-Metric-IDBExpr.lo `test -f 'Metric-IDBExpr.cpp' || echo '$(srcdir)/'`Metric-IDBExpr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Tpo $(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-IDBExpr.cpp' object='libHPCprof_la-Metric-IDBExpr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IDBExpr.lo `test -f 'Metric-IDBExpr.cpp' || echo '$(srcdir)/'`Metric-IDBExpr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IDBExpr.lo `test -f 'Metric-IDBExpr.cpp' || echo '$(srcdir)/'`Metric-IDBExpr.cpp libHPCprof_la-LoadMap.lo: LoadMap.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-LoadMap.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-LoadMap.Tpo -c -o libHPCprof_la-LoadMap.lo `test -f 'LoadMap.cpp' || echo '$(srcdir)/'`LoadMap.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-LoadMap.Tpo $(DEPDIR)/libHPCprof_la-LoadMap.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LoadMap.cpp' object='libHPCprof_la-LoadMap.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-LoadMap.lo `test -f 'LoadMap.cpp' || echo '$(srcdir)/'`LoadMap.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-LoadMap.lo `test -f 'LoadMap.cpp' || echo '$(srcdir)/'`LoadMap.cpp libHPCprof_la-Struct-Tree.lo: Struct-Tree.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Struct-Tree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Struct-Tree.Tpo -c -o libHPCprof_la-Struct-Tree.lo `test -f 'Struct-Tree.cpp' || echo '$(srcdir)/'`Struct-Tree.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Struct-Tree.Tpo $(DEPDIR)/libHPCprof_la-Struct-Tree.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-Tree.cpp' object='libHPCprof_la-Struct-Tree.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-Tree.lo `test -f 'Struct-Tree.cpp' || echo '$(srcdir)/'`Struct-Tree.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-Tree.lo `test -f 'Struct-Tree.cpp' || echo '$(srcdir)/'`Struct-Tree.cpp libHPCprof_la-Struct-TreeIterator.lo: Struct-TreeIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Struct-TreeIterator.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Tpo -c -o libHPCprof_la-Struct-TreeIterator.lo `test -f 'Struct-TreeIterator.cpp' || echo '$(srcdir)/'`Struct-TreeIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Tpo $(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-TreeIterator.cpp' object='libHPCprof_la-Struct-TreeIterator.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-TreeIterator.lo `test -f 'Struct-TreeIterator.cpp' || echo '$(srcdir)/'`Struct-TreeIterator.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-TreeIterator.lo `test -f 'Struct-TreeIterator.cpp' || echo '$(srcdir)/'`Struct-TreeIterator.cpp libHPCprof_la-CCT-Tree.lo: CCT-Tree.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CCT-Tree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CCT-Tree.Tpo -c -o libHPCprof_la-CCT-Tree.lo `test -f 'CCT-Tree.cpp' || echo '$(srcdir)/'`CCT-Tree.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CCT-Tree.Tpo $(DEPDIR)/libHPCprof_la-CCT-Tree.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CCT-Tree.cpp' object='libHPCprof_la-CCT-Tree.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Tree.lo `test -f 'CCT-Tree.cpp' || echo '$(srcdir)/'`CCT-Tree.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Tree.lo `test -f 'CCT-Tree.cpp' || echo '$(srcdir)/'`CCT-Tree.cpp libHPCprof_la-CCT-TreeIterator.lo: CCT-TreeIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CCT-TreeIterator.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Tpo -c -o libHPCprof_la-CCT-TreeIterator.lo `test -f 'CCT-TreeIterator.cpp' || echo '$(srcdir)/'`CCT-TreeIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Tpo $(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CCT-TreeIterator.cpp' object='libHPCprof_la-CCT-TreeIterator.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-TreeIterator.lo `test -f 'CCT-TreeIterator.cpp' || echo '$(srcdir)/'`CCT-TreeIterator.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-TreeIterator.lo `test -f 'CCT-TreeIterator.cpp' || echo '$(srcdir)/'`CCT-TreeIterator.cpp libHPCprof_la-CCT-Merge.lo: CCT-Merge.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CCT-Merge.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CCT-Merge.Tpo -c -o libHPCprof_la-CCT-Merge.lo `test -f 'CCT-Merge.cpp' || echo '$(srcdir)/'`CCT-Merge.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CCT-Merge.Tpo $(DEPDIR)/libHPCprof_la-CCT-Merge.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CCT-Merge.cpp' object='libHPCprof_la-CCT-Merge.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Merge.lo `test -f 'CCT-Merge.cpp' || echo '$(srcdir)/'`CCT-Merge.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Merge.lo `test -f 'CCT-Merge.cpp' || echo '$(srcdir)/'`CCT-Merge.cpp libHPCprof_la-Flat-ProfileData.lo: Flat-ProfileData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Flat-ProfileData.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Flat-ProfileData.Tpo -c -o libHPCprof_la-Flat-ProfileData.lo `test -f 'Flat-ProfileData.cpp' || echo '$(srcdir)/'`Flat-ProfileData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Flat-ProfileData.Tpo $(DEPDIR)/libHPCprof_la-Flat-ProfileData.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Flat-ProfileData.cpp' object='libHPCprof_la-Flat-ProfileData.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Flat-ProfileData.lo `test -f 'Flat-ProfileData.cpp' || echo '$(srcdir)/'`Flat-ProfileData.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Flat-ProfileData.lo `test -f 'Flat-ProfileData.cpp' || echo '$(srcdir)/'`Flat-ProfileData.cpp libHPCprof_la-CallPath-Profile.lo: CallPath-Profile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CallPath-Profile.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CallPath-Profile.Tpo -c -o libHPCprof_la-CallPath-Profile.lo `test -f 'CallPath-Profile.cpp' || echo '$(srcdir)/'`CallPath-Profile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CallPath-Profile.Tpo $(DEPDIR)/libHPCprof_la-CallPath-Profile.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CallPath-Profile.cpp' object='libHPCprof_la-CallPath-Profile.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CallPath-Profile.lo `test -f 'CallPath-Profile.cpp' || echo '$(srcdir)/'`CallPath-Profile.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CallPath-Profile.lo `test -f 'CallPath-Profile.cpp' || echo '$(srcdir)/'`CallPath-Profile.cpp libHPCprof_la-NameMappings.lo: NameMappings.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-NameMappings.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-NameMappings.Tpo -c -o libHPCprof_la-NameMappings.lo `test -f 'NameMappings.cpp' || echo '$(srcdir)/'`NameMappings.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-NameMappings.Tpo $(DEPDIR)/libHPCprof_la-NameMappings.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='NameMappings.cpp' object='libHPCprof_la-NameMappings.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-NameMappings.lo `test -f 'NameMappings.cpp' || echo '$(srcdir)/'`NameMappings.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-NameMappings.lo `test -f 'NameMappings.cpp' || echo '$(srcdir)/'`NameMappings.cpp mostlyclean-libtool: -rm -f *.lo @@ -882,7 +793,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -928,7 +838,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/profxml/Makefile.in b/src/lib/profxml/Makefile.in index aad98c3bbd..c320aaaaa7 100644 --- a/src/lib/profxml/Makefile.in +++ b/src/lib/profxml/Makefile.in @@ -168,9 +168,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -233,7 +232,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -553,9 +552,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/profxml/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/profxml/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/profxml/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/profxml/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -595,75 +594,32 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-PGMReader.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-XercesSAX2.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-XercesUtil.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCprofxml_la-XercesUtil.lo: XercesUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-XercesUtil.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-XercesUtil.Tpo -c -o libHPCprofxml_la-XercesUtil.lo `test -f 'XercesUtil.cpp' || echo '$(srcdir)/'`XercesUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-XercesUtil.Tpo $(DEPDIR)/libHPCprofxml_la-XercesUtil.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XercesUtil.cpp' object='libHPCprofxml_la-XercesUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesUtil.lo `test -f 'XercesUtil.cpp' || echo '$(srcdir)/'`XercesUtil.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesUtil.lo `test -f 'XercesUtil.cpp' || echo '$(srcdir)/'`XercesUtil.cpp libHPCprofxml_la-XercesSAX2.lo: XercesSAX2.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-XercesSAX2.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-XercesSAX2.Tpo -c -o libHPCprofxml_la-XercesSAX2.lo `test -f 'XercesSAX2.cpp' || echo '$(srcdir)/'`XercesSAX2.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-XercesSAX2.Tpo $(DEPDIR)/libHPCprofxml_la-XercesSAX2.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XercesSAX2.cpp' object='libHPCprofxml_la-XercesSAX2.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesSAX2.lo `test -f 'XercesSAX2.cpp' || echo '$(srcdir)/'`XercesSAX2.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesSAX2.lo `test -f 'XercesSAX2.cpp' || echo '$(srcdir)/'`XercesSAX2.cpp libHPCprofxml_la-XercesErrorHandler.lo: XercesErrorHandler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-XercesErrorHandler.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Tpo -c -o libHPCprofxml_la-XercesErrorHandler.lo `test -f 'XercesErrorHandler.cpp' || echo '$(srcdir)/'`XercesErrorHandler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Tpo $(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XercesErrorHandler.cpp' object='libHPCprofxml_la-XercesErrorHandler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesErrorHandler.lo `test -f 'XercesErrorHandler.cpp' || echo '$(srcdir)/'`XercesErrorHandler.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesErrorHandler.lo `test -f 'XercesErrorHandler.cpp' || echo '$(srcdir)/'`XercesErrorHandler.cpp libHPCprofxml_la-PGMReader.lo: PGMReader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-PGMReader.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-PGMReader.Tpo -c -o libHPCprofxml_la-PGMReader.lo `test -f 'PGMReader.cpp' || echo '$(srcdir)/'`PGMReader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-PGMReader.Tpo $(DEPDIR)/libHPCprofxml_la-PGMReader.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PGMReader.cpp' object='libHPCprofxml_la-PGMReader.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMReader.lo `test -f 'PGMReader.cpp' || echo '$(srcdir)/'`PGMReader.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMReader.lo `test -f 'PGMReader.cpp' || echo '$(srcdir)/'`PGMReader.cpp libHPCprofxml_la-PGMDocHandler.lo: PGMDocHandler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-PGMDocHandler.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Tpo -c -o libHPCprofxml_la-PGMDocHandler.lo `test -f 'PGMDocHandler.cpp' || echo '$(srcdir)/'`PGMDocHandler.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Tpo $(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PGMDocHandler.cpp' object='libHPCprofxml_la-PGMDocHandler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMDocHandler.lo `test -f 'PGMDocHandler.cpp' || echo '$(srcdir)/'`PGMDocHandler.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMDocHandler.lo `test -f 'PGMDocHandler.cpp' || echo '$(srcdir)/'`PGMDocHandler.cpp libHPCprofxml_la-MathMLExprParser.lo: MathMLExprParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-MathMLExprParser.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Tpo -c -o libHPCprofxml_la-MathMLExprParser.lo `test -f 'MathMLExprParser.cpp' || echo '$(srcdir)/'`MathMLExprParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Tpo $(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MathMLExprParser.cpp' object='libHPCprofxml_la-MathMLExprParser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-MathMLExprParser.lo `test -f 'MathMLExprParser.cpp' || echo '$(srcdir)/'`MathMLExprParser.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-MathMLExprParser.lo `test -f 'MathMLExprParser.cpp' || echo '$(srcdir)/'`MathMLExprParser.cpp mostlyclean-libtool: -rm -f *.lo @@ -794,7 +750,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -840,7 +795,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/stubs-gcc_s/Makefile.in b/src/lib/stubs-gcc_s/Makefile.in index 4554d6bdad..922f9bb605 100644 --- a/src/lib/stubs-gcc_s/Makefile.in +++ b/src/lib/stubs-gcc_s/Makefile.in @@ -160,9 +160,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent @@ -211,7 +210,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -522,9 +521,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/stubs-gcc_s/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/stubs-gcc_s/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/stubs-gcc_s/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/stubs-gcc_s/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -558,42 +557,20 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgcc_s_a-empty.Po@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< libgcc_s_a-empty.o: empty.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -MT libgcc_s_a-empty.o -MD -MP -MF $(DEPDIR)/libgcc_s_a-empty.Tpo -c -o libgcc_s_a-empty.o `test -f 'empty.c' || echo '$(srcdir)/'`empty.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgcc_s_a-empty.Tpo $(DEPDIR)/libgcc_s_a-empty.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='empty.c' object='libgcc_s_a-empty.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.o `test -f 'empty.c' || echo '$(srcdir)/'`empty.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.o `test -f 'empty.c' || echo '$(srcdir)/'`empty.c libgcc_s_a-empty.obj: empty.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -MT libgcc_s_a-empty.obj -MD -MP -MF $(DEPDIR)/libgcc_s_a-empty.Tpo -c -o libgcc_s_a-empty.obj `if test -f 'empty.c'; then $(CYGPATH_W) 'empty.c'; else $(CYGPATH_W) '$(srcdir)/empty.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgcc_s_a-empty.Tpo $(DEPDIR)/libgcc_s_a-empty.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='empty.c' object='libgcc_s_a-empty.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.obj `if test -f 'empty.c'; then $(CYGPATH_W) 'empty.c'; else $(CYGPATH_W) '$(srcdir)/empty.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.obj `if test -f 'empty.c'; then $(CYGPATH_W) 'empty.c'; else $(CYGPATH_W) '$(srcdir)/empty.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -724,7 +701,6 @@ clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -770,7 +746,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/support-lean/Makefile.in b/src/lib/support-lean/Makefile.in index 777aad1b24..b85be20ed3 100644 --- a/src/lib/support-lean/Makefile.in +++ b/src/lib/support-lean/Makefile.in @@ -164,9 +164,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -211,7 +210,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -520,9 +519,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/support-lean/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/support-lean/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/support-lean/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/support-lean/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -562,43 +561,20 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_lean_la-OSUtil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_lean_la-timer.Plo@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< libHPCsupport_lean_la-timer.lo: timer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_lean_la-timer.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_lean_la-timer.Tpo -c -o libHPCsupport_lean_la-timer.lo `test -f 'timer.c' || echo '$(srcdir)/'`timer.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_lean_la-timer.Tpo $(DEPDIR)/libHPCsupport_lean_la-timer.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timer.c' object='libHPCsupport_lean_la-timer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-timer.lo `test -f 'timer.c' || echo '$(srcdir)/'`timer.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-timer.lo `test -f 'timer.c' || echo '$(srcdir)/'`timer.c libHPCsupport_lean_la-OSUtil.lo: OSUtil.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_lean_la-OSUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_lean_la-OSUtil.Tpo -c -o libHPCsupport_lean_la-OSUtil.lo `test -f 'OSUtil.c' || echo '$(srcdir)/'`OSUtil.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_lean_la-OSUtil.Tpo $(DEPDIR)/libHPCsupport_lean_la-OSUtil.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='OSUtil.c' object='libHPCsupport_lean_la-OSUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-OSUtil.lo `test -f 'OSUtil.c' || echo '$(srcdir)/'`OSUtil.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-OSUtil.lo `test -f 'OSUtil.c' || echo '$(srcdir)/'`OSUtil.c mostlyclean-libtool: -rm -f *.lo @@ -729,7 +705,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -775,7 +750,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/support/Makefile.in b/src/lib/support/Makefile.in index 9e95f15753..6fde89d534 100644 --- a/src/lib/support/Makefile.in +++ b/src/lib/support/Makefile.in @@ -180,9 +180,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -245,7 +244,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -589,9 +588,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/support/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/support/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/support/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/support/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -631,272 +630,107 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-CStrUtil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-CmdLineParser.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Exception.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-FileNameMap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-FileUtil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-HashTable.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-IOUtil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-IteratorStack.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Logic.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-NaN.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-PathFindMgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-PointerStack.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-ProcNameMgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-QuickSort.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-RealPathMgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-SrcFile.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-StackableIterator.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-StrUtil.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Trace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Unique.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-WordSet.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-diagnostics.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-findinstall.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-pathfind.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-realpath.Plo@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< libHPCsupport_la-NaN.lo: NaN.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_la-NaN.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-NaN.Tpo -c -o libHPCsupport_la-NaN.lo `test -f 'NaN.c' || echo '$(srcdir)/'`NaN.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-NaN.Tpo $(DEPDIR)/libHPCsupport_la-NaN.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='NaN.c' object='libHPCsupport_la-NaN.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-NaN.lo `test -f 'NaN.c' || echo '$(srcdir)/'`NaN.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-NaN.lo `test -f 'NaN.c' || echo '$(srcdir)/'`NaN.c libHPCsupport_la-findinstall.lo: findinstall.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_la-findinstall.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-findinstall.Tpo -c -o libHPCsupport_la-findinstall.lo `test -f 'findinstall.c' || echo '$(srcdir)/'`findinstall.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-findinstall.Tpo $(DEPDIR)/libHPCsupport_la-findinstall.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='findinstall.c' object='libHPCsupport_la-findinstall.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-findinstall.lo `test -f 'findinstall.c' || echo '$(srcdir)/'`findinstall.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-findinstall.lo `test -f 'findinstall.c' || echo '$(srcdir)/'`findinstall.c libHPCsupport_la-realpath.lo: realpath.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_la-realpath.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-realpath.Tpo -c -o libHPCsupport_la-realpath.lo `test -f 'realpath.c' || echo '$(srcdir)/'`realpath.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-realpath.Tpo $(DEPDIR)/libHPCsupport_la-realpath.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='realpath.c' object='libHPCsupport_la-realpath.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-realpath.lo `test -f 'realpath.c' || echo '$(srcdir)/'`realpath.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-realpath.lo `test -f 'realpath.c' || echo '$(srcdir)/'`realpath.c .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCsupport_la-CmdLineParser.lo: CmdLineParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-CmdLineParser.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-CmdLineParser.Tpo -c -o libHPCsupport_la-CmdLineParser.lo `test -f 'CmdLineParser.cpp' || echo '$(srcdir)/'`CmdLineParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-CmdLineParser.Tpo $(DEPDIR)/libHPCsupport_la-CmdLineParser.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CmdLineParser.cpp' object='libHPCsupport_la-CmdLineParser.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CmdLineParser.lo `test -f 'CmdLineParser.cpp' || echo '$(srcdir)/'`CmdLineParser.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CmdLineParser.lo `test -f 'CmdLineParser.cpp' || echo '$(srcdir)/'`CmdLineParser.cpp libHPCsupport_la-diagnostics.lo: diagnostics.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-diagnostics.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-diagnostics.Tpo -c -o libHPCsupport_la-diagnostics.lo `test -f 'diagnostics.cpp' || echo '$(srcdir)/'`diagnostics.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-diagnostics.Tpo $(DEPDIR)/libHPCsupport_la-diagnostics.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='diagnostics.cpp' object='libHPCsupport_la-diagnostics.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-diagnostics.lo `test -f 'diagnostics.cpp' || echo '$(srcdir)/'`diagnostics.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-diagnostics.lo `test -f 'diagnostics.cpp' || echo '$(srcdir)/'`diagnostics.cpp libHPCsupport_la-Exception.lo: Exception.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Exception.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Exception.Tpo -c -o libHPCsupport_la-Exception.lo `test -f 'Exception.cpp' || echo '$(srcdir)/'`Exception.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Exception.Tpo $(DEPDIR)/libHPCsupport_la-Exception.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Exception.cpp' object='libHPCsupport_la-Exception.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Exception.lo `test -f 'Exception.cpp' || echo '$(srcdir)/'`Exception.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Exception.lo `test -f 'Exception.cpp' || echo '$(srcdir)/'`Exception.cpp libHPCsupport_la-Trace.lo: Trace.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Trace.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Trace.Tpo -c -o libHPCsupport_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Trace.Tpo $(DEPDIR)/libHPCsupport_la-Trace.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Trace.cpp' object='libHPCsupport_la-Trace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp libHPCsupport_la-Logic.lo: Logic.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Logic.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Logic.Tpo -c -o libHPCsupport_la-Logic.lo `test -f 'Logic.cpp' || echo '$(srcdir)/'`Logic.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Logic.Tpo $(DEPDIR)/libHPCsupport_la-Logic.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Logic.cpp' object='libHPCsupport_la-Logic.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Logic.lo `test -f 'Logic.cpp' || echo '$(srcdir)/'`Logic.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Logic.lo `test -f 'Logic.cpp' || echo '$(srcdir)/'`Logic.cpp libHPCsupport_la-CStrUtil.lo: CStrUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-CStrUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-CStrUtil.Tpo -c -o libHPCsupport_la-CStrUtil.lo `test -f 'CStrUtil.cpp' || echo '$(srcdir)/'`CStrUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-CStrUtil.Tpo $(DEPDIR)/libHPCsupport_la-CStrUtil.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CStrUtil.cpp' object='libHPCsupport_la-CStrUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CStrUtil.lo `test -f 'CStrUtil.cpp' || echo '$(srcdir)/'`CStrUtil.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CStrUtil.lo `test -f 'CStrUtil.cpp' || echo '$(srcdir)/'`CStrUtil.cpp libHPCsupport_la-StrUtil.lo: StrUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-StrUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-StrUtil.Tpo -c -o libHPCsupport_la-StrUtil.lo `test -f 'StrUtil.cpp' || echo '$(srcdir)/'`StrUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-StrUtil.Tpo $(DEPDIR)/libHPCsupport_la-StrUtil.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StrUtil.cpp' object='libHPCsupport_la-StrUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StrUtil.lo `test -f 'StrUtil.cpp' || echo '$(srcdir)/'`StrUtil.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StrUtil.lo `test -f 'StrUtil.cpp' || echo '$(srcdir)/'`StrUtil.cpp libHPCsupport_la-IOUtil.lo: IOUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-IOUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-IOUtil.Tpo -c -o libHPCsupport_la-IOUtil.lo `test -f 'IOUtil.cpp' || echo '$(srcdir)/'`IOUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-IOUtil.Tpo $(DEPDIR)/libHPCsupport_la-IOUtil.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IOUtil.cpp' object='libHPCsupport_la-IOUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IOUtil.lo `test -f 'IOUtil.cpp' || echo '$(srcdir)/'`IOUtil.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IOUtil.lo `test -f 'IOUtil.cpp' || echo '$(srcdir)/'`IOUtil.cpp libHPCsupport_la-FileNameMap.lo: FileNameMap.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-FileNameMap.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-FileNameMap.Tpo -c -o libHPCsupport_la-FileNameMap.lo `test -f 'FileNameMap.cpp' || echo '$(srcdir)/'`FileNameMap.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-FileNameMap.Tpo $(DEPDIR)/libHPCsupport_la-FileNameMap.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FileNameMap.cpp' object='libHPCsupport_la-FileNameMap.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileNameMap.lo `test -f 'FileNameMap.cpp' || echo '$(srcdir)/'`FileNameMap.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileNameMap.lo `test -f 'FileNameMap.cpp' || echo '$(srcdir)/'`FileNameMap.cpp libHPCsupport_la-FileUtil.lo: FileUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-FileUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-FileUtil.Tpo -c -o libHPCsupport_la-FileUtil.lo `test -f 'FileUtil.cpp' || echo '$(srcdir)/'`FileUtil.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-FileUtil.Tpo $(DEPDIR)/libHPCsupport_la-FileUtil.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FileUtil.cpp' object='libHPCsupport_la-FileUtil.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileUtil.lo `test -f 'FileUtil.cpp' || echo '$(srcdir)/'`FileUtil.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileUtil.lo `test -f 'FileUtil.cpp' || echo '$(srcdir)/'`FileUtil.cpp libHPCsupport_la-SrcFile.lo: SrcFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-SrcFile.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-SrcFile.Tpo -c -o libHPCsupport_la-SrcFile.lo `test -f 'SrcFile.cpp' || echo '$(srcdir)/'`SrcFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-SrcFile.Tpo $(DEPDIR)/libHPCsupport_la-SrcFile.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SrcFile.cpp' object='libHPCsupport_la-SrcFile.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-SrcFile.lo `test -f 'SrcFile.cpp' || echo '$(srcdir)/'`SrcFile.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-SrcFile.lo `test -f 'SrcFile.cpp' || echo '$(srcdir)/'`SrcFile.cpp libHPCsupport_la-RealPathMgr.lo: RealPathMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-RealPathMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-RealPathMgr.Tpo -c -o libHPCsupport_la-RealPathMgr.lo `test -f 'RealPathMgr.cpp' || echo '$(srcdir)/'`RealPathMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-RealPathMgr.Tpo $(DEPDIR)/libHPCsupport_la-RealPathMgr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='RealPathMgr.cpp' object='libHPCsupport_la-RealPathMgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-RealPathMgr.lo `test -f 'RealPathMgr.cpp' || echo '$(srcdir)/'`RealPathMgr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-RealPathMgr.lo `test -f 'RealPathMgr.cpp' || echo '$(srcdir)/'`RealPathMgr.cpp libHPCsupport_la-PathReplacementMgr.lo: PathReplacementMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-PathReplacementMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Tpo -c -o libHPCsupport_la-PathReplacementMgr.lo `test -f 'PathReplacementMgr.cpp' || echo '$(srcdir)/'`PathReplacementMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Tpo $(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PathReplacementMgr.cpp' object='libHPCsupport_la-PathReplacementMgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathReplacementMgr.lo `test -f 'PathReplacementMgr.cpp' || echo '$(srcdir)/'`PathReplacementMgr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathReplacementMgr.lo `test -f 'PathReplacementMgr.cpp' || echo '$(srcdir)/'`PathReplacementMgr.cpp libHPCsupport_la-pathfind.lo: pathfind.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-pathfind.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-pathfind.Tpo -c -o libHPCsupport_la-pathfind.lo `test -f 'pathfind.cpp' || echo '$(srcdir)/'`pathfind.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-pathfind.Tpo $(DEPDIR)/libHPCsupport_la-pathfind.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='pathfind.cpp' object='libHPCsupport_la-pathfind.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-pathfind.lo `test -f 'pathfind.cpp' || echo '$(srcdir)/'`pathfind.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-pathfind.lo `test -f 'pathfind.cpp' || echo '$(srcdir)/'`pathfind.cpp libHPCsupport_la-PathFindMgr.lo: PathFindMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-PathFindMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-PathFindMgr.Tpo -c -o libHPCsupport_la-PathFindMgr.lo `test -f 'PathFindMgr.cpp' || echo '$(srcdir)/'`PathFindMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-PathFindMgr.Tpo $(DEPDIR)/libHPCsupport_la-PathFindMgr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PathFindMgr.cpp' object='libHPCsupport_la-PathFindMgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathFindMgr.lo `test -f 'PathFindMgr.cpp' || echo '$(srcdir)/'`PathFindMgr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathFindMgr.lo `test -f 'PathFindMgr.cpp' || echo '$(srcdir)/'`PathFindMgr.cpp libHPCsupport_la-ProcNameMgr.lo: ProcNameMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-ProcNameMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-ProcNameMgr.Tpo -c -o libHPCsupport_la-ProcNameMgr.lo `test -f 'ProcNameMgr.cpp' || echo '$(srcdir)/'`ProcNameMgr.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-ProcNameMgr.Tpo $(DEPDIR)/libHPCsupport_la-ProcNameMgr.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProcNameMgr.cpp' object='libHPCsupport_la-ProcNameMgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-ProcNameMgr.lo `test -f 'ProcNameMgr.cpp' || echo '$(srcdir)/'`ProcNameMgr.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-ProcNameMgr.lo `test -f 'ProcNameMgr.cpp' || echo '$(srcdir)/'`ProcNameMgr.cpp libHPCsupport_la-NonUniformDegreeTree.lo: NonUniformDegreeTree.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-NonUniformDegreeTree.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Tpo -c -o libHPCsupport_la-NonUniformDegreeTree.lo `test -f 'NonUniformDegreeTree.cpp' || echo '$(srcdir)/'`NonUniformDegreeTree.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Tpo $(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='NonUniformDegreeTree.cpp' object='libHPCsupport_la-NonUniformDegreeTree.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-NonUniformDegreeTree.lo `test -f 'NonUniformDegreeTree.cpp' || echo '$(srcdir)/'`NonUniformDegreeTree.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-NonUniformDegreeTree.lo `test -f 'NonUniformDegreeTree.cpp' || echo '$(srcdir)/'`NonUniformDegreeTree.cpp libHPCsupport_la-IteratorStack.lo: IteratorStack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-IteratorStack.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-IteratorStack.Tpo -c -o libHPCsupport_la-IteratorStack.lo `test -f 'IteratorStack.cpp' || echo '$(srcdir)/'`IteratorStack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-IteratorStack.Tpo $(DEPDIR)/libHPCsupport_la-IteratorStack.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IteratorStack.cpp' object='libHPCsupport_la-IteratorStack.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IteratorStack.lo `test -f 'IteratorStack.cpp' || echo '$(srcdir)/'`IteratorStack.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IteratorStack.lo `test -f 'IteratorStack.cpp' || echo '$(srcdir)/'`IteratorStack.cpp libHPCsupport_la-StackableIterator.lo: StackableIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-StackableIterator.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-StackableIterator.Tpo -c -o libHPCsupport_la-StackableIterator.lo `test -f 'StackableIterator.cpp' || echo '$(srcdir)/'`StackableIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-StackableIterator.Tpo $(DEPDIR)/libHPCsupport_la-StackableIterator.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StackableIterator.cpp' object='libHPCsupport_la-StackableIterator.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StackableIterator.lo `test -f 'StackableIterator.cpp' || echo '$(srcdir)/'`StackableIterator.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StackableIterator.lo `test -f 'StackableIterator.cpp' || echo '$(srcdir)/'`StackableIterator.cpp libHPCsupport_la-WordSet.lo: WordSet.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-WordSet.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-WordSet.Tpo -c -o libHPCsupport_la-WordSet.lo `test -f 'WordSet.cpp' || echo '$(srcdir)/'`WordSet.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-WordSet.Tpo $(DEPDIR)/libHPCsupport_la-WordSet.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='WordSet.cpp' object='libHPCsupport_la-WordSet.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-WordSet.lo `test -f 'WordSet.cpp' || echo '$(srcdir)/'`WordSet.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-WordSet.lo `test -f 'WordSet.cpp' || echo '$(srcdir)/'`WordSet.cpp libHPCsupport_la-HashTable.lo: HashTable.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-HashTable.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-HashTable.Tpo -c -o libHPCsupport_la-HashTable.lo `test -f 'HashTable.cpp' || echo '$(srcdir)/'`HashTable.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-HashTable.Tpo $(DEPDIR)/libHPCsupport_la-HashTable.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='HashTable.cpp' object='libHPCsupport_la-HashTable.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTable.lo `test -f 'HashTable.cpp' || echo '$(srcdir)/'`HashTable.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTable.lo `test -f 'HashTable.cpp' || echo '$(srcdir)/'`HashTable.cpp libHPCsupport_la-HashTableSortedIterator.lo: HashTableSortedIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-HashTableSortedIterator.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Tpo -c -o libHPCsupport_la-HashTableSortedIterator.lo `test -f 'HashTableSortedIterator.cpp' || echo '$(srcdir)/'`HashTableSortedIterator.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Tpo $(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='HashTableSortedIterator.cpp' object='libHPCsupport_la-HashTableSortedIterator.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTableSortedIterator.lo `test -f 'HashTableSortedIterator.cpp' || echo '$(srcdir)/'`HashTableSortedIterator.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTableSortedIterator.lo `test -f 'HashTableSortedIterator.cpp' || echo '$(srcdir)/'`HashTableSortedIterator.cpp libHPCsupport_la-PointerStack.lo: PointerStack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-PointerStack.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-PointerStack.Tpo -c -o libHPCsupport_la-PointerStack.lo `test -f 'PointerStack.cpp' || echo '$(srcdir)/'`PointerStack.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-PointerStack.Tpo $(DEPDIR)/libHPCsupport_la-PointerStack.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PointerStack.cpp' object='libHPCsupport_la-PointerStack.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PointerStack.lo `test -f 'PointerStack.cpp' || echo '$(srcdir)/'`PointerStack.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PointerStack.lo `test -f 'PointerStack.cpp' || echo '$(srcdir)/'`PointerStack.cpp libHPCsupport_la-QuickSort.lo: QuickSort.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-QuickSort.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-QuickSort.Tpo -c -o libHPCsupport_la-QuickSort.lo `test -f 'QuickSort.cpp' || echo '$(srcdir)/'`QuickSort.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-QuickSort.Tpo $(DEPDIR)/libHPCsupport_la-QuickSort.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='QuickSort.cpp' object='libHPCsupport_la-QuickSort.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-QuickSort.lo `test -f 'QuickSort.cpp' || echo '$(srcdir)/'`QuickSort.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-QuickSort.lo `test -f 'QuickSort.cpp' || echo '$(srcdir)/'`QuickSort.cpp libHPCsupport_la-Unique.lo: Unique.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Unique.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Unique.Tpo -c -o libHPCsupport_la-Unique.lo `test -f 'Unique.cpp' || echo '$(srcdir)/'`Unique.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Unique.Tpo $(DEPDIR)/libHPCsupport_la-Unique.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Unique.cpp' object='libHPCsupport_la-Unique.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Unique.lo `test -f 'Unique.cpp' || echo '$(srcdir)/'`Unique.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Unique.lo `test -f 'Unique.cpp' || echo '$(srcdir)/'`Unique.cpp mostlyclean-libtool: -rm -f *.lo @@ -1027,7 +861,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1073,7 +906,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/xml/Makefile.in b/src/lib/xml/Makefile.in index b77ddc41c9..4bf3d622c3 100644 --- a/src/lib/xml/Makefile.in +++ b/src/lib/xml/Makefile.in @@ -164,9 +164,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -230,7 +229,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -547,9 +546,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/xml/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/xml/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/lib/xml/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/lib/xml/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -589,35 +588,17 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCxml_la-xml.Plo@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< libHPCxml_la-xml.lo: xml.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCxml_la-xml.lo -MD -MP -MF $(DEPDIR)/libHPCxml_la-xml.Tpo -c -o libHPCxml_la-xml.lo `test -f 'xml.cpp' || echo '$(srcdir)/'`xml.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCxml_la-xml.Tpo $(DEPDIR)/libHPCxml_la-xml.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='xml.cpp' object='libHPCxml_la-xml.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCxml_la-xml.lo `test -f 'xml.cpp' || echo '$(srcdir)/'`xml.cpp + $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCxml_la-xml.lo `test -f 'xml.cpp' || echo '$(srcdir)/'`xml.cpp mostlyclean-libtool: -rm -f *.lo @@ -751,7 +732,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -797,7 +777,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index 452bf4ffe3..64f26740f1 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -138,6 +138,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -461,9 +463,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/tool/hpcfnbounds/Makefile.in b/src/tool/hpcfnbounds/Makefile.in index 7f77645e1c..008aefc4cf 100644 --- a/src/tool/hpcfnbounds/Makefile.in +++ b/src/tool/hpcfnbounds/Makefile.in @@ -215,9 +215,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -281,7 +280,6 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcfnbounds.in \ - $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -598,9 +596,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcfnbounds/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcfnbounds/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcfnbounds/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcfnbounds/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -716,168 +714,71 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-amd-xop.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-code-ranges.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-function-entries.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-intervals.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-server.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Po@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< hpcfnbounds_bin-amd-xop.o: amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hpcfnbounds_bin-amd-xop.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo -c -o hpcfnbounds_bin-amd-xop.o `test -f 'amd-xop.c' || echo '$(srcdir)/'`amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo $(DEPDIR)/hpcfnbounds_bin-amd-xop.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='amd-xop.c' object='hpcfnbounds_bin-amd-xop.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.o `test -f 'amd-xop.c' || echo '$(srcdir)/'`amd-xop.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.o `test -f 'amd-xop.c' || echo '$(srcdir)/'`amd-xop.c hpcfnbounds_bin-amd-xop.obj: amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hpcfnbounds_bin-amd-xop.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo -c -o hpcfnbounds_bin-amd-xop.obj `if test -f 'amd-xop.c'; then $(CYGPATH_W) 'amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/amd-xop.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo $(DEPDIR)/hpcfnbounds_bin-amd-xop.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='amd-xop.c' object='hpcfnbounds_bin-amd-xop.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.obj `if test -f 'amd-xop.c'; then $(CYGPATH_W) 'amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/amd-xop.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.obj `if test -f 'amd-xop.c'; then $(CYGPATH_W) 'amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/amd-xop.c'; fi` .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcfnbounds_bin-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-main.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-main.Tpo -c -o hpcfnbounds_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-main.Tpo $(DEPDIR)/hpcfnbounds_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcfnbounds_bin-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcfnbounds_bin-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-main.Tpo -c -o hpcfnbounds_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-main.Tpo $(DEPDIR)/hpcfnbounds_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcfnbounds_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcfnbounds_bin-code-ranges.o: code-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-code-ranges.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo -c -o hpcfnbounds_bin-code-ranges.o `test -f 'code-ranges.cpp' || echo '$(srcdir)/'`code-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-code-ranges.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='code-ranges.cpp' object='hpcfnbounds_bin-code-ranges.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.o `test -f 'code-ranges.cpp' || echo '$(srcdir)/'`code-ranges.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.o `test -f 'code-ranges.cpp' || echo '$(srcdir)/'`code-ranges.cpp hpcfnbounds_bin-code-ranges.obj: code-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-code-ranges.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo -c -o hpcfnbounds_bin-code-ranges.obj `if test -f 'code-ranges.cpp'; then $(CYGPATH_W) 'code-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/code-ranges.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-code-ranges.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='code-ranges.cpp' object='hpcfnbounds_bin-code-ranges.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.obj `if test -f 'code-ranges.cpp'; then $(CYGPATH_W) 'code-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/code-ranges.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.obj `if test -f 'code-ranges.cpp'; then $(CYGPATH_W) 'code-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/code-ranges.cpp'; fi` hpcfnbounds_bin-function-entries.o: function-entries.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-function-entries.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo -c -o hpcfnbounds_bin-function-entries.o `test -f 'function-entries.cpp' || echo '$(srcdir)/'`function-entries.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo $(DEPDIR)/hpcfnbounds_bin-function-entries.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='function-entries.cpp' object='hpcfnbounds_bin-function-entries.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.o `test -f 'function-entries.cpp' || echo '$(srcdir)/'`function-entries.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.o `test -f 'function-entries.cpp' || echo '$(srcdir)/'`function-entries.cpp hpcfnbounds_bin-function-entries.obj: function-entries.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-function-entries.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo -c -o hpcfnbounds_bin-function-entries.obj `if test -f 'function-entries.cpp'; then $(CYGPATH_W) 'function-entries.cpp'; else $(CYGPATH_W) '$(srcdir)/function-entries.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo $(DEPDIR)/hpcfnbounds_bin-function-entries.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='function-entries.cpp' object='hpcfnbounds_bin-function-entries.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.obj `if test -f 'function-entries.cpp'; then $(CYGPATH_W) 'function-entries.cpp'; else $(CYGPATH_W) '$(srcdir)/function-entries.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.obj `if test -f 'function-entries.cpp'; then $(CYGPATH_W) 'function-entries.cpp'; else $(CYGPATH_W) '$(srcdir)/function-entries.cpp'; fi` hpcfnbounds_bin-intervals.o: intervals.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-intervals.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo -c -o hpcfnbounds_bin-intervals.o `test -f 'intervals.cpp' || echo '$(srcdir)/'`intervals.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo $(DEPDIR)/hpcfnbounds_bin-intervals.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='intervals.cpp' object='hpcfnbounds_bin-intervals.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.o `test -f 'intervals.cpp' || echo '$(srcdir)/'`intervals.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.o `test -f 'intervals.cpp' || echo '$(srcdir)/'`intervals.cpp hpcfnbounds_bin-intervals.obj: intervals.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-intervals.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo -c -o hpcfnbounds_bin-intervals.obj `if test -f 'intervals.cpp'; then $(CYGPATH_W) 'intervals.cpp'; else $(CYGPATH_W) '$(srcdir)/intervals.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo $(DEPDIR)/hpcfnbounds_bin-intervals.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='intervals.cpp' object='hpcfnbounds_bin-intervals.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.obj `if test -f 'intervals.cpp'; then $(CYGPATH_W) 'intervals.cpp'; else $(CYGPATH_W) '$(srcdir)/intervals.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.obj `if test -f 'intervals.cpp'; then $(CYGPATH_W) 'intervals.cpp'; else $(CYGPATH_W) '$(srcdir)/intervals.cpp'; fi` hpcfnbounds_bin-server.o: server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-server.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-server.Tpo -c -o hpcfnbounds_bin-server.o `test -f 'server.cpp' || echo '$(srcdir)/'`server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-server.Tpo $(DEPDIR)/hpcfnbounds_bin-server.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='server.cpp' object='hpcfnbounds_bin-server.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.o `test -f 'server.cpp' || echo '$(srcdir)/'`server.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.o `test -f 'server.cpp' || echo '$(srcdir)/'`server.cpp hpcfnbounds_bin-server.obj: server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-server.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-server.Tpo -c -o hpcfnbounds_bin-server.obj `if test -f 'server.cpp'; then $(CYGPATH_W) 'server.cpp'; else $(CYGPATH_W) '$(srcdir)/server.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-server.Tpo $(DEPDIR)/hpcfnbounds_bin-server.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='server.cpp' object='hpcfnbounds_bin-server.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.obj `if test -f 'server.cpp'; then $(CYGPATH_W) 'server.cpp'; else $(CYGPATH_W) '$(srcdir)/server.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.obj `if test -f 'server.cpp'; then $(CYGPATH_W) 'server.cpp'; else $(CYGPATH_W) '$(srcdir)/server.cpp'; fi` hpcfnbounds_bin-x86-process-ranges.o: x86-process-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-x86-process-ranges.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo -c -o hpcfnbounds_bin-x86-process-ranges.o `test -f 'x86-process-ranges.cpp' || echo '$(srcdir)/'`x86-process-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86-process-ranges.cpp' object='hpcfnbounds_bin-x86-process-ranges.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.o `test -f 'x86-process-ranges.cpp' || echo '$(srcdir)/'`x86-process-ranges.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.o `test -f 'x86-process-ranges.cpp' || echo '$(srcdir)/'`x86-process-ranges.cpp hpcfnbounds_bin-x86-process-ranges.obj: x86-process-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-x86-process-ranges.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo -c -o hpcfnbounds_bin-x86-process-ranges.obj `if test -f 'x86-process-ranges.cpp'; then $(CYGPATH_W) 'x86-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/x86-process-ranges.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86-process-ranges.cpp' object='hpcfnbounds_bin-x86-process-ranges.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.obj `if test -f 'x86-process-ranges.cpp'; then $(CYGPATH_W) 'x86-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/x86-process-ranges.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.obj `if test -f 'x86-process-ranges.cpp'; then $(CYGPATH_W) 'x86-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/x86-process-ranges.cpp'; fi` hpcfnbounds_bin-generic-process-ranges.o: generic-process-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-generic-process-ranges.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo -c -o hpcfnbounds_bin-generic-process-ranges.o `test -f 'generic-process-ranges.cpp' || echo '$(srcdir)/'`generic-process-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='generic-process-ranges.cpp' object='hpcfnbounds_bin-generic-process-ranges.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.o `test -f 'generic-process-ranges.cpp' || echo '$(srcdir)/'`generic-process-ranges.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.o `test -f 'generic-process-ranges.cpp' || echo '$(srcdir)/'`generic-process-ranges.cpp hpcfnbounds_bin-generic-process-ranges.obj: generic-process-ranges.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-generic-process-ranges.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo -c -o hpcfnbounds_bin-generic-process-ranges.obj `if test -f 'generic-process-ranges.cpp'; then $(CYGPATH_W) 'generic-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/generic-process-ranges.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='generic-process-ranges.cpp' object='hpcfnbounds_bin-generic-process-ranges.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.obj `if test -f 'generic-process-ranges.cpp'; then $(CYGPATH_W) 'generic-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/generic-process-ranges.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.obj `if test -f 'generic-process-ranges.cpp'; then $(CYGPATH_W) 'generic-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/generic-process-ranges.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -1011,7 +912,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1057,7 +957,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpclump/Makefile.in b/src/tool/hpclump/Makefile.in index 23aafe5a8c..7cdfb49cbb 100644 --- a/src/tool/hpclump/Makefile.in +++ b/src/tool/hpclump/Makefile.in @@ -165,9 +165,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -230,7 +229,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -556,9 +555,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpclump/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpclump/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpclump/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpclump/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -637,57 +636,26 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpclump-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpclump-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpclump-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-main.o -MD -MP -MF $(DEPDIR)/hpclump-main.Tpo -c -o hpclump-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-main.Tpo $(DEPDIR)/hpclump-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpclump-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpclump-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-main.obj -MD -MP -MF $(DEPDIR)/hpclump-main.Tpo -c -o hpclump-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-main.Tpo $(DEPDIR)/hpclump-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpclump-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpclump-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-Args.o -MD -MP -MF $(DEPDIR)/hpclump-Args.Tpo -c -o hpclump-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-Args.Tpo $(DEPDIR)/hpclump-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpclump-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpclump-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-Args.obj -MD -MP -MF $(DEPDIR)/hpclump-Args.Tpo -c -o hpclump-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-Args.Tpo $(DEPDIR)/hpclump-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpclump-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -821,7 +789,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -867,7 +834,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcprof-flat/Makefile.in b/src/tool/hpcprof-flat/Makefile.in index 9df244ee6d..800a312dd8 100644 --- a/src/tool/hpcprof-flat/Makefile.in +++ b/src/tool/hpcprof-flat/Makefile.in @@ -199,9 +199,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -265,7 +264,6 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcprof-flat.in \ - $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -601,9 +599,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcprof-flat/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-flat/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcprof-flat/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-flat/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -719,72 +717,32 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_flat_bin-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_flat_bin-ConfigParser.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_flat_bin-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcprof_flat_bin-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-main.o -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-main.Tpo -c -o hpcprof_flat_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-main.Tpo $(DEPDIR)/hpcprof_flat_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_flat_bin-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcprof_flat_bin-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-main.Tpo -c -o hpcprof_flat_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-main.Tpo $(DEPDIR)/hpcprof_flat_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_flat_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcprof_flat_bin-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-Args.Tpo -c -o hpcprof_flat_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-Args.Tpo $(DEPDIR)/hpcprof_flat_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_flat_bin-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcprof_flat_bin-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-Args.Tpo -c -o hpcprof_flat_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-Args.Tpo $(DEPDIR)/hpcprof_flat_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_flat_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` hpcprof_flat_bin-ConfigParser.o: ConfigParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-ConfigParser.o -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo -c -o hpcprof_flat_bin-ConfigParser.o `test -f 'ConfigParser.cpp' || echo '$(srcdir)/'`ConfigParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ConfigParser.cpp' object='hpcprof_flat_bin-ConfigParser.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.o `test -f 'ConfigParser.cpp' || echo '$(srcdir)/'`ConfigParser.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.o `test -f 'ConfigParser.cpp' || echo '$(srcdir)/'`ConfigParser.cpp hpcprof_flat_bin-ConfigParser.obj: ConfigParser.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-ConfigParser.obj -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo -c -o hpcprof_flat_bin-ConfigParser.obj `if test -f 'ConfigParser.cpp'; then $(CYGPATH_W) 'ConfigParser.cpp'; else $(CYGPATH_W) '$(srcdir)/ConfigParser.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ConfigParser.cpp' object='hpcprof_flat_bin-ConfigParser.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.obj `if test -f 'ConfigParser.cpp'; then $(CYGPATH_W) 'ConfigParser.cpp'; else $(CYGPATH_W) '$(srcdir)/ConfigParser.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.obj `if test -f 'ConfigParser.cpp'; then $(CYGPATH_W) 'ConfigParser.cpp'; else $(CYGPATH_W) '$(srcdir)/ConfigParser.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -918,7 +876,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -965,7 +922,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcprof-mpi/Makefile.in b/src/tool/hpcprof-mpi/Makefile.in index fb1719868c..512d215d43 100644 --- a/src/tool/hpcprof-mpi/Makefile.in +++ b/src/tool/hpcprof-mpi/Makefile.in @@ -199,9 +199,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -265,7 +264,6 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcprof-mpi.in \ - $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -602,9 +600,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcprof-mpi/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-mpi/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcprof-mpi/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-mpi/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -720,72 +718,32 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_mpi_bin-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_mpi_bin-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcprof_mpi_bin-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-main.o -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-main.Tpo -c -o hpcprof_mpi_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-main.Tpo $(DEPDIR)/hpcprof_mpi_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_mpi_bin-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcprof_mpi_bin-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-main.Tpo -c -o hpcprof_mpi_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-main.Tpo $(DEPDIR)/hpcprof_mpi_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_mpi_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcprof_mpi_bin-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo -c -o hpcprof_mpi_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo $(DEPDIR)/hpcprof_mpi_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_mpi_bin-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcprof_mpi_bin-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo -c -o hpcprof_mpi_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo $(DEPDIR)/hpcprof_mpi_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_mpi_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` hpcprof_mpi_bin-ParallelAnalysis.o: ParallelAnalysis.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-ParallelAnalysis.o -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo -c -o hpcprof_mpi_bin-ParallelAnalysis.o `test -f 'ParallelAnalysis.cpp' || echo '$(srcdir)/'`ParallelAnalysis.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ParallelAnalysis.cpp' object='hpcprof_mpi_bin-ParallelAnalysis.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.o `test -f 'ParallelAnalysis.cpp' || echo '$(srcdir)/'`ParallelAnalysis.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.o `test -f 'ParallelAnalysis.cpp' || echo '$(srcdir)/'`ParallelAnalysis.cpp hpcprof_mpi_bin-ParallelAnalysis.obj: ParallelAnalysis.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-ParallelAnalysis.obj -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo -c -o hpcprof_mpi_bin-ParallelAnalysis.obj `if test -f 'ParallelAnalysis.cpp'; then $(CYGPATH_W) 'ParallelAnalysis.cpp'; else $(CYGPATH_W) '$(srcdir)/ParallelAnalysis.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ParallelAnalysis.cpp' object='hpcprof_mpi_bin-ParallelAnalysis.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.obj `if test -f 'ParallelAnalysis.cpp'; then $(CYGPATH_W) 'ParallelAnalysis.cpp'; else $(CYGPATH_W) '$(srcdir)/ParallelAnalysis.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.obj `if test -f 'ParallelAnalysis.cpp'; then $(CYGPATH_W) 'ParallelAnalysis.cpp'; else $(CYGPATH_W) '$(srcdir)/ParallelAnalysis.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -919,7 +877,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -966,7 +923,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcprof/Makefile.in b/src/tool/hpcprof/Makefile.in index 3116f8f968..2e6d797d8b 100644 --- a/src/tool/hpcprof/Makefile.in +++ b/src/tool/hpcprof/Makefile.in @@ -196,9 +196,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -262,7 +261,6 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcprof.in \ - $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -597,9 +595,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcprof/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcprof/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -715,57 +713,26 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_bin-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_bin-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcprof_bin-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-main.o -MD -MP -MF $(DEPDIR)/hpcprof_bin-main.Tpo -c -o hpcprof_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-main.Tpo $(DEPDIR)/hpcprof_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_bin-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcprof_bin-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcprof_bin-main.Tpo -c -o hpcprof_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-main.Tpo $(DEPDIR)/hpcprof_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcprof_bin-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcprof_bin-Args.Tpo -c -o hpcprof_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-Args.Tpo $(DEPDIR)/hpcprof_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_bin-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcprof_bin-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcprof_bin-Args.Tpo -c -o hpcprof_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-Args.Tpo $(DEPDIR)/hpcprof_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -899,7 +866,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -946,7 +912,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcproftt/Makefile.in b/src/tool/hpcproftt/Makefile.in index 4811c0a3c1..f5ec00928b 100644 --- a/src/tool/hpcproftt/Makefile.in +++ b/src/tool/hpcproftt/Makefile.in @@ -198,9 +198,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -264,7 +263,6 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcproftt.in \ - $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -599,9 +597,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcproftt/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcproftt/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcproftt/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcproftt/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -717,57 +715,26 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcproftt_bin-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcproftt_bin-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcproftt_bin-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-main.o -MD -MP -MF $(DEPDIR)/hpcproftt_bin-main.Tpo -c -o hpcproftt_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-main.Tpo $(DEPDIR)/hpcproftt_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcproftt_bin-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcproftt_bin-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcproftt_bin-main.Tpo -c -o hpcproftt_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-main.Tpo $(DEPDIR)/hpcproftt_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcproftt_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcproftt_bin-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcproftt_bin-Args.Tpo -c -o hpcproftt_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-Args.Tpo $(DEPDIR)/hpcproftt_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcproftt_bin-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcproftt_bin-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcproftt_bin-Args.Tpo -c -o hpcproftt_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-Args.Tpo $(DEPDIR)/hpcproftt_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcproftt_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -901,7 +868,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -948,7 +914,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcrun-flat/Makefile.in b/src/tool/hpcrun-flat/Makefile.in index 43928dedf9..553a0fdbc5 100644 --- a/src/tool/hpcrun-flat/Makefile.in +++ b/src/tool/hpcrun-flat/Makefile.in @@ -204,9 +204,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -269,7 +268,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -667,9 +666,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcrun-flat/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun-flat/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcrun-flat/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun-flat/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -786,140 +785,59 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-dlpapi.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-hpcpapi.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-hpcrun.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-hpcpapi.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-monitor.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-monitor_preload.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-rtmap.Plo@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< libhpcrun_flat_la-monitor_preload.lo: monitor_preload.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-monitor_preload.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-monitor_preload.Tpo -c -o libhpcrun_flat_la-monitor_preload.lo `test -f 'monitor_preload.c' || echo '$(srcdir)/'`monitor_preload.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-monitor_preload.Tpo $(DEPDIR)/libhpcrun_flat_la-monitor_preload.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor_preload.c' object='libhpcrun_flat_la-monitor_preload.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor_preload.lo `test -f 'monitor_preload.c' || echo '$(srcdir)/'`monitor_preload.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor_preload.lo `test -f 'monitor_preload.c' || echo '$(srcdir)/'`monitor_preload.c libhpcrun_flat_la-monitor.lo: monitor.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-monitor.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-monitor.Tpo -c -o libhpcrun_flat_la-monitor.lo `test -f 'monitor.c' || echo '$(srcdir)/'`monitor.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-monitor.Tpo $(DEPDIR)/libhpcrun_flat_la-monitor.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor.c' object='libhpcrun_flat_la-monitor.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor.lo `test -f 'monitor.c' || echo '$(srcdir)/'`monitor.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor.lo `test -f 'monitor.c' || echo '$(srcdir)/'`monitor.c libhpcrun_flat_la-hpcpapi.lo: hpcpapi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-hpcpapi.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-hpcpapi.Tpo -c -o libhpcrun_flat_la-hpcpapi.lo `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-hpcpapi.Tpo $(DEPDIR)/libhpcrun_flat_la-hpcpapi.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcpapi.c' object='libhpcrun_flat_la-hpcpapi.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-hpcpapi.lo `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-hpcpapi.lo `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c libhpcrun_flat_la-rtmap.lo: rtmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-rtmap.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-rtmap.Tpo -c -o libhpcrun_flat_la-rtmap.lo `test -f 'rtmap.c' || echo '$(srcdir)/'`rtmap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-rtmap.Tpo $(DEPDIR)/libhpcrun_flat_la-rtmap.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rtmap.c' object='libhpcrun_flat_la-rtmap.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-rtmap.lo `test -f 'rtmap.c' || echo '$(srcdir)/'`rtmap.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-rtmap.lo `test -f 'rtmap.c' || echo '$(srcdir)/'`rtmap.c hpcrun_flat-hpcpapi.o: hpcpapi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-hpcpapi.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo -c -o hpcrun_flat-hpcpapi.o `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo $(DEPDIR)/hpcrun_flat-hpcpapi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcpapi.c' object='hpcrun_flat-hpcpapi.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.o `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.o `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c hpcrun_flat-hpcpapi.obj: hpcpapi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-hpcpapi.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo -c -o hpcrun_flat-hpcpapi.obj `if test -f 'hpcpapi.c'; then $(CYGPATH_W) 'hpcpapi.c'; else $(CYGPATH_W) '$(srcdir)/hpcpapi.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo $(DEPDIR)/hpcrun_flat-hpcpapi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcpapi.c' object='hpcrun_flat-hpcpapi.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.obj `if test -f 'hpcpapi.c'; then $(CYGPATH_W) 'hpcpapi.c'; else $(CYGPATH_W) '$(srcdir)/hpcpapi.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.obj `if test -f 'hpcpapi.c'; then $(CYGPATH_W) 'hpcpapi.c'; else $(CYGPATH_W) '$(srcdir)/hpcpapi.c'; fi` hpcrun_flat-dlpapi.o: dlpapi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-dlpapi.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-dlpapi.Tpo -c -o hpcrun_flat-dlpapi.o `test -f 'dlpapi.c' || echo '$(srcdir)/'`dlpapi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-dlpapi.Tpo $(DEPDIR)/hpcrun_flat-dlpapi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dlpapi.c' object='hpcrun_flat-dlpapi.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.o `test -f 'dlpapi.c' || echo '$(srcdir)/'`dlpapi.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.o `test -f 'dlpapi.c' || echo '$(srcdir)/'`dlpapi.c hpcrun_flat-dlpapi.obj: dlpapi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-dlpapi.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-dlpapi.Tpo -c -o hpcrun_flat-dlpapi.obj `if test -f 'dlpapi.c'; then $(CYGPATH_W) 'dlpapi.c'; else $(CYGPATH_W) '$(srcdir)/dlpapi.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-dlpapi.Tpo $(DEPDIR)/hpcrun_flat-dlpapi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dlpapi.c' object='hpcrun_flat-dlpapi.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.obj `if test -f 'dlpapi.c'; then $(CYGPATH_W) 'dlpapi.c'; else $(CYGPATH_W) '$(srcdir)/dlpapi.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.obj `if test -f 'dlpapi.c'; then $(CYGPATH_W) 'dlpapi.c'; else $(CYGPATH_W) '$(srcdir)/dlpapi.c'; fi` .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcrun_flat-hpcrun.o: hpcrun.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-hpcrun.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcrun.Tpo -c -o hpcrun_flat-hpcrun.o `test -f 'hpcrun.cpp' || echo '$(srcdir)/'`hpcrun.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcrun.Tpo $(DEPDIR)/hpcrun_flat-hpcrun.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='hpcrun.cpp' object='hpcrun_flat-hpcrun.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.o `test -f 'hpcrun.cpp' || echo '$(srcdir)/'`hpcrun.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.o `test -f 'hpcrun.cpp' || echo '$(srcdir)/'`hpcrun.cpp hpcrun_flat-hpcrun.obj: hpcrun.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-hpcrun.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcrun.Tpo -c -o hpcrun_flat-hpcrun.obj `if test -f 'hpcrun.cpp'; then $(CYGPATH_W) 'hpcrun.cpp'; else $(CYGPATH_W) '$(srcdir)/hpcrun.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcrun.Tpo $(DEPDIR)/hpcrun_flat-hpcrun.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='hpcrun.cpp' object='hpcrun_flat-hpcrun.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.obj `if test -f 'hpcrun.cpp'; then $(CYGPATH_W) 'hpcrun.cpp'; else $(CYGPATH_W) '$(srcdir)/hpcrun.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.obj `if test -f 'hpcrun.cpp'; then $(CYGPATH_W) 'hpcrun.cpp'; else $(CYGPATH_W) '$(srcdir)/hpcrun.cpp'; fi` hpcrun_flat-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-Args.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-Args.Tpo -c -o hpcrun_flat-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-Args.Tpo $(DEPDIR)/hpcrun_flat-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcrun_flat-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcrun_flat-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-Args.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-Args.Tpo -c -o hpcrun_flat-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-Args.Tpo $(DEPDIR)/hpcrun_flat-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcrun_flat-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -1053,7 +971,6 @@ clean-am: clean-binPROGRAMS clean-generic clean-libtool \ clean-pkglibLTLIBRARIES mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1100,7 +1017,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcrun/Makefile.am b/src/tool/hpcrun/Makefile.am index 31393e7b31..c6177522ae 100644 --- a/src/tool/hpcrun/Makefile.am +++ b/src/tool/hpcrun/Makefile.am @@ -233,7 +233,7 @@ UNW_PPC64_LD_FLAGS = # configuration UNW_LIBUNW_FILES = \ - $(UNW_UNIV_FILES) \ + $(UNW_COMMON_FILES) \ unwind/generic-libunwind/libunw-unwind.c \ unwind/common/default_validation_summary.c diff --git a/src/tool/hpcrun/Makefile.in b/src/tool/hpcrun/Makefile.in index 7a2b395518..38bf3fb0cb 100644 --- a/src/tool/hpcrun/Makefile.in +++ b/src/tool/hpcrun/Makefile.in @@ -464,9 +464,9 @@ am__libhpcrun_la_SOURCES_DIST = utilities/first_func.c main.h main.c \ sample-sources/gpu_ctxt_actions.c \ gpu_blame-cuda-driver-table.c gpu_blame-cuda-runtime-table.c \ unwind/common/backtrace.c unwind/common/unw-throw.c \ - unwind/generic-libunwind/libunw-unwind.c \ unwind/common/binarytree_uwi.c unwind/common/interval_t.c \ unwind/common/stack_troll.c unwind/common/uw_recipe_map.c \ + unwind/generic-libunwind/libunw-unwind.c \ unwind/ppc64/ppc64-unwind.c \ unwind/ppc64/ppc64-unwind-interval.c \ unwind/x86-family/x86-all.c unwind/x86-family/amd-xop.c \ @@ -574,17 +574,17 @@ am__objects_27 = sample-sources/libhpcrun_la-gpu_blame.lo \ am__objects_29 = unwind/common/libhpcrun_la-backtrace.lo \ unwind/common/libhpcrun_la-unw-throw.lo am__objects_30 = $(am__objects_29) \ - unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo \ - unwind/common/libhpcrun_la-default_validation_summary.lo -am__objects_31 = $(am__objects_29) \ unwind/common/libhpcrun_la-binarytree_uwi.lo \ unwind/common/libhpcrun_la-interval_t.lo \ unwind/common/libhpcrun_la-stack_troll.lo \ unwind/common/libhpcrun_la-uw_recipe_map.lo -am__objects_32 = $(am__objects_31) \ +am__objects_31 = $(am__objects_30) \ + unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo \ + unwind/common/libhpcrun_la-default_validation_summary.lo +am__objects_32 = $(am__objects_30) \ unwind/ppc64/libhpcrun_la-ppc64-unwind.lo \ unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo -am__objects_33 = $(am__objects_31) \ +am__objects_33 = $(am__objects_30) \ unwind/x86-family/libhpcrun_la-x86-all.lo \ unwind/x86-family/libhpcrun_la-amd-xop.lo \ unwind/x86-family/libhpcrun_la-x86-cold-path.lo \ @@ -604,7 +604,7 @@ am__objects_33 = $(am__objects_31) \ unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo @UNW_LIBUNW_FALSE@@UNW_PPC64_FALSE@@UNW_X86_TRUE@am__objects_34 = $(am__objects_33) @UNW_LIBUNW_FALSE@@UNW_PPC64_TRUE@am__objects_34 = $(am__objects_32) -@UNW_LIBUNW_TRUE@am__objects_34 = $(am__objects_30) +@UNW_LIBUNW_TRUE@am__objects_34 = $(am__objects_31) am_libhpcrun_la_OBJECTS = $(am__objects_7) $(am__objects_8) \ $(am__objects_10) $(am__objects_12) $(am__objects_14) \ $(am__objects_16) $(am__objects_18) $(am__objects_20) \ @@ -722,10 +722,10 @@ am__libhpcrun_o_SOURCES_DIST = utilities/first_func.c main.h main.c \ sample-sources/papi.c sample-sources/papi-c-cupti.c \ sample-sources/papi-c.c sample-sources/papi-c-extended-info.c \ sample-sources/upc.c unwind/common/backtrace.c \ - unwind/common/unw-throw.c \ + unwind/common/unw-throw.c unwind/common/binarytree_uwi.c \ + unwind/common/interval_t.c unwind/common/stack_troll.c \ + unwind/common/uw_recipe_map.c \ unwind/generic-libunwind/libunw-unwind.c \ - unwind/common/binarytree_uwi.c unwind/common/interval_t.c \ - unwind/common/stack_troll.c unwind/common/uw_recipe_map.c \ unwind/ppc64/ppc64-unwind.c \ unwind/ppc64/ppc64-unwind-interval.c \ unwind/x86-family/x86-all.c unwind/x86-family/amd-xop.c \ @@ -831,17 +831,17 @@ am__objects_50 = sample-sources/libhpcrun_o-upc.$(OBJEXT) am__objects_52 = unwind/common/libhpcrun_o-backtrace.$(OBJEXT) \ unwind/common/libhpcrun_o-unw-throw.$(OBJEXT) am__objects_53 = $(am__objects_52) \ - unwind/generic-libunwind/libhpcrun_o-libunw-unwind.$(OBJEXT) \ - unwind/common/libhpcrun_o-default_validation_summary.$(OBJEXT) -am__objects_54 = $(am__objects_52) \ unwind/common/libhpcrun_o-binarytree_uwi.$(OBJEXT) \ unwind/common/libhpcrun_o-interval_t.$(OBJEXT) \ unwind/common/libhpcrun_o-stack_troll.$(OBJEXT) \ unwind/common/libhpcrun_o-uw_recipe_map.$(OBJEXT) -am__objects_55 = $(am__objects_54) \ +am__objects_54 = $(am__objects_53) \ + unwind/generic-libunwind/libhpcrun_o-libunw-unwind.$(OBJEXT) \ + unwind/common/libhpcrun_o-default_validation_summary.$(OBJEXT) +am__objects_55 = $(am__objects_53) \ unwind/ppc64/libhpcrun_o-ppc64-unwind.$(OBJEXT) \ unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.$(OBJEXT) -am__objects_56 = $(am__objects_54) \ +am__objects_56 = $(am__objects_53) \ unwind/x86-family/libhpcrun_o-x86-all.$(OBJEXT) \ unwind/x86-family/libhpcrun_o-amd-xop.$(OBJEXT) \ unwind/x86-family/libhpcrun_o-x86-cold-path.$(OBJEXT) \ @@ -861,7 +861,7 @@ am__objects_56 = $(am__objects_54) \ unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.$(OBJEXT) @UNW_LIBUNW_FALSE@@UNW_PPC64_FALSE@@UNW_X86_TRUE@am__objects_57 = $(am__objects_56) @UNW_LIBUNW_FALSE@@UNW_PPC64_TRUE@am__objects_57 = $(am__objects_55) -@UNW_LIBUNW_TRUE@am__objects_57 = $(am__objects_53) +@UNW_LIBUNW_TRUE@am__objects_57 = $(am__objects_54) am_libhpcrun_o_OBJECTS = $(am__objects_35) $(am__objects_36) \ $(am__objects_38) $(am__objects_40) $(am__objects_42) \ $(am__objects_44) $(am__objects_46) $(am__objects_49) \ @@ -887,9 +887,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ @@ -995,7 +994,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags DIST_SUBDIRS = utilities/bgq-cnk -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -1386,7 +1385,7 @@ UNW_PPC64_LD_FLAGS = # library component are handled via the LIBUNWIND # configuration UNW_LIBUNW_FILES = \ - $(UNW_UNIV_FILES) \ + $(UNW_COMMON_FILES) \ unwind/generic-libunwind/libunw-unwind.c \ unwind/common/default_validation_summary.c @@ -1806,9 +1805,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcrun/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcrun/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1861,44 +1860,36 @@ clean-pkglibLIBRARIES: sample-sources/$(am__dirstamp): @$(MKDIR_P) sample-sources @: > sample-sources/$(am__dirstamp) -sample-sources/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) sample-sources/$(DEPDIR) - @: > sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_ga_wrap_a-ga-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_ga_wrap.a: $(libhpcrun_ga_wrap_a_OBJECTS) $(libhpcrun_ga_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_ga_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_ga_wrap.a $(AM_V_AR)$(libhpcrun_ga_wrap_a_AR) libhpcrun_ga_wrap.a $(libhpcrun_ga_wrap_a_OBJECTS) $(libhpcrun_ga_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_ga_wrap.a sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_gpu_wrap.a: $(libhpcrun_gpu_wrap_a_OBJECTS) $(libhpcrun_gpu_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_gpu_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_gpu_wrap.a $(AM_V_AR)$(libhpcrun_gpu_wrap_a_AR) libhpcrun_gpu_wrap.a $(libhpcrun_gpu_wrap_a_OBJECTS) $(libhpcrun_gpu_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_gpu_wrap.a sample-sources/libhpcrun_io_wrap_a-io-over.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_io_wrap.a: $(libhpcrun_io_wrap_a_OBJECTS) $(libhpcrun_io_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_io_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_io_wrap.a $(AM_V_AR)$(libhpcrun_io_wrap_a_AR) libhpcrun_io_wrap.a $(libhpcrun_io_wrap_a_OBJECTS) $(libhpcrun_io_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_io_wrap.a sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_memleak_wrap.a: $(libhpcrun_memleak_wrap_a_OBJECTS) $(libhpcrun_memleak_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_memleak_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_memleak_wrap.a $(AM_V_AR)$(libhpcrun_memleak_wrap_a_AR) libhpcrun_memleak_wrap.a $(libhpcrun_memleak_wrap_a_OBJECTS) $(libhpcrun_memleak_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_memleak_wrap.a sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_pthread_wrap.a: $(libhpcrun_pthread_wrap_a_OBJECTS) $(libhpcrun_pthread_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_pthread_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_pthread_wrap.a @@ -1907,12 +1898,8 @@ libhpcrun_pthread_wrap.a: $(libhpcrun_pthread_wrap_a_OBJECTS) $(libhpcrun_pthrea monitor-exts/$(am__dirstamp): @$(MKDIR_P) monitor-exts @: > monitor-exts/$(am__dirstamp) -monitor-exts/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) monitor-exts/$(DEPDIR) - @: > monitor-exts/$(DEPDIR)/$(am__dirstamp) monitor-exts/libhpcrun_wrap_a-openmp.$(OBJEXT): \ - monitor-exts/$(am__dirstamp) \ - monitor-exts/$(DEPDIR)/$(am__dirstamp) + monitor-exts/$(am__dirstamp) libhpcrun_wrap.a: $(libhpcrun_wrap_a_OBJECTS) $(libhpcrun_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_wrap.a @@ -1926,11 +1913,7 @@ libhpctoolkit.a: $(libhpctoolkit_a_OBJECTS) $(libhpctoolkit_a_DEPENDENCIES) $(EX plugins/$(am__dirstamp): @$(MKDIR_P) plugins @: > plugins/$(am__dirstamp) -plugins/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) plugins/$(DEPDIR) - @: > plugins/$(DEPDIR)/$(am__dirstamp) -plugins/ibm-xlomp-wrappers.$(OBJEXT): plugins/$(am__dirstamp) \ - plugins/$(DEPDIR)/$(am__dirstamp) +plugins/ibm-xlomp-wrappers.$(OBJEXT): plugins/$(am__dirstamp) libibm_xlomp_wrappers.a: $(libibm_xlomp_wrappers_a_OBJECTS) $(libibm_xlomp_wrappers_a_DEPENDENCIES) $(EXTRA_libibm_xlomp_wrappers_a_DEPENDENCIES) $(AM_V_at)-rm -f libibm_xlomp_wrappers.a @@ -1974,409 +1957,245 @@ clean-pkglibLTLIBRARIES: lush-agents/$(am__dirstamp): @$(MKDIR_P) lush-agents @: > lush-agents/$(am__dirstamp) -lush-agents/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) lush-agents/$(DEPDIR) - @: > lush-agents/$(DEPDIR)/$(am__dirstamp) lush-agents/libagent_cilk_la-agent-cilk.lo: \ - lush-agents/$(am__dirstamp) \ - lush-agents/$(DEPDIR)/$(am__dirstamp) + lush-agents/$(am__dirstamp) lush/$(am__dirstamp): @$(MKDIR_P) lush @: > lush/$(am__dirstamp) -lush/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) lush/$(DEPDIR) - @: > lush/$(DEPDIR)/$(am__dirstamp) -lush/libagent_cilk_la-lush-support-rt.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) +lush/libagent_cilk_la-lush-support-rt.lo: lush/$(am__dirstamp) libagent-cilk.la: $(libagent_cilk_la_OBJECTS) $(libagent_cilk_la_DEPENDENCIES) $(EXTRA_libagent_cilk_la_DEPENDENCIES) $(AM_V_CCLD)$(libagent_cilk_la_LINK) $(am_libagent_cilk_la_rpath) $(libagent_cilk_la_OBJECTS) $(libagent_cilk_la_LIBADD) $(LIBS) lush-agents/libagent_pthread_la-agent-pthread.lo: \ - lush-agents/$(am__dirstamp) \ - lush-agents/$(DEPDIR)/$(am__dirstamp) -lush/libagent_pthread_la-lush-support-rt.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) + lush-agents/$(am__dirstamp) +lush/libagent_pthread_la-lush-support-rt.lo: lush/$(am__dirstamp) libagent-pthread.la: $(libagent_pthread_la_OBJECTS) $(libagent_pthread_la_DEPENDENCIES) $(EXTRA_libagent_pthread_la_DEPENDENCIES) $(AM_V_CCLD)$(libagent_pthread_la_LINK) $(am_libagent_pthread_la_rpath) $(libagent_pthread_la_OBJECTS) $(libagent_pthread_la_LIBADD) $(LIBS) -lush-agents/libagent_tbb_la-agent-tbb.lo: lush-agents/$(am__dirstamp) \ - lush-agents/$(DEPDIR)/$(am__dirstamp) -lush/libagent_tbb_la-lush-support-rt.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) +lush-agents/libagent_tbb_la-agent-tbb.lo: lush-agents/$(am__dirstamp) +lush/libagent_tbb_la-lush-support-rt.lo: lush/$(am__dirstamp) libagent-tbb.la: $(libagent_tbb_la_OBJECTS) $(libagent_tbb_la_DEPENDENCIES) $(EXTRA_libagent_tbb_la_DEPENDENCIES) $(AM_V_CCLD)$(libagent_tbb_la_LINK) $(am_libagent_tbb_la_rpath) $(libagent_tbb_la_OBJECTS) $(libagent_tbb_la_LIBADD) $(LIBS) utilities/$(am__dirstamp): @$(MKDIR_P) utilities @: > utilities/$(am__dirstamp) -utilities/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) utilities/$(DEPDIR) - @: > utilities/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_la-first_func.lo: utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-first_func.lo: utilities/$(am__dirstamp) sample-sources/blame-shift/$(am__dirstamp): @$(MKDIR_P) sample-sources/blame-shift @: > sample-sources/blame-shift/$(am__dirstamp) -sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) sample-sources/blame-shift/$(DEPDIR) - @: > sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_la-blame-shift.lo: \ - sample-sources/blame-shift/$(am__dirstamp) \ - sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_la-blame-map.lo: \ - sample-sources/blame-shift/$(am__dirstamp) \ - sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-common.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-ga.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-io.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-itimer.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-idle.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) +sample-sources/libhpcrun_la-common.lo: sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-ga.lo: sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-io.lo: sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-itimer.lo: sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-idle.lo: sample-sources/$(am__dirstamp) sample-sources/libhpcrun_la-memleak.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_la-pthread-blame.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-none.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-retcnt.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-sync.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-none.lo: sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-retcnt.lo: sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-sync.lo: sample-sources/$(am__dirstamp) cct/$(am__dirstamp): @$(MKDIR_P) cct @: > cct/$(am__dirstamp) -cct/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) cct/$(DEPDIR) - @: > cct/$(DEPDIR)/$(am__dirstamp) -cct/libhpcrun_la-cct_bundle.lo: cct/$(am__dirstamp) \ - cct/$(DEPDIR)/$(am__dirstamp) -cct/libhpcrun_la-cct_ctxt.lo: cct/$(am__dirstamp) \ - cct/$(DEPDIR)/$(am__dirstamp) -cct/libhpcrun_la-cct.lo: cct/$(am__dirstamp) \ - cct/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_la-cct_bundle.lo: cct/$(am__dirstamp) +cct/libhpcrun_la-cct_ctxt.lo: cct/$(am__dirstamp) +cct/libhpcrun_la-cct.lo: cct/$(am__dirstamp) trampoline/common/$(am__dirstamp): @$(MKDIR_P) trampoline/common @: > trampoline/common/$(am__dirstamp) -trampoline/common/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) trampoline/common/$(DEPDIR) - @: > trampoline/common/$(DEPDIR)/$(am__dirstamp) trampoline/common/libhpcrun_la-trampoline.lo: \ - trampoline/common/$(am__dirstamp) \ - trampoline/common/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_la-lush-backtrace.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_la-lush.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_la-lush-pthread.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_la-lush-support-rt.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_la-lushi-cb.lo: lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) + trampoline/common/$(am__dirstamp) +lush/libhpcrun_la-lush-backtrace.lo: lush/$(am__dirstamp) +lush/libhpcrun_la-lush.lo: lush/$(am__dirstamp) +lush/libhpcrun_la-lush-pthread.lo: lush/$(am__dirstamp) +lush/libhpcrun_la-lush-support-rt.lo: lush/$(am__dirstamp) +lush/libhpcrun_la-lushi-cb.lo: lush/$(am__dirstamp) fnbounds/$(am__dirstamp): @$(MKDIR_P) fnbounds @: > fnbounds/$(am__dirstamp) -fnbounds/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) fnbounds/$(DEPDIR) - @: > fnbounds/$(DEPDIR)/$(am__dirstamp) -fnbounds/libhpcrun_la-fnbounds_common.lo: fnbounds/$(am__dirstamp) \ - fnbounds/$(DEPDIR)/$(am__dirstamp) +fnbounds/libhpcrun_la-fnbounds_common.lo: fnbounds/$(am__dirstamp) memory/$(am__dirstamp): @$(MKDIR_P) memory @: > memory/$(am__dirstamp) -memory/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) memory/$(DEPDIR) - @: > memory/$(DEPDIR)/$(am__dirstamp) -memory/libhpcrun_la-mem.lo: memory/$(am__dirstamp) \ - memory/$(DEPDIR)/$(am__dirstamp) -memory/libhpcrun_la-mmap.lo: memory/$(am__dirstamp) \ - memory/$(DEPDIR)/$(am__dirstamp) +memory/libhpcrun_la-mem.lo: memory/$(am__dirstamp) +memory/libhpcrun_la-mmap.lo: memory/$(am__dirstamp) messages/$(am__dirstamp): @$(MKDIR_P) messages @: > messages/$(am__dirstamp) -messages/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) messages/$(DEPDIR) - @: > messages/$(DEPDIR)/$(am__dirstamp) -messages/libhpcrun_la-debug-flag.lo: messages/$(am__dirstamp) \ - messages/$(DEPDIR)/$(am__dirstamp) -messages/libhpcrun_la-messages-sync.lo: messages/$(am__dirstamp) \ - messages/$(DEPDIR)/$(am__dirstamp) -messages/libhpcrun_la-messages-async.lo: messages/$(am__dirstamp) \ - messages/$(DEPDIR)/$(am__dirstamp) -messages/libhpcrun_la-fmt.lo: messages/$(am__dirstamp) \ - messages/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_la-executable-path.lo: utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_la-ip-normalized.lo: utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_la-tokenize.lo: utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_la-unlink.lo: utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) -fnbounds/libhpcrun_la-fnbounds_client.lo: fnbounds/$(am__dirstamp) \ - fnbounds/$(DEPDIR)/$(am__dirstamp) -fnbounds/libhpcrun_la-fnbounds_dynamic.lo: fnbounds/$(am__dirstamp) \ - fnbounds/$(DEPDIR)/$(am__dirstamp) -monitor-exts/libhpcrun_la-openmp.lo: monitor-exts/$(am__dirstamp) \ - monitor-exts/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_la-debug-flag.lo: messages/$(am__dirstamp) +messages/libhpcrun_la-messages-sync.lo: messages/$(am__dirstamp) +messages/libhpcrun_la-messages-async.lo: messages/$(am__dirstamp) +messages/libhpcrun_la-fmt.lo: messages/$(am__dirstamp) +utilities/libhpcrun_la-executable-path.lo: utilities/$(am__dirstamp) +utilities/libhpcrun_la-ip-normalized.lo: utilities/$(am__dirstamp) +utilities/libhpcrun_la-tokenize.lo: utilities/$(am__dirstamp) +utilities/libhpcrun_la-unlink.lo: utilities/$(am__dirstamp) +fnbounds/libhpcrun_la-fnbounds_client.lo: fnbounds/$(am__dirstamp) +fnbounds/libhpcrun_la-fnbounds_dynamic.lo: fnbounds/$(am__dirstamp) +monitor-exts/libhpcrun_la-openmp.lo: monitor-exts/$(am__dirstamp) os/linux/$(am__dirstamp): @$(MKDIR_P) os/linux @: > os/linux/$(am__dirstamp) -os/linux/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) os/linux/$(DEPDIR) - @: > os/linux/$(DEPDIR)/$(am__dirstamp) -os/linux/libhpcrun_la-dylib.lo: os/linux/$(am__dirstamp) \ - os/linux/$(DEPDIR)/$(am__dirstamp) +os/linux/libhpcrun_la-dylib.lo: os/linux/$(am__dirstamp) unwind/common/$(am__dirstamp): @$(MKDIR_P) unwind/common @: > unwind/common/$(am__dirstamp) -unwind/common/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) unwind/common/$(DEPDIR) - @: > unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-default_validation_summary.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) trampoline/ppc64/$(am__dirstamp): @$(MKDIR_P) trampoline/ppc64 @: > trampoline/ppc64/$(am__dirstamp) -trampoline/ppc64/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) trampoline/ppc64/$(DEPDIR) - @: > trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) trampoline/ppc64/libhpcrun_la-ppc64-tramp.lo: \ - trampoline/ppc64/$(am__dirstamp) \ - trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) + trampoline/ppc64/$(am__dirstamp) utilities/arch/ppc64/$(am__dirstamp): @$(MKDIR_P) utilities/arch/ppc64 @: > utilities/arch/ppc64/$(am__dirstamp) -utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) utilities/arch/ppc64/$(DEPDIR) - @: > utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo: \ - utilities/arch/ppc64/$(am__dirstamp) \ - utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) + utilities/arch/ppc64/$(am__dirstamp) trampoline/x86-family/$(am__dirstamp): @$(MKDIR_P) trampoline/x86-family @: > trampoline/x86-family/$(am__dirstamp) -trampoline/x86-family/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) trampoline/x86-family/$(DEPDIR) - @: > trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) trampoline/x86-family/libhpcrun_la-x86-tramp.lo: \ - trampoline/x86-family/$(am__dirstamp) \ - trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) + trampoline/x86-family/$(am__dirstamp) utilities/arch/x86-family/$(am__dirstamp): @$(MKDIR_P) utilities/arch/x86-family @: > utilities/arch/x86-family/$(am__dirstamp) -utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) utilities/arch/x86-family/$(DEPDIR) - @: > utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo: \ - utilities/arch/x86-family/$(am__dirstamp) \ - utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) + utilities/arch/x86-family/$(am__dirstamp) trampoline/ia64/$(am__dirstamp): @$(MKDIR_P) trampoline/ia64 @: > trampoline/ia64/$(am__dirstamp) -trampoline/ia64/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) trampoline/ia64/$(DEPDIR) - @: > trampoline/ia64/$(DEPDIR)/$(am__dirstamp) trampoline/ia64/libhpcrun_la-ia64-tramp.lo: \ - trampoline/ia64/$(am__dirstamp) \ - trampoline/ia64/$(DEPDIR)/$(am__dirstamp) + trampoline/ia64/$(am__dirstamp) utilities/arch/ia64/$(am__dirstamp): @$(MKDIR_P) utilities/arch/ia64 @: > utilities/arch/ia64/$(am__dirstamp) -utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) utilities/arch/ia64/$(DEPDIR) - @: > utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo: \ - utilities/arch/ia64/$(am__dirstamp) \ - utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) + utilities/arch/ia64/$(am__dirstamp) trampoline/aarch64/$(am__dirstamp): @$(MKDIR_P) trampoline/aarch64 @: > trampoline/aarch64/$(am__dirstamp) -trampoline/aarch64/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) trampoline/aarch64/$(DEPDIR) - @: > trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo: \ - trampoline/aarch64/$(am__dirstamp) \ - trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) + trampoline/aarch64/$(am__dirstamp) utilities/arch/libunwind/$(am__dirstamp): @$(MKDIR_P) utilities/arch/libunwind @: > utilities/arch/libunwind/$(am__dirstamp) -utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) utilities/arch/libunwind/$(DEPDIR) - @: > utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo: \ - utilities/arch/libunwind/$(am__dirstamp) \ - utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-papi.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + utilities/arch/libunwind/$(am__dirstamp) +sample-sources/libhpcrun_la-papi.lo: sample-sources/$(am__dirstamp) sample-sources/libhpcrun_la-papi-c-cupti.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-papi-c.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-papi-c.lo: sample-sources/$(am__dirstamp) sample-sources/libhpcrun_la-papi-c-extended-info.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -sample-sources/libhpcrun_la-upc.lo: sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) +sample-sources/libhpcrun_la-upc.lo: sample-sources/$(am__dirstamp) sample-sources/libhpcrun_la-gpu_blame.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_la-gpu_ctxt_actions.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) unwind/common/libhpcrun_la-backtrace.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_la-unw-throw.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) -unwind/generic-libunwind/$(am__dirstamp): - @$(MKDIR_P) unwind/generic-libunwind - @: > unwind/generic-libunwind/$(am__dirstamp) -unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) unwind/generic-libunwind/$(DEPDIR) - @: > unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) -unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: \ - unwind/generic-libunwind/$(am__dirstamp) \ - unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_la-binarytree_uwi.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_la-interval_t.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_la-stack_troll.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_la-uw_recipe_map.lo: \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) +unwind/generic-libunwind/$(am__dirstamp): + @$(MKDIR_P) unwind/generic-libunwind + @: > unwind/generic-libunwind/$(am__dirstamp) +unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: \ + unwind/generic-libunwind/$(am__dirstamp) unwind/ppc64/$(am__dirstamp): @$(MKDIR_P) unwind/ppc64 @: > unwind/ppc64/$(am__dirstamp) -unwind/ppc64/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) unwind/ppc64/$(DEPDIR) - @: > unwind/ppc64/$(DEPDIR)/$(am__dirstamp) unwind/ppc64/libhpcrun_la-ppc64-unwind.lo: \ - unwind/ppc64/$(am__dirstamp) \ - unwind/ppc64/$(DEPDIR)/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo: \ - unwind/ppc64/$(am__dirstamp) \ - unwind/ppc64/$(DEPDIR)/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) unwind/x86-family/$(am__dirstamp): @$(MKDIR_P) unwind/x86-family @: > unwind/x86-family/$(am__dirstamp) -unwind/x86-family/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) unwind/x86-family/$(DEPDIR) - @: > unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-all.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-amd-xop.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-cold-path.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind-support.lo: \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/manual-intervals/$(am__dirstamp): @$(MKDIR_P) unwind/x86-family/manual-intervals @: > unwind/x86-family/manual-intervals/$(am__dirstamp) -unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) unwind/x86-family/manual-intervals/$(DEPDIR) - @: > unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_la-last_func.lo: utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) +utilities/libhpcrun_la-last_func.lo: utilities/$(am__dirstamp) libhpcrun.la: $(libhpcrun_la_OBJECTS) $(libhpcrun_la_DEPENDENCIES) $(EXTRA_libhpcrun_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_la_LINK) $(am_libhpcrun_la_rpath) $(libhpcrun_la_OBJECTS) $(libhpcrun_la_LIBADD) $(LIBS) sample-sources/libhpcrun_ga_la-ga-overrides.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_ga.la: $(libhpcrun_ga_la_OBJECTS) $(libhpcrun_ga_la_DEPENDENCIES) $(EXTRA_libhpcrun_ga_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_ga_la_LINK) $(am_libhpcrun_ga_la_rpath) $(libhpcrun_ga_la_OBJECTS) $(libhpcrun_ga_la_LIBADD) $(LIBS) sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_gpu.la: $(libhpcrun_gpu_la_OBJECTS) $(libhpcrun_gpu_la_DEPENDENCIES) $(EXTRA_libhpcrun_gpu_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_gpu_la_LINK) $(am_libhpcrun_gpu_la_rpath) $(libhpcrun_gpu_la_OBJECTS) $(libhpcrun_gpu_la_LIBADD) $(LIBS) sample-sources/libhpcrun_io_la-io-over.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_io.la: $(libhpcrun_io_la_OBJECTS) $(libhpcrun_io_la_DEPENDENCIES) $(EXTRA_libhpcrun_io_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_io_la_LINK) $(am_libhpcrun_io_la_rpath) $(libhpcrun_io_la_OBJECTS) $(libhpcrun_io_la_LIBADD) $(LIBS) sample-sources/libhpcrun_memleak_la-memleak-overrides.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_memleak.la: $(libhpcrun_memleak_la_OBJECTS) $(libhpcrun_memleak_la_DEPENDENCIES) $(EXTRA_libhpcrun_memleak_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_memleak_la_LINK) $(am_libhpcrun_memleak_la_rpath) $(libhpcrun_memleak_la_OBJECTS) $(libhpcrun_memleak_la_LIBADD) $(LIBS) ./$(am__dirstamp): @$(MKDIR_P) . @: > ./$(am__dirstamp) -$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ./$(DEPDIR) - @: > $(DEPDIR)/$(am__dirstamp) -./libhpcrun_mpi_la-mpi-overrides.lo: ./$(am__dirstamp) \ - $(DEPDIR)/$(am__dirstamp) +./libhpcrun_mpi_la-mpi-overrides.lo: ./$(am__dirstamp) libhpcrun_mpi.la: $(libhpcrun_mpi_la_OBJECTS) $(libhpcrun_mpi_la_DEPENDENCIES) $(EXTRA_libhpcrun_mpi_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_mpi_la_LINK) $(am_libhpcrun_mpi_la_rpath) $(libhpcrun_mpi_la_OBJECTS) $(libhpcrun_mpi_la_LIBADD) $(LIBS) sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo: \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) libhpcrun_pthread.la: $(libhpcrun_pthread_la_OBJECTS) $(libhpcrun_pthread_la_DEPENDENCIES) $(EXTRA_libhpcrun_pthread_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_pthread_la_LINK) $(am_libhpcrun_pthread_la_rpath) $(libhpcrun_pthread_la_OBJECTS) $(libhpcrun_pthread_la_LIBADD) $(LIBS) @@ -2441,209 +2260,140 @@ clean-pkglibexecPROGRAMS: list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -utilities/libhpcrun_o-first_func.$(OBJEXT): utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_o-first_func.$(OBJEXT): utilities/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_o-blame-shift.$(OBJEXT): \ - sample-sources/blame-shift/$(am__dirstamp) \ - sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_o-blame-map.$(OBJEXT): \ - sample-sources/blame-shift/$(am__dirstamp) \ - sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) sample-sources/libhpcrun_o-common.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-ga.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-io.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-itimer.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-idle.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-memleak.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-pthread-blame.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-none.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-retcnt.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-sync.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) -cct/libhpcrun_o-cct_bundle.$(OBJEXT): cct/$(am__dirstamp) \ - cct/$(DEPDIR)/$(am__dirstamp) -cct/libhpcrun_o-cct_ctxt.$(OBJEXT): cct/$(am__dirstamp) \ - cct/$(DEPDIR)/$(am__dirstamp) -cct/libhpcrun_o-cct.$(OBJEXT): cct/$(am__dirstamp) \ - cct/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) +cct/libhpcrun_o-cct_bundle.$(OBJEXT): cct/$(am__dirstamp) +cct/libhpcrun_o-cct_ctxt.$(OBJEXT): cct/$(am__dirstamp) +cct/libhpcrun_o-cct.$(OBJEXT): cct/$(am__dirstamp) trampoline/common/libhpcrun_o-trampoline.$(OBJEXT): \ - trampoline/common/$(am__dirstamp) \ - trampoline/common/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_o-lush-backtrace.$(OBJEXT): lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_o-lush.$(OBJEXT): lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_o-lush-pthread.$(OBJEXT): lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_o-lush-support-rt.$(OBJEXT): lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) -lush/libhpcrun_o-lushi-cb.$(OBJEXT): lush/$(am__dirstamp) \ - lush/$(DEPDIR)/$(am__dirstamp) + trampoline/common/$(am__dirstamp) +lush/libhpcrun_o-lush-backtrace.$(OBJEXT): lush/$(am__dirstamp) +lush/libhpcrun_o-lush.$(OBJEXT): lush/$(am__dirstamp) +lush/libhpcrun_o-lush-pthread.$(OBJEXT): lush/$(am__dirstamp) +lush/libhpcrun_o-lush-support-rt.$(OBJEXT): lush/$(am__dirstamp) +lush/libhpcrun_o-lushi-cb.$(OBJEXT): lush/$(am__dirstamp) fnbounds/libhpcrun_o-fnbounds_common.$(OBJEXT): \ - fnbounds/$(am__dirstamp) fnbounds/$(DEPDIR)/$(am__dirstamp) -memory/libhpcrun_o-mem.$(OBJEXT): memory/$(am__dirstamp) \ - memory/$(DEPDIR)/$(am__dirstamp) -memory/libhpcrun_o-mmap.$(OBJEXT): memory/$(am__dirstamp) \ - memory/$(DEPDIR)/$(am__dirstamp) -messages/libhpcrun_o-debug-flag.$(OBJEXT): messages/$(am__dirstamp) \ - messages/$(DEPDIR)/$(am__dirstamp) + fnbounds/$(am__dirstamp) +memory/libhpcrun_o-mem.$(OBJEXT): memory/$(am__dirstamp) +memory/libhpcrun_o-mmap.$(OBJEXT): memory/$(am__dirstamp) +messages/libhpcrun_o-debug-flag.$(OBJEXT): messages/$(am__dirstamp) messages/libhpcrun_o-messages-sync.$(OBJEXT): \ - messages/$(am__dirstamp) messages/$(DEPDIR)/$(am__dirstamp) + messages/$(am__dirstamp) messages/libhpcrun_o-messages-async.$(OBJEXT): \ - messages/$(am__dirstamp) messages/$(DEPDIR)/$(am__dirstamp) -messages/libhpcrun_o-fmt.$(OBJEXT): messages/$(am__dirstamp) \ - messages/$(DEPDIR)/$(am__dirstamp) + messages/$(am__dirstamp) +messages/libhpcrun_o-fmt.$(OBJEXT): messages/$(am__dirstamp) utilities/libhpcrun_o-executable-path.$(OBJEXT): \ - utilities/$(am__dirstamp) utilities/$(DEPDIR)/$(am__dirstamp) + utilities/$(am__dirstamp) utilities/libhpcrun_o-ip-normalized.$(OBJEXT): \ - utilities/$(am__dirstamp) utilities/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_o-tokenize.$(OBJEXT): utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_o-unlink.$(OBJEXT): utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) + utilities/$(am__dirstamp) +utilities/libhpcrun_o-tokenize.$(OBJEXT): utilities/$(am__dirstamp) +utilities/libhpcrun_o-unlink.$(OBJEXT): utilities/$(am__dirstamp) fnbounds/libhpcrun_o-fnbounds_static.$(OBJEXT): \ - fnbounds/$(am__dirstamp) fnbounds/$(DEPDIR)/$(am__dirstamp) + fnbounds/$(am__dirstamp) unwind/common/libhpcrun_o-default_validation_summary.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) trampoline/ppc64/libhpcrun_o-ppc64-tramp.$(OBJEXT): \ - trampoline/ppc64/$(am__dirstamp) \ - trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) + trampoline/ppc64/$(am__dirstamp) utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.$(OBJEXT): \ - utilities/arch/ppc64/$(am__dirstamp) \ - utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) + utilities/arch/ppc64/$(am__dirstamp) trampoline/x86-family/libhpcrun_o-x86-tramp.$(OBJEXT): \ - trampoline/x86-family/$(am__dirstamp) \ - trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) + trampoline/x86-family/$(am__dirstamp) utilities/arch/x86-family/libhpcrun_o-x86-context-pc.$(OBJEXT): \ - utilities/arch/x86-family/$(am__dirstamp) \ - utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) + utilities/arch/x86-family/$(am__dirstamp) trampoline/ia64/libhpcrun_o-ia64-tramp.$(OBJEXT): \ - trampoline/ia64/$(am__dirstamp) \ - trampoline/ia64/$(DEPDIR)/$(am__dirstamp) + trampoline/ia64/$(am__dirstamp) utilities/arch/ia64/libhpcrun_o-ia64-context-pc.$(OBJEXT): \ - utilities/arch/ia64/$(am__dirstamp) \ - utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) + utilities/arch/ia64/$(am__dirstamp) trampoline/aarch64/libhpcrun_o-aarch64-tramp.$(OBJEXT): \ - trampoline/aarch64/$(am__dirstamp) \ - trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) + trampoline/aarch64/$(am__dirstamp) utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.$(OBJEXT): \ - utilities/arch/libunwind/$(am__dirstamp) \ - utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) + utilities/arch/libunwind/$(am__dirstamp) sample-sources/libhpcrun_o-papi.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-papi-c-cupti.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-papi-c.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-papi-c-extended-info.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) sample-sources/libhpcrun_o-upc.$(OBJEXT): \ - sample-sources/$(am__dirstamp) \ - sample-sources/$(DEPDIR)/$(am__dirstamp) + sample-sources/$(am__dirstamp) unwind/common/libhpcrun_o-backtrace.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_o-unw-throw.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) -unwind/generic-libunwind/libhpcrun_o-libunw-unwind.$(OBJEXT): \ - unwind/generic-libunwind/$(am__dirstamp) \ - unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_o-binarytree_uwi.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_o-interval_t.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_o-stack_troll.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) unwind/common/libhpcrun_o-uw_recipe_map.$(OBJEXT): \ - unwind/common/$(am__dirstamp) \ - unwind/common/$(DEPDIR)/$(am__dirstamp) + unwind/common/$(am__dirstamp) +unwind/generic-libunwind/libhpcrun_o-libunw-unwind.$(OBJEXT): \ + unwind/generic-libunwind/$(am__dirstamp) unwind/ppc64/libhpcrun_o-ppc64-unwind.$(OBJEXT): \ - unwind/ppc64/$(am__dirstamp) \ - unwind/ppc64/$(DEPDIR)/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.$(OBJEXT): \ - unwind/ppc64/$(am__dirstamp) \ - unwind/ppc64/$(DEPDIR)/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-all.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-amd-xop.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-cold-path.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind-interval.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind-support.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) \ - unwind/x86-family/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) \ - unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) -utilities/libhpcrun_o-last_func.$(OBJEXT): utilities/$(am__dirstamp) \ - utilities/$(DEPDIR)/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) +utilities/libhpcrun_o-last_func.$(OBJEXT): utilities/$(am__dirstamp) libhpcrun.o$(EXEEXT): $(libhpcrun_o_OBJECTS) $(libhpcrun_o_DEPENDENCIES) $(EXTRA_libhpcrun_o_DEPENDENCIES) @rm -f libhpcrun.o$(EXEEXT) @@ -2778,2720 +2528,1064 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-cct2metrics.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-custom-init-dynamic.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-disabled.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-env.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-epoch.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-files.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-handling_sample.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-hpcrun_options.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-hpcrun_stats.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-loadmap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-main.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-metrics.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-name.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-rank.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_event.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_prob.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_sources_all.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_sources_registered.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-segv_handler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-start-stop.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-term_handler.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-thread_data.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-thread_use.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-threadmgr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-trace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-weak.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-write_data.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-cct2metrics.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-custom-init-static.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-disabled.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-env.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-epoch.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-files.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-handling_sample.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-hpcrun_options.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-hpcrun_stats.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-loadmap.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-metrics.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-name.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-rank.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_event.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_prob.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_sources_all.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_sources_registered.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-segv_handler.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-start-stop.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-term_handler.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-thread_data.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-thread_use.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-threadmgr.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-trace.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-weak.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-write_data.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpctoolkit_a-hpctoolkit.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpctoolkit_la-hpctoolkit.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_la-cct.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_o-cct.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_la-mem.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_la-mmap.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_o-mem.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_o-mmap.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-debug-flag.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-fmt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-messages-async.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-messages-sync.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-debug-flag.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-fmt.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-messages-async.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-messages-sync.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@os/linux/$(DEPDIR)/libhpcrun_la-dylib.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/ibm-xlomp-wrappers.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-common.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-ga.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-idle.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-io.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-none.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-sync.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-upc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-common.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-ga.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-idle.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-io.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-none.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-sync.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-upc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-executable-path.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-first_func.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-last_func.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-tokenize.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-unlink.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-executable-path.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-first_func.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-last_func.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-tokenize.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-unlink.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Plo@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Po@am__quote@ - .S.o: -@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $< + $(AM_V_CPPAS)$(CPPASCOMPILE) -c -o $@ $< .S.obj: -@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CPPAS)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .S.lo: -@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $< + $(AM_V_CPPAS)$(LTCPPASCOMPILE) -c -o $@ $< trampoline/x86-family/libhpcrun_la-x86-tramp.lo: trampoline/x86-family/x86-tramp.S -@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CCASFLAGS) $(CCASFLAGS) -MT trampoline/x86-family/libhpcrun_la-x86-tramp.lo -MD -MP -MF trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Tpo -c -o trampoline/x86-family/libhpcrun_la-x86-tramp.lo `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S -@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Tpo trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Plo -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='trampoline/x86-family/x86-tramp.S' object='trampoline/x86-family/libhpcrun_la-x86-tramp.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_la-x86-tramp.lo `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S + $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_la-x86-tramp.lo `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S trampoline/x86-family/libhpcrun_o-x86-tramp.o: trampoline/x86-family/x86-tramp.S -@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -MT trampoline/x86-family/libhpcrun_o-x86-tramp.o -MD -MP -MF trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.o `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S -@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Po -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='trampoline/x86-family/x86-tramp.S' object='trampoline/x86-family/libhpcrun_o-x86-tramp.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.o `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S + $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.o `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S trampoline/x86-family/libhpcrun_o-x86-tramp.obj: trampoline/x86-family/x86-tramp.S -@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -MT trampoline/x86-family/libhpcrun_o-x86-tramp.obj -MD -MP -MF trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.obj `if test -f 'trampoline/x86-family/x86-tramp.S'; then $(CYGPATH_W) 'trampoline/x86-family/x86-tramp.S'; else $(CYGPATH_W) '$(srcdir)/trampoline/x86-family/x86-tramp.S'; fi` -@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Po -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='trampoline/x86-family/x86-tramp.S' object='trampoline/x86-family/libhpcrun_o-x86-tramp.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.obj `if test -f 'trampoline/x86-family/x86-tramp.S'; then $(CYGPATH_W) 'trampoline/x86-family/x86-tramp.S'; else $(CYGPATH_W) '$(srcdir)/trampoline/x86-family/x86-tramp.S'; fi` + $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.obj `if test -f 'trampoline/x86-family/x86-tramp.S'; then $(CYGPATH_W) 'trampoline/x86-family/x86-tramp.S'; else $(CYGPATH_W) '$(srcdir)/trampoline/x86-family/x86-tramp.S'; fi` .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o: sample-sources/ga-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga-overrides.c' object='sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj: sample-sources/ga-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj `if test -f 'sample-sources/ga-overrides.c'; then $(CYGPATH_W) 'sample-sources/ga-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga-overrides.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga-overrides.c' object='sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj `if test -f 'sample-sources/ga-overrides.c'; then $(CYGPATH_W) 'sample-sources/ga-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga-overrides.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj `if test -f 'sample-sources/ga-overrides.c'; then $(CYGPATH_W) 'sample-sources/ga-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga-overrides.c'; fi` sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o: sample-sources/gpu_blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame-overrides.c' object='sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj: sample-sources/gpu_blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj `if test -f 'sample-sources/gpu_blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/gpu_blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/gpu_blame-overrides.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame-overrides.c' object='sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj `if test -f 'sample-sources/gpu_blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/gpu_blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/gpu_blame-overrides.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj `if test -f 'sample-sources/gpu_blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/gpu_blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/gpu_blame-overrides.c'; fi` libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o: gpu_blame-driver-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-driver-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj: gpu_blame-driver-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj `if test -f 'gpu_blame-driver-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-driver-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-driver-overrides-generated.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-driver-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj `if test -f 'gpu_blame-driver-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-driver-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-driver-overrides-generated.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj `if test -f 'gpu_blame-driver-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-driver-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-driver-overrides-generated.c'; fi` libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o: gpu_blame-runtime-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-runtime-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj: gpu_blame-runtime-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj `if test -f 'gpu_blame-runtime-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-runtime-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-runtime-overrides-generated.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-runtime-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj `if test -f 'gpu_blame-runtime-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-runtime-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-runtime-overrides-generated.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj `if test -f 'gpu_blame-runtime-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-runtime-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-runtime-overrides-generated.c'; fi` sample-sources/libhpcrun_io_wrap_a-io-over.o: sample-sources/io-over.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_io_wrap_a-io-over.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo -c -o sample-sources/libhpcrun_io_wrap_a-io-over.o `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io-over.c' object='sample-sources/libhpcrun_io_wrap_a-io-over.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.o `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.o `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c sample-sources/libhpcrun_io_wrap_a-io-over.obj: sample-sources/io-over.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_io_wrap_a-io-over.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo -c -o sample-sources/libhpcrun_io_wrap_a-io-over.obj `if test -f 'sample-sources/io-over.c'; then $(CYGPATH_W) 'sample-sources/io-over.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io-over.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io-over.c' object='sample-sources/libhpcrun_io_wrap_a-io-over.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.obj `if test -f 'sample-sources/io-over.c'; then $(CYGPATH_W) 'sample-sources/io-over.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io-over.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.obj `if test -f 'sample-sources/io-over.c'; then $(CYGPATH_W) 'sample-sources/io-over.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io-over.c'; fi` sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o: sample-sources/memleak-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak-overrides.c' object='sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj: sample-sources/memleak-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj `if test -f 'sample-sources/memleak-overrides.c'; then $(CYGPATH_W) 'sample-sources/memleak-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak-overrides.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak-overrides.c' object='sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj `if test -f 'sample-sources/memleak-overrides.c'; then $(CYGPATH_W) 'sample-sources/memleak-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak-overrides.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj `if test -f 'sample-sources/memleak-overrides.c'; then $(CYGPATH_W) 'sample-sources/memleak-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak-overrides.c'; fi` sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o: sample-sources/pthread-blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame-overrides.c' object='sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj: sample-sources/pthread-blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj `if test -f 'sample-sources/pthread-blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame-overrides.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame-overrides.c' object='sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj `if test -f 'sample-sources/pthread-blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame-overrides.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj `if test -f 'sample-sources/pthread-blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame-overrides.c'; fi` monitor-exts/libhpcrun_wrap_a-openmp.o: monitor-exts/openmp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -MT monitor-exts/libhpcrun_wrap_a-openmp.o -MD -MP -MF monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo -c -o monitor-exts/libhpcrun_wrap_a-openmp.o `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor-exts/openmp.c' object='monitor-exts/libhpcrun_wrap_a-openmp.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.o `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.o `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c monitor-exts/libhpcrun_wrap_a-openmp.obj: monitor-exts/openmp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -MT monitor-exts/libhpcrun_wrap_a-openmp.obj -MD -MP -MF monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo -c -o monitor-exts/libhpcrun_wrap_a-openmp.obj `if test -f 'monitor-exts/openmp.c'; then $(CYGPATH_W) 'monitor-exts/openmp.c'; else $(CYGPATH_W) '$(srcdir)/monitor-exts/openmp.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor-exts/openmp.c' object='monitor-exts/libhpcrun_wrap_a-openmp.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.obj `if test -f 'monitor-exts/openmp.c'; then $(CYGPATH_W) 'monitor-exts/openmp.c'; else $(CYGPATH_W) '$(srcdir)/monitor-exts/openmp.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.obj `if test -f 'monitor-exts/openmp.c'; then $(CYGPATH_W) 'monitor-exts/openmp.c'; else $(CYGPATH_W) '$(srcdir)/monitor-exts/openmp.c'; fi` libhpctoolkit_a-hpctoolkit.o: hpctoolkit.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhpctoolkit_a-hpctoolkit.o -MD -MP -MF $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo -c -o libhpctoolkit_a-hpctoolkit.o `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpctoolkit.c' object='libhpctoolkit_a-hpctoolkit.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.o `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.o `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c libhpctoolkit_a-hpctoolkit.obj: hpctoolkit.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhpctoolkit_a-hpctoolkit.obj -MD -MP -MF $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo -c -o libhpctoolkit_a-hpctoolkit.obj `if test -f 'hpctoolkit.c'; then $(CYGPATH_W) 'hpctoolkit.c'; else $(CYGPATH_W) '$(srcdir)/hpctoolkit.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpctoolkit.c' object='libhpctoolkit_a-hpctoolkit.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.obj `if test -f 'hpctoolkit.c'; then $(CYGPATH_W) 'hpctoolkit.c'; else $(CYGPATH_W) '$(srcdir)/hpctoolkit.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.obj `if test -f 'hpctoolkit.c'; then $(CYGPATH_W) 'hpctoolkit.c'; else $(CYGPATH_W) '$(srcdir)/hpctoolkit.c'; fi` lush-agents/libagent_cilk_la-agent-cilk.lo: lush-agents/agent-cilk.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -MT lush-agents/libagent_cilk_la-agent-cilk.lo -MD -MP -MF lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Tpo -c -o lush-agents/libagent_cilk_la-agent-cilk.lo `test -f 'lush-agents/agent-cilk.c' || echo '$(srcdir)/'`lush-agents/agent-cilk.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Tpo lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush-agents/agent-cilk.c' object='lush-agents/libagent_cilk_la-agent-cilk.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_cilk_la-agent-cilk.lo `test -f 'lush-agents/agent-cilk.c' || echo '$(srcdir)/'`lush-agents/agent-cilk.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_cilk_la-agent-cilk.lo `test -f 'lush-agents/agent-cilk.c' || echo '$(srcdir)/'`lush-agents/agent-cilk.c lush/libagent_cilk_la-lush-support-rt.lo: lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -MT lush/libagent_cilk_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Tpo -c -o lush/libagent_cilk_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Tpo lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libagent_cilk_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_cilk_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_cilk_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush-agents/libagent_pthread_la-agent-pthread.lo: lush-agents/agent-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -MT lush-agents/libagent_pthread_la-agent-pthread.lo -MD -MP -MF lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Tpo -c -o lush-agents/libagent_pthread_la-agent-pthread.lo `test -f 'lush-agents/agent-pthread.c' || echo '$(srcdir)/'`lush-agents/agent-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Tpo lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush-agents/agent-pthread.c' object='lush-agents/libagent_pthread_la-agent-pthread.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_pthread_la-agent-pthread.lo `test -f 'lush-agents/agent-pthread.c' || echo '$(srcdir)/'`lush-agents/agent-pthread.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_pthread_la-agent-pthread.lo `test -f 'lush-agents/agent-pthread.c' || echo '$(srcdir)/'`lush-agents/agent-pthread.c lush/libagent_pthread_la-lush-support-rt.lo: lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -MT lush/libagent_pthread_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Tpo -c -o lush/libagent_pthread_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Tpo lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libagent_pthread_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_pthread_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_pthread_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush-agents/libagent_tbb_la-agent-tbb.lo: lush-agents/agent-tbb.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -MT lush-agents/libagent_tbb_la-agent-tbb.lo -MD -MP -MF lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Tpo -c -o lush-agents/libagent_tbb_la-agent-tbb.lo `test -f 'lush-agents/agent-tbb.c' || echo '$(srcdir)/'`lush-agents/agent-tbb.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Tpo lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush-agents/agent-tbb.c' object='lush-agents/libagent_tbb_la-agent-tbb.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_tbb_la-agent-tbb.lo `test -f 'lush-agents/agent-tbb.c' || echo '$(srcdir)/'`lush-agents/agent-tbb.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_tbb_la-agent-tbb.lo `test -f 'lush-agents/agent-tbb.c' || echo '$(srcdir)/'`lush-agents/agent-tbb.c lush/libagent_tbb_la-lush-support-rt.lo: lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -MT lush/libagent_tbb_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Tpo -c -o lush/libagent_tbb_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Tpo lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libagent_tbb_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_tbb_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_tbb_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c utilities/libhpcrun_la-first_func.lo: utilities/first_func.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-first_func.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-first_func.Tpo -c -o utilities/libhpcrun_la-first_func.lo `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-first_func.Tpo utilities/$(DEPDIR)/libhpcrun_la-first_func.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/first_func.c' object='utilities/libhpcrun_la-first_func.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-first_func.lo `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-first_func.lo `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c libhpcrun_la-main.lo: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-main.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-main.Tpo -c -o libhpcrun_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-main.Tpo $(DEPDIR)/libhpcrun_la-main.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libhpcrun_la-main.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c libhpcrun_la-disabled.lo: disabled.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-disabled.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-disabled.Tpo -c -o libhpcrun_la-disabled.lo `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-disabled.Tpo $(DEPDIR)/libhpcrun_la-disabled.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='disabled.c' object='libhpcrun_la-disabled.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-disabled.lo `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-disabled.lo `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c libhpcrun_la-cct_insert_backtrace.lo: cct_insert_backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-cct_insert_backtrace.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Tpo -c -o libhpcrun_la-cct_insert_backtrace.lo `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Tpo $(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_insert_backtrace.c' object='libhpcrun_la-cct_insert_backtrace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_insert_backtrace.lo `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_insert_backtrace.lo `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c libhpcrun_la-cct_backtrace_finalize.lo: cct_backtrace_finalize.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-cct_backtrace_finalize.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Tpo -c -o libhpcrun_la-cct_backtrace_finalize.lo `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Tpo $(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_backtrace_finalize.c' object='libhpcrun_la-cct_backtrace_finalize.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_backtrace_finalize.lo `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_backtrace_finalize.lo `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c libhpcrun_la-env.lo: env.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-env.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-env.Tpo -c -o libhpcrun_la-env.lo `test -f 'env.c' || echo '$(srcdir)/'`env.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-env.Tpo $(DEPDIR)/libhpcrun_la-env.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='env.c' object='libhpcrun_la-env.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-env.lo `test -f 'env.c' || echo '$(srcdir)/'`env.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-env.lo `test -f 'env.c' || echo '$(srcdir)/'`env.c libhpcrun_la-epoch.lo: epoch.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-epoch.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-epoch.Tpo -c -o libhpcrun_la-epoch.lo `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-epoch.Tpo $(DEPDIR)/libhpcrun_la-epoch.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='epoch.c' object='libhpcrun_la-epoch.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-epoch.lo `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-epoch.lo `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c libhpcrun_la-files.lo: files.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-files.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-files.Tpo -c -o libhpcrun_la-files.lo `test -f 'files.c' || echo '$(srcdir)/'`files.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-files.Tpo $(DEPDIR)/libhpcrun_la-files.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='files.c' object='libhpcrun_la-files.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-files.lo `test -f 'files.c' || echo '$(srcdir)/'`files.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-files.lo `test -f 'files.c' || echo '$(srcdir)/'`files.c libhpcrun_la-handling_sample.lo: handling_sample.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-handling_sample.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-handling_sample.Tpo -c -o libhpcrun_la-handling_sample.lo `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-handling_sample.Tpo $(DEPDIR)/libhpcrun_la-handling_sample.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='handling_sample.c' object='libhpcrun_la-handling_sample.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-handling_sample.lo `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-handling_sample.lo `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c libhpcrun_la-hpcrun_options.lo: hpcrun_options.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-hpcrun_options.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-hpcrun_options.Tpo -c -o libhpcrun_la-hpcrun_options.lo `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-hpcrun_options.Tpo $(DEPDIR)/libhpcrun_la-hpcrun_options.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_options.c' object='libhpcrun_la-hpcrun_options.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_options.lo `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_options.lo `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c libhpcrun_la-hpcrun_stats.lo: hpcrun_stats.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-hpcrun_stats.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-hpcrun_stats.Tpo -c -o libhpcrun_la-hpcrun_stats.lo `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-hpcrun_stats.Tpo $(DEPDIR)/libhpcrun_la-hpcrun_stats.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_stats.c' object='libhpcrun_la-hpcrun_stats.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_stats.lo `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_stats.lo `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c libhpcrun_la-loadmap.lo: loadmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-loadmap.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-loadmap.Tpo -c -o libhpcrun_la-loadmap.lo `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-loadmap.Tpo $(DEPDIR)/libhpcrun_la-loadmap.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='loadmap.c' object='libhpcrun_la-loadmap.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-loadmap.lo `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-loadmap.lo `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c libhpcrun_la-metrics.lo: metrics.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-metrics.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-metrics.Tpo -c -o libhpcrun_la-metrics.lo `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-metrics.Tpo $(DEPDIR)/libhpcrun_la-metrics.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='metrics.c' object='libhpcrun_la-metrics.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-metrics.lo `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-metrics.lo `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c libhpcrun_la-name.lo: name.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-name.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-name.Tpo -c -o libhpcrun_la-name.lo `test -f 'name.c' || echo '$(srcdir)/'`name.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-name.Tpo $(DEPDIR)/libhpcrun_la-name.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='name.c' object='libhpcrun_la-name.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-name.lo `test -f 'name.c' || echo '$(srcdir)/'`name.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-name.lo `test -f 'name.c' || echo '$(srcdir)/'`name.c libhpcrun_la-rank.lo: rank.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-rank.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-rank.Tpo -c -o libhpcrun_la-rank.lo `test -f 'rank.c' || echo '$(srcdir)/'`rank.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-rank.Tpo $(DEPDIR)/libhpcrun_la-rank.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rank.c' object='libhpcrun_la-rank.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-rank.lo `test -f 'rank.c' || echo '$(srcdir)/'`rank.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-rank.lo `test -f 'rank.c' || echo '$(srcdir)/'`rank.c libhpcrun_la-sample_event.lo: sample_event.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_event.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_event.Tpo -c -o libhpcrun_la-sample_event.lo `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_event.Tpo $(DEPDIR)/libhpcrun_la-sample_event.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_event.c' object='libhpcrun_la-sample_event.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_event.lo `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_event.lo `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c libhpcrun_la-sample_prob.lo: sample_prob.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_prob.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_prob.Tpo -c -o libhpcrun_la-sample_prob.lo `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_prob.Tpo $(DEPDIR)/libhpcrun_la-sample_prob.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_prob.c' object='libhpcrun_la-sample_prob.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_prob.lo `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_prob.lo `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c libhpcrun_la-sample_sources_all.lo: sample_sources_all.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_sources_all.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_sources_all.Tpo -c -o libhpcrun_la-sample_sources_all.lo `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_sources_all.Tpo $(DEPDIR)/libhpcrun_la-sample_sources_all.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_all.c' object='libhpcrun_la-sample_sources_all.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_all.lo `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_all.lo `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c sample-sources/blame-shift/libhpcrun_la-blame-shift.lo: sample-sources/blame-shift/blame-shift.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_la-blame-shift.lo -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Tpo -c -o sample-sources/blame-shift/libhpcrun_la-blame-shift.lo `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-shift.c' object='sample-sources/blame-shift/libhpcrun_la-blame-shift.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-shift.lo `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-shift.lo `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c sample-sources/blame-shift/libhpcrun_la-blame-map.lo: sample-sources/blame-shift/blame-map.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_la-blame-map.lo -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Tpo -c -o sample-sources/blame-shift/libhpcrun_la-blame-map.lo `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-map.c' object='sample-sources/blame-shift/libhpcrun_la-blame-map.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-map.lo `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-map.lo `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c sample-sources/libhpcrun_la-common.lo: sample-sources/common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-common.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-common.Tpo -c -o sample-sources/libhpcrun_la-common.lo `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-common.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-common.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/common.c' object='sample-sources/libhpcrun_la-common.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-common.lo `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-common.lo `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c sample-sources/libhpcrun_la-ga.lo: sample-sources/ga.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-ga.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-ga.Tpo -c -o sample-sources/libhpcrun_la-ga.lo `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-ga.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-ga.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga.c' object='sample-sources/libhpcrun_la-ga.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-ga.lo `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-ga.lo `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c sample-sources/libhpcrun_la-io.lo: sample-sources/io.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-io.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-io.Tpo -c -o sample-sources/libhpcrun_la-io.lo `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-io.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-io.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io.c' object='sample-sources/libhpcrun_la-io.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-io.lo `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-io.lo `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c sample-sources/libhpcrun_la-itimer.lo: sample-sources/itimer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-itimer.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Tpo -c -o sample-sources/libhpcrun_la-itimer.lo `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/itimer.c' object='sample-sources/libhpcrun_la-itimer.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-itimer.lo `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-itimer.lo `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c sample-sources/libhpcrun_la-idle.lo: sample-sources/idle.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-idle.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-idle.Tpo -c -o sample-sources/libhpcrun_la-idle.lo `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-idle.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-idle.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/idle.c' object='sample-sources/libhpcrun_la-idle.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-idle.lo `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-idle.lo `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c sample-sources/libhpcrun_la-memleak.lo: sample-sources/memleak.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-memleak.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Tpo -c -o sample-sources/libhpcrun_la-memleak.lo `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak.c' object='sample-sources/libhpcrun_la-memleak.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-memleak.lo `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-memleak.lo `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c sample-sources/libhpcrun_la-pthread-blame.lo: sample-sources/pthread-blame.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-pthread-blame.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Tpo -c -o sample-sources/libhpcrun_la-pthread-blame.lo `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame.c' object='sample-sources/libhpcrun_la-pthread-blame.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-pthread-blame.lo `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-pthread-blame.lo `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c sample-sources/libhpcrun_la-none.lo: sample-sources/none.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-none.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-none.Tpo -c -o sample-sources/libhpcrun_la-none.lo `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-none.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-none.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/none.c' object='sample-sources/libhpcrun_la-none.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-none.lo `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-none.lo `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c sample-sources/libhpcrun_la-retcnt.lo: sample-sources/retcnt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-retcnt.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Tpo -c -o sample-sources/libhpcrun_la-retcnt.lo `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/retcnt.c' object='sample-sources/libhpcrun_la-retcnt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-retcnt.lo `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-retcnt.lo `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c sample-sources/libhpcrun_la-sync.lo: sample-sources/sync.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-sync.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-sync.Tpo -c -o sample-sources/libhpcrun_la-sync.lo `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-sync.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-sync.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/sync.c' object='sample-sources/libhpcrun_la-sync.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-sync.lo `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-sync.lo `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c libhpcrun_la-sample_sources_registered.lo: sample_sources_registered.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_sources_registered.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_sources_registered.Tpo -c -o libhpcrun_la-sample_sources_registered.lo `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_sources_registered.Tpo $(DEPDIR)/libhpcrun_la-sample_sources_registered.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_registered.c' object='libhpcrun_la-sample_sources_registered.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_registered.lo `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_registered.lo `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c libhpcrun_la-segv_handler.lo: segv_handler.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-segv_handler.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-segv_handler.Tpo -c -o libhpcrun_la-segv_handler.lo `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-segv_handler.Tpo $(DEPDIR)/libhpcrun_la-segv_handler.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='segv_handler.c' object='libhpcrun_la-segv_handler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-segv_handler.lo `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-segv_handler.lo `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c libhpcrun_la-start-stop.lo: start-stop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-start-stop.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-start-stop.Tpo -c -o libhpcrun_la-start-stop.lo `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-start-stop.Tpo $(DEPDIR)/libhpcrun_la-start-stop.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='start-stop.c' object='libhpcrun_la-start-stop.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-start-stop.lo `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-start-stop.lo `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c libhpcrun_la-term_handler.lo: term_handler.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-term_handler.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-term_handler.Tpo -c -o libhpcrun_la-term_handler.lo `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-term_handler.Tpo $(DEPDIR)/libhpcrun_la-term_handler.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='term_handler.c' object='libhpcrun_la-term_handler.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-term_handler.lo `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-term_handler.lo `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c libhpcrun_la-thread_data.lo: thread_data.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-thread_data.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-thread_data.Tpo -c -o libhpcrun_la-thread_data.lo `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-thread_data.Tpo $(DEPDIR)/libhpcrun_la-thread_data.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_data.c' object='libhpcrun_la-thread_data.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_data.lo `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_data.lo `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c libhpcrun_la-thread_use.lo: thread_use.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-thread_use.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-thread_use.Tpo -c -o libhpcrun_la-thread_use.lo `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-thread_use.Tpo $(DEPDIR)/libhpcrun_la-thread_use.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_use.c' object='libhpcrun_la-thread_use.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_use.lo `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_use.lo `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c libhpcrun_la-threadmgr.lo: threadmgr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-threadmgr.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-threadmgr.Tpo -c -o libhpcrun_la-threadmgr.lo `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-threadmgr.Tpo $(DEPDIR)/libhpcrun_la-threadmgr.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='threadmgr.c' object='libhpcrun_la-threadmgr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-threadmgr.lo `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-threadmgr.lo `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c libhpcrun_la-trace.lo: trace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-trace.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-trace.Tpo -c -o libhpcrun_la-trace.lo `test -f 'trace.c' || echo '$(srcdir)/'`trace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-trace.Tpo $(DEPDIR)/libhpcrun_la-trace.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trace.c' object='libhpcrun_la-trace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-trace.lo `test -f 'trace.c' || echo '$(srcdir)/'`trace.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-trace.lo `test -f 'trace.c' || echo '$(srcdir)/'`trace.c libhpcrun_la-weak.lo: weak.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-weak.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-weak.Tpo -c -o libhpcrun_la-weak.lo `test -f 'weak.c' || echo '$(srcdir)/'`weak.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-weak.Tpo $(DEPDIR)/libhpcrun_la-weak.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weak.c' object='libhpcrun_la-weak.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-weak.lo `test -f 'weak.c' || echo '$(srcdir)/'`weak.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-weak.lo `test -f 'weak.c' || echo '$(srcdir)/'`weak.c libhpcrun_la-write_data.lo: write_data.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-write_data.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-write_data.Tpo -c -o libhpcrun_la-write_data.lo `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-write_data.Tpo $(DEPDIR)/libhpcrun_la-write_data.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='write_data.c' object='libhpcrun_la-write_data.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-write_data.lo `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-write_data.lo `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c cct/libhpcrun_la-cct_bundle.lo: cct/cct_bundle.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_la-cct_bundle.lo -MD -MP -MF cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Tpo -c -o cct/libhpcrun_la-cct_bundle.lo `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Tpo cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_bundle.c' object='cct/libhpcrun_la-cct_bundle.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_bundle.lo `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_bundle.lo `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c cct/libhpcrun_la-cct_ctxt.lo: cct/cct_ctxt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_la-cct_ctxt.lo -MD -MP -MF cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Tpo -c -o cct/libhpcrun_la-cct_ctxt.lo `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Tpo cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_ctxt.c' object='cct/libhpcrun_la-cct_ctxt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_ctxt.lo `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_ctxt.lo `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c cct/libhpcrun_la-cct.lo: cct/cct.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_la-cct.lo -MD -MP -MF cct/$(DEPDIR)/libhpcrun_la-cct.Tpo -c -o cct/libhpcrun_la-cct.lo `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_la-cct.Tpo cct/$(DEPDIR)/libhpcrun_la-cct.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct.c' object='cct/libhpcrun_la-cct.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct.lo `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct.lo `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c libhpcrun_la-cct2metrics.lo: cct2metrics.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-cct2metrics.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-cct2metrics.Tpo -c -o libhpcrun_la-cct2metrics.lo `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-cct2metrics.Tpo $(DEPDIR)/libhpcrun_la-cct2metrics.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct2metrics.c' object='libhpcrun_la-cct2metrics.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct2metrics.lo `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct2metrics.lo `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c trampoline/common/libhpcrun_la-trampoline.lo: trampoline/common/trampoline.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT trampoline/common/libhpcrun_la-trampoline.lo -MD -MP -MF trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Tpo -c -o trampoline/common/libhpcrun_la-trampoline.lo `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Tpo trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/common/trampoline.c' object='trampoline/common/libhpcrun_la-trampoline.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_la-trampoline.lo `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_la-trampoline.lo `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c lush/libhpcrun_la-lush-backtrace.lo: lush/lush-backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush-backtrace.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Tpo -c -o lush/libhpcrun_la-lush-backtrace.lo `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Tpo lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-backtrace.c' object='lush/libhpcrun_la-lush-backtrace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-backtrace.lo `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-backtrace.lo `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c lush/libhpcrun_la-lush.lo: lush/lush.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush.Tpo -c -o lush/libhpcrun_la-lush.lo `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush.Tpo lush/$(DEPDIR)/libhpcrun_la-lush.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush.c' object='lush/libhpcrun_la-lush.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush.lo `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush.lo `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c lush/libhpcrun_la-lush-pthread.lo: lush/lush-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush-pthread.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Tpo -c -o lush/libhpcrun_la-lush-pthread.lo `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Tpo lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-pthread.c' object='lush/libhpcrun_la-lush-pthread.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-pthread.lo `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-pthread.lo `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c lush/libhpcrun_la-lush-support-rt.lo: lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Tpo -c -o lush/libhpcrun_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Tpo lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libhpcrun_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush/libhpcrun_la-lushi-cb.lo: lush/lushi-cb.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lushi-cb.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Tpo -c -o lush/libhpcrun_la-lushi-cb.lo `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Tpo lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lushi-cb.c' object='lush/libhpcrun_la-lushi-cb.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lushi-cb.lo `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lushi-cb.lo `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c fnbounds/libhpcrun_la-fnbounds_common.lo: fnbounds/fnbounds_common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_la-fnbounds_common.lo -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Tpo -c -o fnbounds/libhpcrun_la-fnbounds_common.lo `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Tpo fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_common.c' object='fnbounds/libhpcrun_la-fnbounds_common.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_common.lo `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_common.lo `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c memory/libhpcrun_la-mem.lo: memory/mem.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_la-mem.lo -MD -MP -MF memory/$(DEPDIR)/libhpcrun_la-mem.Tpo -c -o memory/libhpcrun_la-mem.lo `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_la-mem.Tpo memory/$(DEPDIR)/libhpcrun_la-mem.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mem.c' object='memory/libhpcrun_la-mem.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mem.lo `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mem.lo `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c memory/libhpcrun_la-mmap.lo: memory/mmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_la-mmap.lo -MD -MP -MF memory/$(DEPDIR)/libhpcrun_la-mmap.Tpo -c -o memory/libhpcrun_la-mmap.lo `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_la-mmap.Tpo memory/$(DEPDIR)/libhpcrun_la-mmap.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mmap.c' object='memory/libhpcrun_la-mmap.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mmap.lo `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mmap.lo `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c messages/libhpcrun_la-debug-flag.lo: messages/debug-flag.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-debug-flag.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-debug-flag.Tpo -c -o messages/libhpcrun_la-debug-flag.lo `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-debug-flag.Tpo messages/$(DEPDIR)/libhpcrun_la-debug-flag.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/debug-flag.c' object='messages/libhpcrun_la-debug-flag.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-debug-flag.lo `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-debug-flag.lo `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c messages/libhpcrun_la-messages-sync.lo: messages/messages-sync.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-messages-sync.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-messages-sync.Tpo -c -o messages/libhpcrun_la-messages-sync.lo `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-messages-sync.Tpo messages/$(DEPDIR)/libhpcrun_la-messages-sync.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-sync.c' object='messages/libhpcrun_la-messages-sync.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-sync.lo `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-sync.lo `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c messages/libhpcrun_la-messages-async.lo: messages/messages-async.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-messages-async.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-messages-async.Tpo -c -o messages/libhpcrun_la-messages-async.lo `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-messages-async.Tpo messages/$(DEPDIR)/libhpcrun_la-messages-async.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-async.c' object='messages/libhpcrun_la-messages-async.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-async.lo `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-async.lo `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c messages/libhpcrun_la-fmt.lo: messages/fmt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-fmt.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-fmt.Tpo -c -o messages/libhpcrun_la-fmt.lo `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-fmt.Tpo messages/$(DEPDIR)/libhpcrun_la-fmt.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/fmt.c' object='messages/libhpcrun_la-fmt.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-fmt.lo `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-fmt.lo `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c utilities/libhpcrun_la-executable-path.lo: utilities/executable-path.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-executable-path.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-executable-path.Tpo -c -o utilities/libhpcrun_la-executable-path.lo `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-executable-path.Tpo utilities/$(DEPDIR)/libhpcrun_la-executable-path.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/executable-path.c' object='utilities/libhpcrun_la-executable-path.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-executable-path.lo `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-executable-path.lo `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c utilities/libhpcrun_la-ip-normalized.lo: utilities/ip-normalized.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-ip-normalized.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Tpo -c -o utilities/libhpcrun_la-ip-normalized.lo `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Tpo utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/ip-normalized.c' object='utilities/libhpcrun_la-ip-normalized.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-ip-normalized.lo `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-ip-normalized.lo `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c utilities/libhpcrun_la-tokenize.lo: utilities/tokenize.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-tokenize.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-tokenize.Tpo -c -o utilities/libhpcrun_la-tokenize.lo `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-tokenize.Tpo utilities/$(DEPDIR)/libhpcrun_la-tokenize.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/tokenize.c' object='utilities/libhpcrun_la-tokenize.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-tokenize.lo `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-tokenize.lo `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c utilities/libhpcrun_la-unlink.lo: utilities/unlink.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-unlink.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-unlink.Tpo -c -o utilities/libhpcrun_la-unlink.lo `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-unlink.Tpo utilities/$(DEPDIR)/libhpcrun_la-unlink.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/unlink.c' object='utilities/libhpcrun_la-unlink.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-unlink.lo `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-unlink.lo `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c fnbounds/libhpcrun_la-fnbounds_client.lo: fnbounds/fnbounds_client.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_la-fnbounds_client.lo -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Tpo -c -o fnbounds/libhpcrun_la-fnbounds_client.lo `test -f 'fnbounds/fnbounds_client.c' || echo '$(srcdir)/'`fnbounds/fnbounds_client.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Tpo fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_client.c' object='fnbounds/libhpcrun_la-fnbounds_client.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_client.lo `test -f 'fnbounds/fnbounds_client.c' || echo '$(srcdir)/'`fnbounds/fnbounds_client.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_client.lo `test -f 'fnbounds/fnbounds_client.c' || echo '$(srcdir)/'`fnbounds/fnbounds_client.c fnbounds/libhpcrun_la-fnbounds_dynamic.lo: fnbounds/fnbounds_dynamic.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_la-fnbounds_dynamic.lo -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Tpo -c -o fnbounds/libhpcrun_la-fnbounds_dynamic.lo `test -f 'fnbounds/fnbounds_dynamic.c' || echo '$(srcdir)/'`fnbounds/fnbounds_dynamic.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Tpo fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_dynamic.c' object='fnbounds/libhpcrun_la-fnbounds_dynamic.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_dynamic.lo `test -f 'fnbounds/fnbounds_dynamic.c' || echo '$(srcdir)/'`fnbounds/fnbounds_dynamic.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_dynamic.lo `test -f 'fnbounds/fnbounds_dynamic.c' || echo '$(srcdir)/'`fnbounds/fnbounds_dynamic.c monitor-exts/libhpcrun_la-openmp.lo: monitor-exts/openmp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT monitor-exts/libhpcrun_la-openmp.lo -MD -MP -MF monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Tpo -c -o monitor-exts/libhpcrun_la-openmp.lo `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Tpo monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor-exts/openmp.c' object='monitor-exts/libhpcrun_la-openmp.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_la-openmp.lo `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_la-openmp.lo `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c libhpcrun_la-hpcrun_dlfns.lo: hpcrun_dlfns.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-hpcrun_dlfns.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Tpo -c -o libhpcrun_la-hpcrun_dlfns.lo `test -f 'hpcrun_dlfns.c' || echo '$(srcdir)/'`hpcrun_dlfns.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Tpo $(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_dlfns.c' object='libhpcrun_la-hpcrun_dlfns.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_dlfns.lo `test -f 'hpcrun_dlfns.c' || echo '$(srcdir)/'`hpcrun_dlfns.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_dlfns.lo `test -f 'hpcrun_dlfns.c' || echo '$(srcdir)/'`hpcrun_dlfns.c libhpcrun_la-custom-init-dynamic.lo: custom-init-dynamic.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-custom-init-dynamic.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-custom-init-dynamic.Tpo -c -o libhpcrun_la-custom-init-dynamic.lo `test -f 'custom-init-dynamic.c' || echo '$(srcdir)/'`custom-init-dynamic.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-custom-init-dynamic.Tpo $(DEPDIR)/libhpcrun_la-custom-init-dynamic.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='custom-init-dynamic.c' object='libhpcrun_la-custom-init-dynamic.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-custom-init-dynamic.lo `test -f 'custom-init-dynamic.c' || echo '$(srcdir)/'`custom-init-dynamic.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-custom-init-dynamic.lo `test -f 'custom-init-dynamic.c' || echo '$(srcdir)/'`custom-init-dynamic.c os/linux/libhpcrun_la-dylib.lo: os/linux/dylib.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT os/linux/libhpcrun_la-dylib.lo -MD -MP -MF os/linux/$(DEPDIR)/libhpcrun_la-dylib.Tpo -c -o os/linux/libhpcrun_la-dylib.lo `test -f 'os/linux/dylib.c' || echo '$(srcdir)/'`os/linux/dylib.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) os/linux/$(DEPDIR)/libhpcrun_la-dylib.Tpo os/linux/$(DEPDIR)/libhpcrun_la-dylib.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='os/linux/dylib.c' object='os/linux/libhpcrun_la-dylib.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o os/linux/libhpcrun_la-dylib.lo `test -f 'os/linux/dylib.c' || echo '$(srcdir)/'`os/linux/dylib.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o os/linux/libhpcrun_la-dylib.lo `test -f 'os/linux/dylib.c' || echo '$(srcdir)/'`os/linux/dylib.c unwind/common/libhpcrun_la-default_validation_summary.lo: unwind/common/default_validation_summary.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-default_validation_summary.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Tpo -c -o unwind/common/libhpcrun_la-default_validation_summary.lo `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/default_validation_summary.c' object='unwind/common/libhpcrun_la-default_validation_summary.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-default_validation_summary.lo `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-default_validation_summary.lo `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo: utilities/arch/ppc64/ppc64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo -MD -MP -MF utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Tpo -c -o utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Tpo utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ppc64/ppc64-context-pc.c' object='utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo: utilities/arch/x86-family/x86-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo -MD -MP -MF utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Tpo -c -o utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Tpo utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/x86-family/x86-context-pc.c' object='utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo: utilities/arch/ia64/ia64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo -MD -MP -MF utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Tpo -c -o utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Tpo utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ia64/ia64-context-pc.c' object='utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo: trampoline/aarch64/aarch64-tramp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo -MD -MP -MF trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Tpo -c -o trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Tpo trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/aarch64/aarch64-tramp.c' object='trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo: utilities/arch/libunwind/libunwind-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo -MD -MP -MF utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Tpo -c -o utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Tpo utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/libunwind/libunwind-context-pc.c' object='utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c sample-sources/libhpcrun_la-papi.lo: sample-sources/papi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi.Tpo -c -o sample-sources/libhpcrun_la-papi.lo `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi.c' object='sample-sources/libhpcrun_la-papi.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi.lo `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi.lo `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c sample-sources/libhpcrun_la-papi-c-cupti.lo: sample-sources/papi-c-cupti.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi-c-cupti.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Tpo -c -o sample-sources/libhpcrun_la-papi-c-cupti.lo `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-cupti.c' object='sample-sources/libhpcrun_la-papi-c-cupti.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-cupti.lo `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-cupti.lo `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c sample-sources/libhpcrun_la-papi-c.lo: sample-sources/papi-c.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi-c.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Tpo -c -o sample-sources/libhpcrun_la-papi-c.lo `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c.c' object='sample-sources/libhpcrun_la-papi-c.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c.lo `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c.lo `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c sample-sources/libhpcrun_la-papi-c-extended-info.lo: sample-sources/papi-c-extended-info.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi-c-extended-info.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Tpo -c -o sample-sources/libhpcrun_la-papi-c-extended-info.lo `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-extended-info.c' object='sample-sources/libhpcrun_la-papi-c-extended-info.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-extended-info.lo `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-extended-info.lo `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c sample-sources/libhpcrun_la-upc.lo: sample-sources/upc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-upc.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-upc.Tpo -c -o sample-sources/libhpcrun_la-upc.lo `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-upc.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-upc.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/upc.c' object='sample-sources/libhpcrun_la-upc.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-upc.lo `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-upc.lo `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c sample-sources/libhpcrun_la-gpu_blame.lo: sample-sources/gpu_blame.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-gpu_blame.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Tpo -c -o sample-sources/libhpcrun_la-gpu_blame.lo `test -f 'sample-sources/gpu_blame.c' || echo '$(srcdir)/'`sample-sources/gpu_blame.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame.c' object='sample-sources/libhpcrun_la-gpu_blame.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_blame.lo `test -f 'sample-sources/gpu_blame.c' || echo '$(srcdir)/'`sample-sources/gpu_blame.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_blame.lo `test -f 'sample-sources/gpu_blame.c' || echo '$(srcdir)/'`sample-sources/gpu_blame.c sample-sources/libhpcrun_la-gpu_ctxt_actions.lo: sample-sources/gpu_ctxt_actions.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-gpu_ctxt_actions.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Tpo -c -o sample-sources/libhpcrun_la-gpu_ctxt_actions.lo `test -f 'sample-sources/gpu_ctxt_actions.c' || echo '$(srcdir)/'`sample-sources/gpu_ctxt_actions.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_ctxt_actions.c' object='sample-sources/libhpcrun_la-gpu_ctxt_actions.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_ctxt_actions.lo `test -f 'sample-sources/gpu_ctxt_actions.c' || echo '$(srcdir)/'`sample-sources/gpu_ctxt_actions.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_ctxt_actions.lo `test -f 'sample-sources/gpu_ctxt_actions.c' || echo '$(srcdir)/'`sample-sources/gpu_ctxt_actions.c libhpcrun_la-gpu_blame-cuda-driver-table.lo: gpu_blame-cuda-driver-table.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-gpu_blame-cuda-driver-table.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Tpo -c -o libhpcrun_la-gpu_blame-cuda-driver-table.lo `test -f 'gpu_blame-cuda-driver-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-driver-table.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Tpo $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-cuda-driver-table.c' object='libhpcrun_la-gpu_blame-cuda-driver-table.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-driver-table.lo `test -f 'gpu_blame-cuda-driver-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-driver-table.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-driver-table.lo `test -f 'gpu_blame-cuda-driver-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-driver-table.c libhpcrun_la-gpu_blame-cuda-runtime-table.lo: gpu_blame-cuda-runtime-table.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-gpu_blame-cuda-runtime-table.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Tpo -c -o libhpcrun_la-gpu_blame-cuda-runtime-table.lo `test -f 'gpu_blame-cuda-runtime-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-runtime-table.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Tpo $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-cuda-runtime-table.c' object='libhpcrun_la-gpu_blame-cuda-runtime-table.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-runtime-table.lo `test -f 'gpu_blame-cuda-runtime-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-runtime-table.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-runtime-table.lo `test -f 'gpu_blame-cuda-runtime-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-runtime-table.c unwind/common/libhpcrun_la-backtrace.lo: unwind/common/backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-backtrace.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Tpo -c -o unwind/common/libhpcrun_la-backtrace.lo `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/backtrace.c' object='unwind/common/libhpcrun_la-backtrace.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-backtrace.lo `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-backtrace.lo `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c unwind/common/libhpcrun_la-unw-throw.lo: unwind/common/unw-throw.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-unw-throw.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Tpo -c -o unwind/common/libhpcrun_la-unw-throw.lo `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/unw-throw.c' object='unwind/common/libhpcrun_la-unw-throw.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-unw-throw.lo `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c - -unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: unwind/generic-libunwind/libunw-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo -MD -MP -MF unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Tpo -c -o unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Tpo unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/generic-libunwind/libunw-unwind.c' object='unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-unw-throw.lo `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c unwind/common/libhpcrun_la-binarytree_uwi.lo: unwind/common/binarytree_uwi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-binarytree_uwi.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Tpo -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/binarytree_uwi.c' object='unwind/common/libhpcrun_la-binarytree_uwi.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c unwind/common/libhpcrun_la-interval_t.lo: unwind/common/interval_t.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-interval_t.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Tpo -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/interval_t.c' object='unwind/common/libhpcrun_la-interval_t.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c unwind/common/libhpcrun_la-stack_troll.lo: unwind/common/stack_troll.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-stack_troll.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Tpo -c -o unwind/common/libhpcrun_la-stack_troll.lo `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/stack_troll.c' object='unwind/common/libhpcrun_la-stack_troll.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-stack_troll.lo `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-stack_troll.lo `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c unwind/common/libhpcrun_la-uw_recipe_map.lo: unwind/common/uw_recipe_map.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-uw_recipe_map.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Tpo -c -o unwind/common/libhpcrun_la-uw_recipe_map.lo `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/uw_recipe_map.c' object='unwind/common/libhpcrun_la-uw_recipe_map.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-uw_recipe_map.lo `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-uw_recipe_map.lo `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c + +unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: unwind/generic-libunwind/libunw-unwind.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c unwind/ppc64/libhpcrun_la-ppc64-unwind.lo: unwind/ppc64/ppc64-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_la-ppc64-unwind.lo -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Tpo -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind.lo `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind.c' object='unwind/ppc64/libhpcrun_la-ppc64-unwind.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind.lo `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind.lo `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo: unwind/ppc64/ppc64-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Tpo -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind-interval.c' object='unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c unwind/x86-family/libhpcrun_la-x86-all.lo: unwind/x86-family/x86-all.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-all.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-all.lo `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-all.c' object='unwind/x86-family/libhpcrun_la-x86-all.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-all.lo `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-all.lo `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c unwind/x86-family/libhpcrun_la-amd-xop.lo: unwind/x86-family/amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-amd-xop.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Tpo -c -o unwind/x86-family/libhpcrun_la-amd-xop.lo `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/amd-xop.c' object='unwind/x86-family/libhpcrun_la-amd-xop.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-amd-xop.lo `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-amd-xop.lo `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c unwind/x86-family/libhpcrun_la-x86-cold-path.lo: unwind/x86-family/x86-cold-path.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-cold-path.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-cold-path.lo `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-cold-path.c' object='unwind/x86-family/libhpcrun_la-x86-cold-path.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-cold-path.lo `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-cold-path.lo `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo: unwind/x86-family/x86-validate-retn-addr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-validate-retn-addr.c' object='unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo: unwind/x86-family/x86-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval.c' object='unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo: unwind/x86-family/x86-unwind-interval-fixup.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval-fixup.c' object='unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c unwind/x86-family/libhpcrun_la-x86-unwind.lo: unwind/x86-family/x86-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind.lo `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind.c' object='unwind/x86-family/libhpcrun_la-x86-unwind.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind.lo `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind.lo `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c unwind/x86-family/libhpcrun_la-x86-unwind-support.lo: unwind/x86-family/x86-unwind-support.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind-support.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind-support.lo `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-support.c' object='unwind/x86-family/libhpcrun_la-x86-unwind-support.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-support.lo `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-support.lo `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo: unwind/x86-family/manual-intervals/x86-gcc-main64.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-gcc-main64.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo: unwind/x86-family/manual-intervals/x86-linux-dlresolver.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo: unwind/x86-family/manual-intervals/x86-intel11-f90main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel11-f90main.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo: unwind/x86-family/manual-intervals/x86-intel-align32.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align32.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo: unwind/x86-family/manual-intervals/x86-intel-align64.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align64.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo: unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo: unwind/x86-family/manual-intervals/x86-32bit-main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-main.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo: unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo: unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c utilities/libhpcrun_la-last_func.lo: utilities/last_func.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-last_func.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-last_func.Tpo -c -o utilities/libhpcrun_la-last_func.lo `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-last_func.Tpo utilities/$(DEPDIR)/libhpcrun_la-last_func.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/last_func.c' object='utilities/libhpcrun_la-last_func.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-last_func.lo `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-last_func.lo `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c sample-sources/libhpcrun_ga_la-ga-overrides.lo: sample-sources/ga-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_ga_la-ga-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Tpo -c -o sample-sources/libhpcrun_ga_la-ga-overrides.lo `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga-overrides.c' object='sample-sources/libhpcrun_ga_la-ga-overrides.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_la-ga-overrides.lo `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_la-ga-overrides.lo `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo: sample-sources/gpu_blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Tpo -c -o sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame-overrides.c' object='sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo: gpu_blame-driver-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Tpo -c -o libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-driver-overrides-generated.c' object='libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo: gpu_blame-runtime-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Tpo -c -o libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-runtime-overrides-generated.c' object='libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c sample-sources/libhpcrun_io_la-io-over.lo: sample-sources/io-over.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_io_la-io-over.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Tpo -c -o sample-sources/libhpcrun_io_la-io-over.lo `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Tpo sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io-over.c' object='sample-sources/libhpcrun_io_la-io-over.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_la-io-over.lo `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_la-io-over.lo `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c sample-sources/libhpcrun_memleak_la-memleak-overrides.lo: sample-sources/memleak-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_memleak_la-memleak-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Tpo -c -o sample-sources/libhpcrun_memleak_la-memleak-overrides.lo `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak-overrides.c' object='sample-sources/libhpcrun_memleak_la-memleak-overrides.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_la-memleak-overrides.lo `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_la-memleak-overrides.lo `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c ./libhpcrun_mpi_la-mpi-overrides.lo: ./mpi-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_mpi_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_mpi_la_CFLAGS) $(CFLAGS) -MT ./libhpcrun_mpi_la-mpi-overrides.lo -MD -MP -MF $(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Tpo -c -o ./libhpcrun_mpi_la-mpi-overrides.lo `test -f './mpi-overrides.c' || echo '$(srcdir)/'`./mpi-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Tpo $(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='./mpi-overrides.c' object='./libhpcrun_mpi_la-mpi-overrides.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_mpi_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_mpi_la_CFLAGS) $(CFLAGS) -c -o ./libhpcrun_mpi_la-mpi-overrides.lo `test -f './mpi-overrides.c' || echo '$(srcdir)/'`./mpi-overrides.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_mpi_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_mpi_la_CFLAGS) $(CFLAGS) -c -o ./libhpcrun_mpi_la-mpi-overrides.lo `test -f './mpi-overrides.c' || echo '$(srcdir)/'`./mpi-overrides.c sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo: sample-sources/pthread-blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Tpo -c -o sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame-overrides.c' object='sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c libhpctoolkit_la-hpctoolkit.lo: hpctoolkit.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhpctoolkit_la-hpctoolkit.lo -MD -MP -MF $(DEPDIR)/libhpctoolkit_la-hpctoolkit.Tpo -c -o libhpctoolkit_la-hpctoolkit.lo `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpctoolkit_la-hpctoolkit.Tpo $(DEPDIR)/libhpctoolkit_la-hpctoolkit.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpctoolkit.c' object='libhpctoolkit_la-hpctoolkit.lo' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_la-hpctoolkit.lo `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c + $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_la-hpctoolkit.lo `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c utilities/libhpcrun_o-first_func.o: utilities/first_func.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-first_func.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo -c -o utilities/libhpcrun_o-first_func.o `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-first_func.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/first_func.c' object='utilities/libhpcrun_o-first_func.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.o `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.o `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c utilities/libhpcrun_o-first_func.obj: utilities/first_func.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-first_func.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo -c -o utilities/libhpcrun_o-first_func.obj `if test -f 'utilities/first_func.c'; then $(CYGPATH_W) 'utilities/first_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/first_func.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-first_func.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/first_func.c' object='utilities/libhpcrun_o-first_func.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.obj `if test -f 'utilities/first_func.c'; then $(CYGPATH_W) 'utilities/first_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/first_func.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.obj `if test -f 'utilities/first_func.c'; then $(CYGPATH_W) 'utilities/first_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/first_func.c'; fi` libhpcrun_o-main.o: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-main.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-main.Tpo -c -o libhpcrun_o-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-main.Tpo $(DEPDIR)/libhpcrun_o-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libhpcrun_o-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c libhpcrun_o-main.obj: main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-main.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-main.Tpo -c -o libhpcrun_o-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-main.Tpo $(DEPDIR)/libhpcrun_o-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libhpcrun_o-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` libhpcrun_o-disabled.o: disabled.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-disabled.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-disabled.Tpo -c -o libhpcrun_o-disabled.o `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-disabled.Tpo $(DEPDIR)/libhpcrun_o-disabled.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='disabled.c' object='libhpcrun_o-disabled.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.o `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.o `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c libhpcrun_o-disabled.obj: disabled.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-disabled.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-disabled.Tpo -c -o libhpcrun_o-disabled.obj `if test -f 'disabled.c'; then $(CYGPATH_W) 'disabled.c'; else $(CYGPATH_W) '$(srcdir)/disabled.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-disabled.Tpo $(DEPDIR)/libhpcrun_o-disabled.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='disabled.c' object='libhpcrun_o-disabled.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.obj `if test -f 'disabled.c'; then $(CYGPATH_W) 'disabled.c'; else $(CYGPATH_W) '$(srcdir)/disabled.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.obj `if test -f 'disabled.c'; then $(CYGPATH_W) 'disabled.c'; else $(CYGPATH_W) '$(srcdir)/disabled.c'; fi` libhpcrun_o-cct_insert_backtrace.o: cct_insert_backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_insert_backtrace.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo -c -o libhpcrun_o-cct_insert_backtrace.o `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_insert_backtrace.c' object='libhpcrun_o-cct_insert_backtrace.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.o `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.o `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c libhpcrun_o-cct_insert_backtrace.obj: cct_insert_backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_insert_backtrace.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo -c -o libhpcrun_o-cct_insert_backtrace.obj `if test -f 'cct_insert_backtrace.c'; then $(CYGPATH_W) 'cct_insert_backtrace.c'; else $(CYGPATH_W) '$(srcdir)/cct_insert_backtrace.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_insert_backtrace.c' object='libhpcrun_o-cct_insert_backtrace.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.obj `if test -f 'cct_insert_backtrace.c'; then $(CYGPATH_W) 'cct_insert_backtrace.c'; else $(CYGPATH_W) '$(srcdir)/cct_insert_backtrace.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.obj `if test -f 'cct_insert_backtrace.c'; then $(CYGPATH_W) 'cct_insert_backtrace.c'; else $(CYGPATH_W) '$(srcdir)/cct_insert_backtrace.c'; fi` libhpcrun_o-cct_backtrace_finalize.o: cct_backtrace_finalize.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_backtrace_finalize.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo -c -o libhpcrun_o-cct_backtrace_finalize.o `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_backtrace_finalize.c' object='libhpcrun_o-cct_backtrace_finalize.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.o `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.o `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c libhpcrun_o-cct_backtrace_finalize.obj: cct_backtrace_finalize.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_backtrace_finalize.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo -c -o libhpcrun_o-cct_backtrace_finalize.obj `if test -f 'cct_backtrace_finalize.c'; then $(CYGPATH_W) 'cct_backtrace_finalize.c'; else $(CYGPATH_W) '$(srcdir)/cct_backtrace_finalize.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_backtrace_finalize.c' object='libhpcrun_o-cct_backtrace_finalize.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.obj `if test -f 'cct_backtrace_finalize.c'; then $(CYGPATH_W) 'cct_backtrace_finalize.c'; else $(CYGPATH_W) '$(srcdir)/cct_backtrace_finalize.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.obj `if test -f 'cct_backtrace_finalize.c'; then $(CYGPATH_W) 'cct_backtrace_finalize.c'; else $(CYGPATH_W) '$(srcdir)/cct_backtrace_finalize.c'; fi` libhpcrun_o-env.o: env.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-env.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-env.Tpo -c -o libhpcrun_o-env.o `test -f 'env.c' || echo '$(srcdir)/'`env.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-env.Tpo $(DEPDIR)/libhpcrun_o-env.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='env.c' object='libhpcrun_o-env.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.o `test -f 'env.c' || echo '$(srcdir)/'`env.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.o `test -f 'env.c' || echo '$(srcdir)/'`env.c libhpcrun_o-env.obj: env.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-env.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-env.Tpo -c -o libhpcrun_o-env.obj `if test -f 'env.c'; then $(CYGPATH_W) 'env.c'; else $(CYGPATH_W) '$(srcdir)/env.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-env.Tpo $(DEPDIR)/libhpcrun_o-env.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='env.c' object='libhpcrun_o-env.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.obj `if test -f 'env.c'; then $(CYGPATH_W) 'env.c'; else $(CYGPATH_W) '$(srcdir)/env.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.obj `if test -f 'env.c'; then $(CYGPATH_W) 'env.c'; else $(CYGPATH_W) '$(srcdir)/env.c'; fi` libhpcrun_o-epoch.o: epoch.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-epoch.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-epoch.Tpo -c -o libhpcrun_o-epoch.o `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-epoch.Tpo $(DEPDIR)/libhpcrun_o-epoch.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='epoch.c' object='libhpcrun_o-epoch.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.o `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.o `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c libhpcrun_o-epoch.obj: epoch.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-epoch.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-epoch.Tpo -c -o libhpcrun_o-epoch.obj `if test -f 'epoch.c'; then $(CYGPATH_W) 'epoch.c'; else $(CYGPATH_W) '$(srcdir)/epoch.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-epoch.Tpo $(DEPDIR)/libhpcrun_o-epoch.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='epoch.c' object='libhpcrun_o-epoch.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.obj `if test -f 'epoch.c'; then $(CYGPATH_W) 'epoch.c'; else $(CYGPATH_W) '$(srcdir)/epoch.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.obj `if test -f 'epoch.c'; then $(CYGPATH_W) 'epoch.c'; else $(CYGPATH_W) '$(srcdir)/epoch.c'; fi` libhpcrun_o-files.o: files.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-files.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-files.Tpo -c -o libhpcrun_o-files.o `test -f 'files.c' || echo '$(srcdir)/'`files.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-files.Tpo $(DEPDIR)/libhpcrun_o-files.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='files.c' object='libhpcrun_o-files.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.o `test -f 'files.c' || echo '$(srcdir)/'`files.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.o `test -f 'files.c' || echo '$(srcdir)/'`files.c libhpcrun_o-files.obj: files.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-files.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-files.Tpo -c -o libhpcrun_o-files.obj `if test -f 'files.c'; then $(CYGPATH_W) 'files.c'; else $(CYGPATH_W) '$(srcdir)/files.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-files.Tpo $(DEPDIR)/libhpcrun_o-files.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='files.c' object='libhpcrun_o-files.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.obj `if test -f 'files.c'; then $(CYGPATH_W) 'files.c'; else $(CYGPATH_W) '$(srcdir)/files.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.obj `if test -f 'files.c'; then $(CYGPATH_W) 'files.c'; else $(CYGPATH_W) '$(srcdir)/files.c'; fi` libhpcrun_o-handling_sample.o: handling_sample.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-handling_sample.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-handling_sample.Tpo -c -o libhpcrun_o-handling_sample.o `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-handling_sample.Tpo $(DEPDIR)/libhpcrun_o-handling_sample.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='handling_sample.c' object='libhpcrun_o-handling_sample.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.o `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.o `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c libhpcrun_o-handling_sample.obj: handling_sample.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-handling_sample.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-handling_sample.Tpo -c -o libhpcrun_o-handling_sample.obj `if test -f 'handling_sample.c'; then $(CYGPATH_W) 'handling_sample.c'; else $(CYGPATH_W) '$(srcdir)/handling_sample.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-handling_sample.Tpo $(DEPDIR)/libhpcrun_o-handling_sample.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='handling_sample.c' object='libhpcrun_o-handling_sample.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.obj `if test -f 'handling_sample.c'; then $(CYGPATH_W) 'handling_sample.c'; else $(CYGPATH_W) '$(srcdir)/handling_sample.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.obj `if test -f 'handling_sample.c'; then $(CYGPATH_W) 'handling_sample.c'; else $(CYGPATH_W) '$(srcdir)/handling_sample.c'; fi` libhpcrun_o-hpcrun_options.o: hpcrun_options.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_options.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo -c -o libhpcrun_o-hpcrun_options.o `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_options.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_options.c' object='libhpcrun_o-hpcrun_options.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.o `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.o `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c libhpcrun_o-hpcrun_options.obj: hpcrun_options.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_options.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo -c -o libhpcrun_o-hpcrun_options.obj `if test -f 'hpcrun_options.c'; then $(CYGPATH_W) 'hpcrun_options.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_options.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_options.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_options.c' object='libhpcrun_o-hpcrun_options.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.obj `if test -f 'hpcrun_options.c'; then $(CYGPATH_W) 'hpcrun_options.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_options.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.obj `if test -f 'hpcrun_options.c'; then $(CYGPATH_W) 'hpcrun_options.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_options.c'; fi` libhpcrun_o-hpcrun_stats.o: hpcrun_stats.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_stats.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo -c -o libhpcrun_o-hpcrun_stats.o `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_stats.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_stats.c' object='libhpcrun_o-hpcrun_stats.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.o `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.o `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c libhpcrun_o-hpcrun_stats.obj: hpcrun_stats.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_stats.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo -c -o libhpcrun_o-hpcrun_stats.obj `if test -f 'hpcrun_stats.c'; then $(CYGPATH_W) 'hpcrun_stats.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_stats.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_stats.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_stats.c' object='libhpcrun_o-hpcrun_stats.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.obj `if test -f 'hpcrun_stats.c'; then $(CYGPATH_W) 'hpcrun_stats.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_stats.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.obj `if test -f 'hpcrun_stats.c'; then $(CYGPATH_W) 'hpcrun_stats.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_stats.c'; fi` libhpcrun_o-loadmap.o: loadmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-loadmap.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-loadmap.Tpo -c -o libhpcrun_o-loadmap.o `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-loadmap.Tpo $(DEPDIR)/libhpcrun_o-loadmap.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='loadmap.c' object='libhpcrun_o-loadmap.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.o `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.o `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c libhpcrun_o-loadmap.obj: loadmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-loadmap.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-loadmap.Tpo -c -o libhpcrun_o-loadmap.obj `if test -f 'loadmap.c'; then $(CYGPATH_W) 'loadmap.c'; else $(CYGPATH_W) '$(srcdir)/loadmap.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-loadmap.Tpo $(DEPDIR)/libhpcrun_o-loadmap.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='loadmap.c' object='libhpcrun_o-loadmap.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.obj `if test -f 'loadmap.c'; then $(CYGPATH_W) 'loadmap.c'; else $(CYGPATH_W) '$(srcdir)/loadmap.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.obj `if test -f 'loadmap.c'; then $(CYGPATH_W) 'loadmap.c'; else $(CYGPATH_W) '$(srcdir)/loadmap.c'; fi` libhpcrun_o-metrics.o: metrics.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-metrics.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-metrics.Tpo -c -o libhpcrun_o-metrics.o `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-metrics.Tpo $(DEPDIR)/libhpcrun_o-metrics.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='metrics.c' object='libhpcrun_o-metrics.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.o `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.o `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c libhpcrun_o-metrics.obj: metrics.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-metrics.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-metrics.Tpo -c -o libhpcrun_o-metrics.obj `if test -f 'metrics.c'; then $(CYGPATH_W) 'metrics.c'; else $(CYGPATH_W) '$(srcdir)/metrics.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-metrics.Tpo $(DEPDIR)/libhpcrun_o-metrics.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='metrics.c' object='libhpcrun_o-metrics.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.obj `if test -f 'metrics.c'; then $(CYGPATH_W) 'metrics.c'; else $(CYGPATH_W) '$(srcdir)/metrics.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.obj `if test -f 'metrics.c'; then $(CYGPATH_W) 'metrics.c'; else $(CYGPATH_W) '$(srcdir)/metrics.c'; fi` libhpcrun_o-name.o: name.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-name.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-name.Tpo -c -o libhpcrun_o-name.o `test -f 'name.c' || echo '$(srcdir)/'`name.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-name.Tpo $(DEPDIR)/libhpcrun_o-name.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='name.c' object='libhpcrun_o-name.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.o `test -f 'name.c' || echo '$(srcdir)/'`name.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.o `test -f 'name.c' || echo '$(srcdir)/'`name.c libhpcrun_o-name.obj: name.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-name.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-name.Tpo -c -o libhpcrun_o-name.obj `if test -f 'name.c'; then $(CYGPATH_W) 'name.c'; else $(CYGPATH_W) '$(srcdir)/name.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-name.Tpo $(DEPDIR)/libhpcrun_o-name.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='name.c' object='libhpcrun_o-name.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.obj `if test -f 'name.c'; then $(CYGPATH_W) 'name.c'; else $(CYGPATH_W) '$(srcdir)/name.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.obj `if test -f 'name.c'; then $(CYGPATH_W) 'name.c'; else $(CYGPATH_W) '$(srcdir)/name.c'; fi` libhpcrun_o-rank.o: rank.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-rank.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-rank.Tpo -c -o libhpcrun_o-rank.o `test -f 'rank.c' || echo '$(srcdir)/'`rank.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-rank.Tpo $(DEPDIR)/libhpcrun_o-rank.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rank.c' object='libhpcrun_o-rank.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.o `test -f 'rank.c' || echo '$(srcdir)/'`rank.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.o `test -f 'rank.c' || echo '$(srcdir)/'`rank.c libhpcrun_o-rank.obj: rank.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-rank.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-rank.Tpo -c -o libhpcrun_o-rank.obj `if test -f 'rank.c'; then $(CYGPATH_W) 'rank.c'; else $(CYGPATH_W) '$(srcdir)/rank.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-rank.Tpo $(DEPDIR)/libhpcrun_o-rank.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rank.c' object='libhpcrun_o-rank.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.obj `if test -f 'rank.c'; then $(CYGPATH_W) 'rank.c'; else $(CYGPATH_W) '$(srcdir)/rank.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.obj `if test -f 'rank.c'; then $(CYGPATH_W) 'rank.c'; else $(CYGPATH_W) '$(srcdir)/rank.c'; fi` libhpcrun_o-sample_event.o: sample_event.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_event.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_event.Tpo -c -o libhpcrun_o-sample_event.o `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_event.Tpo $(DEPDIR)/libhpcrun_o-sample_event.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_event.c' object='libhpcrun_o-sample_event.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.o `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.o `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c libhpcrun_o-sample_event.obj: sample_event.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_event.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_event.Tpo -c -o libhpcrun_o-sample_event.obj `if test -f 'sample_event.c'; then $(CYGPATH_W) 'sample_event.c'; else $(CYGPATH_W) '$(srcdir)/sample_event.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_event.Tpo $(DEPDIR)/libhpcrun_o-sample_event.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_event.c' object='libhpcrun_o-sample_event.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.obj `if test -f 'sample_event.c'; then $(CYGPATH_W) 'sample_event.c'; else $(CYGPATH_W) '$(srcdir)/sample_event.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.obj `if test -f 'sample_event.c'; then $(CYGPATH_W) 'sample_event.c'; else $(CYGPATH_W) '$(srcdir)/sample_event.c'; fi` libhpcrun_o-sample_prob.o: sample_prob.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_prob.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_prob.Tpo -c -o libhpcrun_o-sample_prob.o `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_prob.Tpo $(DEPDIR)/libhpcrun_o-sample_prob.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_prob.c' object='libhpcrun_o-sample_prob.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.o `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.o `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c libhpcrun_o-sample_prob.obj: sample_prob.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_prob.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_prob.Tpo -c -o libhpcrun_o-sample_prob.obj `if test -f 'sample_prob.c'; then $(CYGPATH_W) 'sample_prob.c'; else $(CYGPATH_W) '$(srcdir)/sample_prob.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_prob.Tpo $(DEPDIR)/libhpcrun_o-sample_prob.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_prob.c' object='libhpcrun_o-sample_prob.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.obj `if test -f 'sample_prob.c'; then $(CYGPATH_W) 'sample_prob.c'; else $(CYGPATH_W) '$(srcdir)/sample_prob.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.obj `if test -f 'sample_prob.c'; then $(CYGPATH_W) 'sample_prob.c'; else $(CYGPATH_W) '$(srcdir)/sample_prob.c'; fi` libhpcrun_o-sample_sources_all.o: sample_sources_all.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_all.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo -c -o libhpcrun_o-sample_sources_all.o `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_all.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_all.c' object='libhpcrun_o-sample_sources_all.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.o `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.o `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c libhpcrun_o-sample_sources_all.obj: sample_sources_all.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_all.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo -c -o libhpcrun_o-sample_sources_all.obj `if test -f 'sample_sources_all.c'; then $(CYGPATH_W) 'sample_sources_all.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_all.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_all.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_all.c' object='libhpcrun_o-sample_sources_all.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.obj `if test -f 'sample_sources_all.c'; then $(CYGPATH_W) 'sample_sources_all.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_all.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.obj `if test -f 'sample_sources_all.c'; then $(CYGPATH_W) 'sample_sources_all.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_all.c'; fi` sample-sources/blame-shift/libhpcrun_o-blame-shift.o: sample-sources/blame-shift/blame-shift.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-shift.o -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.o `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-shift.c' object='sample-sources/blame-shift/libhpcrun_o-blame-shift.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.o `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.o `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c sample-sources/blame-shift/libhpcrun_o-blame-shift.obj: sample-sources/blame-shift/blame-shift.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-shift.obj -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.obj `if test -f 'sample-sources/blame-shift/blame-shift.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-shift.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-shift.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-shift.c' object='sample-sources/blame-shift/libhpcrun_o-blame-shift.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.obj `if test -f 'sample-sources/blame-shift/blame-shift.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-shift.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-shift.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.obj `if test -f 'sample-sources/blame-shift/blame-shift.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-shift.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-shift.c'; fi` sample-sources/blame-shift/libhpcrun_o-blame-map.o: sample-sources/blame-shift/blame-map.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-map.o -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.o `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-map.c' object='sample-sources/blame-shift/libhpcrun_o-blame-map.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.o `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.o `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c sample-sources/blame-shift/libhpcrun_o-blame-map.obj: sample-sources/blame-shift/blame-map.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-map.obj -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.obj `if test -f 'sample-sources/blame-shift/blame-map.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-map.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-map.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-map.c' object='sample-sources/blame-shift/libhpcrun_o-blame-map.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.obj `if test -f 'sample-sources/blame-shift/blame-map.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-map.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-map.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.obj `if test -f 'sample-sources/blame-shift/blame-map.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-map.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-map.c'; fi` sample-sources/libhpcrun_o-common.o: sample-sources/common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-common.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo -c -o sample-sources/libhpcrun_o-common.o `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/common.c' object='sample-sources/libhpcrun_o-common.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.o `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.o `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c sample-sources/libhpcrun_o-common.obj: sample-sources/common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-common.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo -c -o sample-sources/libhpcrun_o-common.obj `if test -f 'sample-sources/common.c'; then $(CYGPATH_W) 'sample-sources/common.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/common.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/common.c' object='sample-sources/libhpcrun_o-common.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.obj `if test -f 'sample-sources/common.c'; then $(CYGPATH_W) 'sample-sources/common.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/common.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.obj `if test -f 'sample-sources/common.c'; then $(CYGPATH_W) 'sample-sources/common.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/common.c'; fi` sample-sources/libhpcrun_o-ga.o: sample-sources/ga.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-ga.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo -c -o sample-sources/libhpcrun_o-ga.o `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-ga.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga.c' object='sample-sources/libhpcrun_o-ga.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.o `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.o `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c sample-sources/libhpcrun_o-ga.obj: sample-sources/ga.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-ga.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo -c -o sample-sources/libhpcrun_o-ga.obj `if test -f 'sample-sources/ga.c'; then $(CYGPATH_W) 'sample-sources/ga.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-ga.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga.c' object='sample-sources/libhpcrun_o-ga.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.obj `if test -f 'sample-sources/ga.c'; then $(CYGPATH_W) 'sample-sources/ga.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.obj `if test -f 'sample-sources/ga.c'; then $(CYGPATH_W) 'sample-sources/ga.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga.c'; fi` sample-sources/libhpcrun_o-io.o: sample-sources/io.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-io.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo -c -o sample-sources/libhpcrun_o-io.o `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-io.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io.c' object='sample-sources/libhpcrun_o-io.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.o `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.o `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c sample-sources/libhpcrun_o-io.obj: sample-sources/io.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-io.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo -c -o sample-sources/libhpcrun_o-io.obj `if test -f 'sample-sources/io.c'; then $(CYGPATH_W) 'sample-sources/io.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-io.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io.c' object='sample-sources/libhpcrun_o-io.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.obj `if test -f 'sample-sources/io.c'; then $(CYGPATH_W) 'sample-sources/io.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.obj `if test -f 'sample-sources/io.c'; then $(CYGPATH_W) 'sample-sources/io.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io.c'; fi` sample-sources/libhpcrun_o-itimer.o: sample-sources/itimer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-itimer.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo -c -o sample-sources/libhpcrun_o-itimer.o `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/itimer.c' object='sample-sources/libhpcrun_o-itimer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.o `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.o `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c sample-sources/libhpcrun_o-itimer.obj: sample-sources/itimer.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-itimer.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo -c -o sample-sources/libhpcrun_o-itimer.obj `if test -f 'sample-sources/itimer.c'; then $(CYGPATH_W) 'sample-sources/itimer.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/itimer.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/itimer.c' object='sample-sources/libhpcrun_o-itimer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.obj `if test -f 'sample-sources/itimer.c'; then $(CYGPATH_W) 'sample-sources/itimer.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/itimer.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.obj `if test -f 'sample-sources/itimer.c'; then $(CYGPATH_W) 'sample-sources/itimer.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/itimer.c'; fi` sample-sources/libhpcrun_o-idle.o: sample-sources/idle.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-idle.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo -c -o sample-sources/libhpcrun_o-idle.o `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-idle.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/idle.c' object='sample-sources/libhpcrun_o-idle.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.o `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.o `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c sample-sources/libhpcrun_o-idle.obj: sample-sources/idle.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-idle.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo -c -o sample-sources/libhpcrun_o-idle.obj `if test -f 'sample-sources/idle.c'; then $(CYGPATH_W) 'sample-sources/idle.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/idle.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-idle.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/idle.c' object='sample-sources/libhpcrun_o-idle.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.obj `if test -f 'sample-sources/idle.c'; then $(CYGPATH_W) 'sample-sources/idle.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/idle.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.obj `if test -f 'sample-sources/idle.c'; then $(CYGPATH_W) 'sample-sources/idle.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/idle.c'; fi` sample-sources/libhpcrun_o-memleak.o: sample-sources/memleak.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-memleak.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo -c -o sample-sources/libhpcrun_o-memleak.o `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak.c' object='sample-sources/libhpcrun_o-memleak.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.o `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.o `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c sample-sources/libhpcrun_o-memleak.obj: sample-sources/memleak.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-memleak.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo -c -o sample-sources/libhpcrun_o-memleak.obj `if test -f 'sample-sources/memleak.c'; then $(CYGPATH_W) 'sample-sources/memleak.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak.c' object='sample-sources/libhpcrun_o-memleak.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.obj `if test -f 'sample-sources/memleak.c'; then $(CYGPATH_W) 'sample-sources/memleak.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.obj `if test -f 'sample-sources/memleak.c'; then $(CYGPATH_W) 'sample-sources/memleak.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak.c'; fi` sample-sources/libhpcrun_o-pthread-blame.o: sample-sources/pthread-blame.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-pthread-blame.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo -c -o sample-sources/libhpcrun_o-pthread-blame.o `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame.c' object='sample-sources/libhpcrun_o-pthread-blame.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.o `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.o `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c sample-sources/libhpcrun_o-pthread-blame.obj: sample-sources/pthread-blame.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-pthread-blame.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo -c -o sample-sources/libhpcrun_o-pthread-blame.obj `if test -f 'sample-sources/pthread-blame.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame.c' object='sample-sources/libhpcrun_o-pthread-blame.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.obj `if test -f 'sample-sources/pthread-blame.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.obj `if test -f 'sample-sources/pthread-blame.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame.c'; fi` sample-sources/libhpcrun_o-none.o: sample-sources/none.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-none.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo -c -o sample-sources/libhpcrun_o-none.o `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-none.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/none.c' object='sample-sources/libhpcrun_o-none.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.o `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.o `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c sample-sources/libhpcrun_o-none.obj: sample-sources/none.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-none.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo -c -o sample-sources/libhpcrun_o-none.obj `if test -f 'sample-sources/none.c'; then $(CYGPATH_W) 'sample-sources/none.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/none.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-none.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/none.c' object='sample-sources/libhpcrun_o-none.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.obj `if test -f 'sample-sources/none.c'; then $(CYGPATH_W) 'sample-sources/none.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/none.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.obj `if test -f 'sample-sources/none.c'; then $(CYGPATH_W) 'sample-sources/none.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/none.c'; fi` sample-sources/libhpcrun_o-retcnt.o: sample-sources/retcnt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-retcnt.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo -c -o sample-sources/libhpcrun_o-retcnt.o `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/retcnt.c' object='sample-sources/libhpcrun_o-retcnt.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.o `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.o `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c sample-sources/libhpcrun_o-retcnt.obj: sample-sources/retcnt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-retcnt.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo -c -o sample-sources/libhpcrun_o-retcnt.obj `if test -f 'sample-sources/retcnt.c'; then $(CYGPATH_W) 'sample-sources/retcnt.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/retcnt.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/retcnt.c' object='sample-sources/libhpcrun_o-retcnt.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.obj `if test -f 'sample-sources/retcnt.c'; then $(CYGPATH_W) 'sample-sources/retcnt.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/retcnt.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.obj `if test -f 'sample-sources/retcnt.c'; then $(CYGPATH_W) 'sample-sources/retcnt.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/retcnt.c'; fi` sample-sources/libhpcrun_o-sync.o: sample-sources/sync.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-sync.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo -c -o sample-sources/libhpcrun_o-sync.o `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-sync.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/sync.c' object='sample-sources/libhpcrun_o-sync.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.o `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.o `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c sample-sources/libhpcrun_o-sync.obj: sample-sources/sync.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-sync.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo -c -o sample-sources/libhpcrun_o-sync.obj `if test -f 'sample-sources/sync.c'; then $(CYGPATH_W) 'sample-sources/sync.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/sync.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-sync.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/sync.c' object='sample-sources/libhpcrun_o-sync.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.obj `if test -f 'sample-sources/sync.c'; then $(CYGPATH_W) 'sample-sources/sync.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/sync.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.obj `if test -f 'sample-sources/sync.c'; then $(CYGPATH_W) 'sample-sources/sync.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/sync.c'; fi` libhpcrun_o-sample_sources_registered.o: sample_sources_registered.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_registered.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo -c -o libhpcrun_o-sample_sources_registered.o `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_registered.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_registered.c' object='libhpcrun_o-sample_sources_registered.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.o `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.o `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c libhpcrun_o-sample_sources_registered.obj: sample_sources_registered.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_registered.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo -c -o libhpcrun_o-sample_sources_registered.obj `if test -f 'sample_sources_registered.c'; then $(CYGPATH_W) 'sample_sources_registered.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_registered.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_registered.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_registered.c' object='libhpcrun_o-sample_sources_registered.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.obj `if test -f 'sample_sources_registered.c'; then $(CYGPATH_W) 'sample_sources_registered.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_registered.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.obj `if test -f 'sample_sources_registered.c'; then $(CYGPATH_W) 'sample_sources_registered.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_registered.c'; fi` libhpcrun_o-segv_handler.o: segv_handler.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-segv_handler.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-segv_handler.Tpo -c -o libhpcrun_o-segv_handler.o `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-segv_handler.Tpo $(DEPDIR)/libhpcrun_o-segv_handler.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='segv_handler.c' object='libhpcrun_o-segv_handler.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.o `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.o `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c libhpcrun_o-segv_handler.obj: segv_handler.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-segv_handler.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-segv_handler.Tpo -c -o libhpcrun_o-segv_handler.obj `if test -f 'segv_handler.c'; then $(CYGPATH_W) 'segv_handler.c'; else $(CYGPATH_W) '$(srcdir)/segv_handler.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-segv_handler.Tpo $(DEPDIR)/libhpcrun_o-segv_handler.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='segv_handler.c' object='libhpcrun_o-segv_handler.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.obj `if test -f 'segv_handler.c'; then $(CYGPATH_W) 'segv_handler.c'; else $(CYGPATH_W) '$(srcdir)/segv_handler.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.obj `if test -f 'segv_handler.c'; then $(CYGPATH_W) 'segv_handler.c'; else $(CYGPATH_W) '$(srcdir)/segv_handler.c'; fi` libhpcrun_o-start-stop.o: start-stop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-start-stop.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-start-stop.Tpo -c -o libhpcrun_o-start-stop.o `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-start-stop.Tpo $(DEPDIR)/libhpcrun_o-start-stop.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='start-stop.c' object='libhpcrun_o-start-stop.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.o `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.o `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c libhpcrun_o-start-stop.obj: start-stop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-start-stop.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-start-stop.Tpo -c -o libhpcrun_o-start-stop.obj `if test -f 'start-stop.c'; then $(CYGPATH_W) 'start-stop.c'; else $(CYGPATH_W) '$(srcdir)/start-stop.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-start-stop.Tpo $(DEPDIR)/libhpcrun_o-start-stop.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='start-stop.c' object='libhpcrun_o-start-stop.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.obj `if test -f 'start-stop.c'; then $(CYGPATH_W) 'start-stop.c'; else $(CYGPATH_W) '$(srcdir)/start-stop.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.obj `if test -f 'start-stop.c'; then $(CYGPATH_W) 'start-stop.c'; else $(CYGPATH_W) '$(srcdir)/start-stop.c'; fi` libhpcrun_o-term_handler.o: term_handler.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-term_handler.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-term_handler.Tpo -c -o libhpcrun_o-term_handler.o `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-term_handler.Tpo $(DEPDIR)/libhpcrun_o-term_handler.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='term_handler.c' object='libhpcrun_o-term_handler.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.o `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.o `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c libhpcrun_o-term_handler.obj: term_handler.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-term_handler.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-term_handler.Tpo -c -o libhpcrun_o-term_handler.obj `if test -f 'term_handler.c'; then $(CYGPATH_W) 'term_handler.c'; else $(CYGPATH_W) '$(srcdir)/term_handler.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-term_handler.Tpo $(DEPDIR)/libhpcrun_o-term_handler.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='term_handler.c' object='libhpcrun_o-term_handler.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.obj `if test -f 'term_handler.c'; then $(CYGPATH_W) 'term_handler.c'; else $(CYGPATH_W) '$(srcdir)/term_handler.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.obj `if test -f 'term_handler.c'; then $(CYGPATH_W) 'term_handler.c'; else $(CYGPATH_W) '$(srcdir)/term_handler.c'; fi` libhpcrun_o-thread_data.o: thread_data.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_data.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_data.Tpo -c -o libhpcrun_o-thread_data.o `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_data.Tpo $(DEPDIR)/libhpcrun_o-thread_data.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_data.c' object='libhpcrun_o-thread_data.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.o `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.o `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c libhpcrun_o-thread_data.obj: thread_data.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_data.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_data.Tpo -c -o libhpcrun_o-thread_data.obj `if test -f 'thread_data.c'; then $(CYGPATH_W) 'thread_data.c'; else $(CYGPATH_W) '$(srcdir)/thread_data.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_data.Tpo $(DEPDIR)/libhpcrun_o-thread_data.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_data.c' object='libhpcrun_o-thread_data.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.obj `if test -f 'thread_data.c'; then $(CYGPATH_W) 'thread_data.c'; else $(CYGPATH_W) '$(srcdir)/thread_data.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.obj `if test -f 'thread_data.c'; then $(CYGPATH_W) 'thread_data.c'; else $(CYGPATH_W) '$(srcdir)/thread_data.c'; fi` libhpcrun_o-thread_use.o: thread_use.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_use.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_use.Tpo -c -o libhpcrun_o-thread_use.o `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_use.Tpo $(DEPDIR)/libhpcrun_o-thread_use.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_use.c' object='libhpcrun_o-thread_use.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.o `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.o `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c libhpcrun_o-thread_use.obj: thread_use.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_use.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_use.Tpo -c -o libhpcrun_o-thread_use.obj `if test -f 'thread_use.c'; then $(CYGPATH_W) 'thread_use.c'; else $(CYGPATH_W) '$(srcdir)/thread_use.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_use.Tpo $(DEPDIR)/libhpcrun_o-thread_use.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_use.c' object='libhpcrun_o-thread_use.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.obj `if test -f 'thread_use.c'; then $(CYGPATH_W) 'thread_use.c'; else $(CYGPATH_W) '$(srcdir)/thread_use.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.obj `if test -f 'thread_use.c'; then $(CYGPATH_W) 'thread_use.c'; else $(CYGPATH_W) '$(srcdir)/thread_use.c'; fi` libhpcrun_o-threadmgr.o: threadmgr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-threadmgr.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-threadmgr.Tpo -c -o libhpcrun_o-threadmgr.o `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-threadmgr.Tpo $(DEPDIR)/libhpcrun_o-threadmgr.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='threadmgr.c' object='libhpcrun_o-threadmgr.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.o `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.o `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c libhpcrun_o-threadmgr.obj: threadmgr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-threadmgr.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-threadmgr.Tpo -c -o libhpcrun_o-threadmgr.obj `if test -f 'threadmgr.c'; then $(CYGPATH_W) 'threadmgr.c'; else $(CYGPATH_W) '$(srcdir)/threadmgr.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-threadmgr.Tpo $(DEPDIR)/libhpcrun_o-threadmgr.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='threadmgr.c' object='libhpcrun_o-threadmgr.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.obj `if test -f 'threadmgr.c'; then $(CYGPATH_W) 'threadmgr.c'; else $(CYGPATH_W) '$(srcdir)/threadmgr.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.obj `if test -f 'threadmgr.c'; then $(CYGPATH_W) 'threadmgr.c'; else $(CYGPATH_W) '$(srcdir)/threadmgr.c'; fi` libhpcrun_o-trace.o: trace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-trace.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-trace.Tpo -c -o libhpcrun_o-trace.o `test -f 'trace.c' || echo '$(srcdir)/'`trace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-trace.Tpo $(DEPDIR)/libhpcrun_o-trace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trace.c' object='libhpcrun_o-trace.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.o `test -f 'trace.c' || echo '$(srcdir)/'`trace.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.o `test -f 'trace.c' || echo '$(srcdir)/'`trace.c libhpcrun_o-trace.obj: trace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-trace.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-trace.Tpo -c -o libhpcrun_o-trace.obj `if test -f 'trace.c'; then $(CYGPATH_W) 'trace.c'; else $(CYGPATH_W) '$(srcdir)/trace.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-trace.Tpo $(DEPDIR)/libhpcrun_o-trace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trace.c' object='libhpcrun_o-trace.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.obj `if test -f 'trace.c'; then $(CYGPATH_W) 'trace.c'; else $(CYGPATH_W) '$(srcdir)/trace.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.obj `if test -f 'trace.c'; then $(CYGPATH_W) 'trace.c'; else $(CYGPATH_W) '$(srcdir)/trace.c'; fi` libhpcrun_o-weak.o: weak.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-weak.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-weak.Tpo -c -o libhpcrun_o-weak.o `test -f 'weak.c' || echo '$(srcdir)/'`weak.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-weak.Tpo $(DEPDIR)/libhpcrun_o-weak.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weak.c' object='libhpcrun_o-weak.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.o `test -f 'weak.c' || echo '$(srcdir)/'`weak.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.o `test -f 'weak.c' || echo '$(srcdir)/'`weak.c libhpcrun_o-weak.obj: weak.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-weak.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-weak.Tpo -c -o libhpcrun_o-weak.obj `if test -f 'weak.c'; then $(CYGPATH_W) 'weak.c'; else $(CYGPATH_W) '$(srcdir)/weak.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-weak.Tpo $(DEPDIR)/libhpcrun_o-weak.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weak.c' object='libhpcrun_o-weak.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.obj `if test -f 'weak.c'; then $(CYGPATH_W) 'weak.c'; else $(CYGPATH_W) '$(srcdir)/weak.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.obj `if test -f 'weak.c'; then $(CYGPATH_W) 'weak.c'; else $(CYGPATH_W) '$(srcdir)/weak.c'; fi` libhpcrun_o-write_data.o: write_data.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-write_data.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-write_data.Tpo -c -o libhpcrun_o-write_data.o `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-write_data.Tpo $(DEPDIR)/libhpcrun_o-write_data.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='write_data.c' object='libhpcrun_o-write_data.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.o `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.o `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c libhpcrun_o-write_data.obj: write_data.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-write_data.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-write_data.Tpo -c -o libhpcrun_o-write_data.obj `if test -f 'write_data.c'; then $(CYGPATH_W) 'write_data.c'; else $(CYGPATH_W) '$(srcdir)/write_data.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-write_data.Tpo $(DEPDIR)/libhpcrun_o-write_data.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='write_data.c' object='libhpcrun_o-write_data.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.obj `if test -f 'write_data.c'; then $(CYGPATH_W) 'write_data.c'; else $(CYGPATH_W) '$(srcdir)/write_data.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.obj `if test -f 'write_data.c'; then $(CYGPATH_W) 'write_data.c'; else $(CYGPATH_W) '$(srcdir)/write_data.c'; fi` cct/libhpcrun_o-cct_bundle.o: cct/cct_bundle.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_bundle.o -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo -c -o cct/libhpcrun_o-cct_bundle.o `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_bundle.c' object='cct/libhpcrun_o-cct_bundle.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.o `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.o `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c cct/libhpcrun_o-cct_bundle.obj: cct/cct_bundle.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_bundle.obj -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo -c -o cct/libhpcrun_o-cct_bundle.obj `if test -f 'cct/cct_bundle.c'; then $(CYGPATH_W) 'cct/cct_bundle.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_bundle.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_bundle.c' object='cct/libhpcrun_o-cct_bundle.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.obj `if test -f 'cct/cct_bundle.c'; then $(CYGPATH_W) 'cct/cct_bundle.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_bundle.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.obj `if test -f 'cct/cct_bundle.c'; then $(CYGPATH_W) 'cct/cct_bundle.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_bundle.c'; fi` cct/libhpcrun_o-cct_ctxt.o: cct/cct_ctxt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_ctxt.o -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo -c -o cct/libhpcrun_o-cct_ctxt.o `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_ctxt.c' object='cct/libhpcrun_o-cct_ctxt.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.o `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.o `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c cct/libhpcrun_o-cct_ctxt.obj: cct/cct_ctxt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_ctxt.obj -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo -c -o cct/libhpcrun_o-cct_ctxt.obj `if test -f 'cct/cct_ctxt.c'; then $(CYGPATH_W) 'cct/cct_ctxt.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_ctxt.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_ctxt.c' object='cct/libhpcrun_o-cct_ctxt.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.obj `if test -f 'cct/cct_ctxt.c'; then $(CYGPATH_W) 'cct/cct_ctxt.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_ctxt.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.obj `if test -f 'cct/cct_ctxt.c'; then $(CYGPATH_W) 'cct/cct_ctxt.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_ctxt.c'; fi` cct/libhpcrun_o-cct.o: cct/cct.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct.o -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct.Tpo -c -o cct/libhpcrun_o-cct.o `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct.Tpo cct/$(DEPDIR)/libhpcrun_o-cct.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct.c' object='cct/libhpcrun_o-cct.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.o `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.o `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c cct/libhpcrun_o-cct.obj: cct/cct.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct.obj -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct.Tpo -c -o cct/libhpcrun_o-cct.obj `if test -f 'cct/cct.c'; then $(CYGPATH_W) 'cct/cct.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct.Tpo cct/$(DEPDIR)/libhpcrun_o-cct.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct.c' object='cct/libhpcrun_o-cct.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.obj `if test -f 'cct/cct.c'; then $(CYGPATH_W) 'cct/cct.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.obj `if test -f 'cct/cct.c'; then $(CYGPATH_W) 'cct/cct.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct.c'; fi` libhpcrun_o-cct2metrics.o: cct2metrics.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct2metrics.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo -c -o libhpcrun_o-cct2metrics.o `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo $(DEPDIR)/libhpcrun_o-cct2metrics.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct2metrics.c' object='libhpcrun_o-cct2metrics.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.o `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.o `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c libhpcrun_o-cct2metrics.obj: cct2metrics.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct2metrics.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo -c -o libhpcrun_o-cct2metrics.obj `if test -f 'cct2metrics.c'; then $(CYGPATH_W) 'cct2metrics.c'; else $(CYGPATH_W) '$(srcdir)/cct2metrics.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo $(DEPDIR)/libhpcrun_o-cct2metrics.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct2metrics.c' object='libhpcrun_o-cct2metrics.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.obj `if test -f 'cct2metrics.c'; then $(CYGPATH_W) 'cct2metrics.c'; else $(CYGPATH_W) '$(srcdir)/cct2metrics.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.obj `if test -f 'cct2metrics.c'; then $(CYGPATH_W) 'cct2metrics.c'; else $(CYGPATH_W) '$(srcdir)/cct2metrics.c'; fi` trampoline/common/libhpcrun_o-trampoline.o: trampoline/common/trampoline.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/common/libhpcrun_o-trampoline.o -MD -MP -MF trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo -c -o trampoline/common/libhpcrun_o-trampoline.o `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/common/trampoline.c' object='trampoline/common/libhpcrun_o-trampoline.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.o `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.o `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c trampoline/common/libhpcrun_o-trampoline.obj: trampoline/common/trampoline.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/common/libhpcrun_o-trampoline.obj -MD -MP -MF trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo -c -o trampoline/common/libhpcrun_o-trampoline.obj `if test -f 'trampoline/common/trampoline.c'; then $(CYGPATH_W) 'trampoline/common/trampoline.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/common/trampoline.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/common/trampoline.c' object='trampoline/common/libhpcrun_o-trampoline.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.obj `if test -f 'trampoline/common/trampoline.c'; then $(CYGPATH_W) 'trampoline/common/trampoline.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/common/trampoline.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.obj `if test -f 'trampoline/common/trampoline.c'; then $(CYGPATH_W) 'trampoline/common/trampoline.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/common/trampoline.c'; fi` lush/libhpcrun_o-lush-backtrace.o: lush/lush-backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-backtrace.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo -c -o lush/libhpcrun_o-lush-backtrace.o `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-backtrace.c' object='lush/libhpcrun_o-lush-backtrace.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.o `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.o `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c lush/libhpcrun_o-lush-backtrace.obj: lush/lush-backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-backtrace.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo -c -o lush/libhpcrun_o-lush-backtrace.obj `if test -f 'lush/lush-backtrace.c'; then $(CYGPATH_W) 'lush/lush-backtrace.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-backtrace.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-backtrace.c' object='lush/libhpcrun_o-lush-backtrace.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.obj `if test -f 'lush/lush-backtrace.c'; then $(CYGPATH_W) 'lush/lush-backtrace.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-backtrace.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.obj `if test -f 'lush/lush-backtrace.c'; then $(CYGPATH_W) 'lush/lush-backtrace.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-backtrace.c'; fi` lush/libhpcrun_o-lush.o: lush/lush.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush.Tpo -c -o lush/libhpcrun_o-lush.o `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush.Tpo lush/$(DEPDIR)/libhpcrun_o-lush.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush.c' object='lush/libhpcrun_o-lush.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.o `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.o `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c lush/libhpcrun_o-lush.obj: lush/lush.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush.Tpo -c -o lush/libhpcrun_o-lush.obj `if test -f 'lush/lush.c'; then $(CYGPATH_W) 'lush/lush.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush.Tpo lush/$(DEPDIR)/libhpcrun_o-lush.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush.c' object='lush/libhpcrun_o-lush.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.obj `if test -f 'lush/lush.c'; then $(CYGPATH_W) 'lush/lush.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.obj `if test -f 'lush/lush.c'; then $(CYGPATH_W) 'lush/lush.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush.c'; fi` lush/libhpcrun_o-lush-pthread.o: lush/lush-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-pthread.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo -c -o lush/libhpcrun_o-lush-pthread.o `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-pthread.c' object='lush/libhpcrun_o-lush-pthread.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.o `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.o `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c lush/libhpcrun_o-lush-pthread.obj: lush/lush-pthread.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-pthread.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo -c -o lush/libhpcrun_o-lush-pthread.obj `if test -f 'lush/lush-pthread.c'; then $(CYGPATH_W) 'lush/lush-pthread.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-pthread.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-pthread.c' object='lush/libhpcrun_o-lush-pthread.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.obj `if test -f 'lush/lush-pthread.c'; then $(CYGPATH_W) 'lush/lush-pthread.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-pthread.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.obj `if test -f 'lush/lush-pthread.c'; then $(CYGPATH_W) 'lush/lush-pthread.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-pthread.c'; fi` lush/libhpcrun_o-lush-support-rt.o: lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-support-rt.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo -c -o lush/libhpcrun_o-lush-support-rt.o `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libhpcrun_o-lush-support-rt.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.o `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.o `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush/libhpcrun_o-lush-support-rt.obj: lush/lush-support-rt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-support-rt.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo -c -o lush/libhpcrun_o-lush-support-rt.obj `if test -f 'lush/lush-support-rt.c'; then $(CYGPATH_W) 'lush/lush-support-rt.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-support-rt.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libhpcrun_o-lush-support-rt.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.obj `if test -f 'lush/lush-support-rt.c'; then $(CYGPATH_W) 'lush/lush-support-rt.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-support-rt.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.obj `if test -f 'lush/lush-support-rt.c'; then $(CYGPATH_W) 'lush/lush-support-rt.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-support-rt.c'; fi` lush/libhpcrun_o-lushi-cb.o: lush/lushi-cb.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lushi-cb.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo -c -o lush/libhpcrun_o-lushi-cb.o `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lushi-cb.c' object='lush/libhpcrun_o-lushi-cb.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.o `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.o `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c lush/libhpcrun_o-lushi-cb.obj: lush/lushi-cb.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lushi-cb.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo -c -o lush/libhpcrun_o-lushi-cb.obj `if test -f 'lush/lushi-cb.c'; then $(CYGPATH_W) 'lush/lushi-cb.c'; else $(CYGPATH_W) '$(srcdir)/lush/lushi-cb.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lushi-cb.c' object='lush/libhpcrun_o-lushi-cb.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.obj `if test -f 'lush/lushi-cb.c'; then $(CYGPATH_W) 'lush/lushi-cb.c'; else $(CYGPATH_W) '$(srcdir)/lush/lushi-cb.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.obj `if test -f 'lush/lushi-cb.c'; then $(CYGPATH_W) 'lush/lushi-cb.c'; else $(CYGPATH_W) '$(srcdir)/lush/lushi-cb.c'; fi` fnbounds/libhpcrun_o-fnbounds_common.o: fnbounds/fnbounds_common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_common.o -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_common.o `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_common.c' object='fnbounds/libhpcrun_o-fnbounds_common.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.o `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.o `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c fnbounds/libhpcrun_o-fnbounds_common.obj: fnbounds/fnbounds_common.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_common.obj -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_common.obj `if test -f 'fnbounds/fnbounds_common.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_common.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_common.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_common.c' object='fnbounds/libhpcrun_o-fnbounds_common.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.obj `if test -f 'fnbounds/fnbounds_common.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_common.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_common.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.obj `if test -f 'fnbounds/fnbounds_common.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_common.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_common.c'; fi` memory/libhpcrun_o-mem.o: memory/mem.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mem.o -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mem.Tpo -c -o memory/libhpcrun_o-mem.o `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mem.Tpo memory/$(DEPDIR)/libhpcrun_o-mem.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mem.c' object='memory/libhpcrun_o-mem.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.o `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.o `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c memory/libhpcrun_o-mem.obj: memory/mem.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mem.obj -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mem.Tpo -c -o memory/libhpcrun_o-mem.obj `if test -f 'memory/mem.c'; then $(CYGPATH_W) 'memory/mem.c'; else $(CYGPATH_W) '$(srcdir)/memory/mem.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mem.Tpo memory/$(DEPDIR)/libhpcrun_o-mem.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mem.c' object='memory/libhpcrun_o-mem.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.obj `if test -f 'memory/mem.c'; then $(CYGPATH_W) 'memory/mem.c'; else $(CYGPATH_W) '$(srcdir)/memory/mem.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.obj `if test -f 'memory/mem.c'; then $(CYGPATH_W) 'memory/mem.c'; else $(CYGPATH_W) '$(srcdir)/memory/mem.c'; fi` memory/libhpcrun_o-mmap.o: memory/mmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mmap.o -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo -c -o memory/libhpcrun_o-mmap.o `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo memory/$(DEPDIR)/libhpcrun_o-mmap.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mmap.c' object='memory/libhpcrun_o-mmap.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.o `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.o `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c memory/libhpcrun_o-mmap.obj: memory/mmap.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mmap.obj -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo -c -o memory/libhpcrun_o-mmap.obj `if test -f 'memory/mmap.c'; then $(CYGPATH_W) 'memory/mmap.c'; else $(CYGPATH_W) '$(srcdir)/memory/mmap.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo memory/$(DEPDIR)/libhpcrun_o-mmap.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mmap.c' object='memory/libhpcrun_o-mmap.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.obj `if test -f 'memory/mmap.c'; then $(CYGPATH_W) 'memory/mmap.c'; else $(CYGPATH_W) '$(srcdir)/memory/mmap.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.obj `if test -f 'memory/mmap.c'; then $(CYGPATH_W) 'memory/mmap.c'; else $(CYGPATH_W) '$(srcdir)/memory/mmap.c'; fi` messages/libhpcrun_o-debug-flag.o: messages/debug-flag.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-debug-flag.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo -c -o messages/libhpcrun_o-debug-flag.o `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo messages/$(DEPDIR)/libhpcrun_o-debug-flag.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/debug-flag.c' object='messages/libhpcrun_o-debug-flag.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.o `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.o `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c messages/libhpcrun_o-debug-flag.obj: messages/debug-flag.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-debug-flag.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo -c -o messages/libhpcrun_o-debug-flag.obj `if test -f 'messages/debug-flag.c'; then $(CYGPATH_W) 'messages/debug-flag.c'; else $(CYGPATH_W) '$(srcdir)/messages/debug-flag.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo messages/$(DEPDIR)/libhpcrun_o-debug-flag.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/debug-flag.c' object='messages/libhpcrun_o-debug-flag.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.obj `if test -f 'messages/debug-flag.c'; then $(CYGPATH_W) 'messages/debug-flag.c'; else $(CYGPATH_W) '$(srcdir)/messages/debug-flag.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.obj `if test -f 'messages/debug-flag.c'; then $(CYGPATH_W) 'messages/debug-flag.c'; else $(CYGPATH_W) '$(srcdir)/messages/debug-flag.c'; fi` messages/libhpcrun_o-messages-sync.o: messages/messages-sync.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-sync.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo -c -o messages/libhpcrun_o-messages-sync.o `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-sync.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-sync.c' object='messages/libhpcrun_o-messages-sync.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.o `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.o `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c messages/libhpcrun_o-messages-sync.obj: messages/messages-sync.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-sync.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo -c -o messages/libhpcrun_o-messages-sync.obj `if test -f 'messages/messages-sync.c'; then $(CYGPATH_W) 'messages/messages-sync.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-sync.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-sync.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-sync.c' object='messages/libhpcrun_o-messages-sync.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.obj `if test -f 'messages/messages-sync.c'; then $(CYGPATH_W) 'messages/messages-sync.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-sync.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.obj `if test -f 'messages/messages-sync.c'; then $(CYGPATH_W) 'messages/messages-sync.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-sync.c'; fi` messages/libhpcrun_o-messages-async.o: messages/messages-async.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-async.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo -c -o messages/libhpcrun_o-messages-async.o `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-async.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-async.c' object='messages/libhpcrun_o-messages-async.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.o `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.o `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c messages/libhpcrun_o-messages-async.obj: messages/messages-async.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-async.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo -c -o messages/libhpcrun_o-messages-async.obj `if test -f 'messages/messages-async.c'; then $(CYGPATH_W) 'messages/messages-async.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-async.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-async.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-async.c' object='messages/libhpcrun_o-messages-async.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.obj `if test -f 'messages/messages-async.c'; then $(CYGPATH_W) 'messages/messages-async.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-async.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.obj `if test -f 'messages/messages-async.c'; then $(CYGPATH_W) 'messages/messages-async.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-async.c'; fi` messages/libhpcrun_o-fmt.o: messages/fmt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-fmt.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo -c -o messages/libhpcrun_o-fmt.o `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo messages/$(DEPDIR)/libhpcrun_o-fmt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/fmt.c' object='messages/libhpcrun_o-fmt.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.o `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.o `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c messages/libhpcrun_o-fmt.obj: messages/fmt.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-fmt.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo -c -o messages/libhpcrun_o-fmt.obj `if test -f 'messages/fmt.c'; then $(CYGPATH_W) 'messages/fmt.c'; else $(CYGPATH_W) '$(srcdir)/messages/fmt.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo messages/$(DEPDIR)/libhpcrun_o-fmt.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/fmt.c' object='messages/libhpcrun_o-fmt.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.obj `if test -f 'messages/fmt.c'; then $(CYGPATH_W) 'messages/fmt.c'; else $(CYGPATH_W) '$(srcdir)/messages/fmt.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.obj `if test -f 'messages/fmt.c'; then $(CYGPATH_W) 'messages/fmt.c'; else $(CYGPATH_W) '$(srcdir)/messages/fmt.c'; fi` utilities/libhpcrun_o-executable-path.o: utilities/executable-path.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-executable-path.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo -c -o utilities/libhpcrun_o-executable-path.o `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo utilities/$(DEPDIR)/libhpcrun_o-executable-path.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/executable-path.c' object='utilities/libhpcrun_o-executable-path.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.o `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.o `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c utilities/libhpcrun_o-executable-path.obj: utilities/executable-path.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-executable-path.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo -c -o utilities/libhpcrun_o-executable-path.obj `if test -f 'utilities/executable-path.c'; then $(CYGPATH_W) 'utilities/executable-path.c'; else $(CYGPATH_W) '$(srcdir)/utilities/executable-path.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo utilities/$(DEPDIR)/libhpcrun_o-executable-path.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/executable-path.c' object='utilities/libhpcrun_o-executable-path.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.obj `if test -f 'utilities/executable-path.c'; then $(CYGPATH_W) 'utilities/executable-path.c'; else $(CYGPATH_W) '$(srcdir)/utilities/executable-path.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.obj `if test -f 'utilities/executable-path.c'; then $(CYGPATH_W) 'utilities/executable-path.c'; else $(CYGPATH_W) '$(srcdir)/utilities/executable-path.c'; fi` utilities/libhpcrun_o-ip-normalized.o: utilities/ip-normalized.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-ip-normalized.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo -c -o utilities/libhpcrun_o-ip-normalized.o `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/ip-normalized.c' object='utilities/libhpcrun_o-ip-normalized.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.o `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.o `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c utilities/libhpcrun_o-ip-normalized.obj: utilities/ip-normalized.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-ip-normalized.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo -c -o utilities/libhpcrun_o-ip-normalized.obj `if test -f 'utilities/ip-normalized.c'; then $(CYGPATH_W) 'utilities/ip-normalized.c'; else $(CYGPATH_W) '$(srcdir)/utilities/ip-normalized.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/ip-normalized.c' object='utilities/libhpcrun_o-ip-normalized.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.obj `if test -f 'utilities/ip-normalized.c'; then $(CYGPATH_W) 'utilities/ip-normalized.c'; else $(CYGPATH_W) '$(srcdir)/utilities/ip-normalized.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.obj `if test -f 'utilities/ip-normalized.c'; then $(CYGPATH_W) 'utilities/ip-normalized.c'; else $(CYGPATH_W) '$(srcdir)/utilities/ip-normalized.c'; fi` utilities/libhpcrun_o-tokenize.o: utilities/tokenize.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-tokenize.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo -c -o utilities/libhpcrun_o-tokenize.o `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo utilities/$(DEPDIR)/libhpcrun_o-tokenize.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/tokenize.c' object='utilities/libhpcrun_o-tokenize.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.o `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.o `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c utilities/libhpcrun_o-tokenize.obj: utilities/tokenize.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-tokenize.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo -c -o utilities/libhpcrun_o-tokenize.obj `if test -f 'utilities/tokenize.c'; then $(CYGPATH_W) 'utilities/tokenize.c'; else $(CYGPATH_W) '$(srcdir)/utilities/tokenize.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo utilities/$(DEPDIR)/libhpcrun_o-tokenize.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/tokenize.c' object='utilities/libhpcrun_o-tokenize.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.obj `if test -f 'utilities/tokenize.c'; then $(CYGPATH_W) 'utilities/tokenize.c'; else $(CYGPATH_W) '$(srcdir)/utilities/tokenize.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.obj `if test -f 'utilities/tokenize.c'; then $(CYGPATH_W) 'utilities/tokenize.c'; else $(CYGPATH_W) '$(srcdir)/utilities/tokenize.c'; fi` utilities/libhpcrun_o-unlink.o: utilities/unlink.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-unlink.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo -c -o utilities/libhpcrun_o-unlink.o `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo utilities/$(DEPDIR)/libhpcrun_o-unlink.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/unlink.c' object='utilities/libhpcrun_o-unlink.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.o `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.o `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c utilities/libhpcrun_o-unlink.obj: utilities/unlink.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-unlink.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo -c -o utilities/libhpcrun_o-unlink.obj `if test -f 'utilities/unlink.c'; then $(CYGPATH_W) 'utilities/unlink.c'; else $(CYGPATH_W) '$(srcdir)/utilities/unlink.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo utilities/$(DEPDIR)/libhpcrun_o-unlink.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/unlink.c' object='utilities/libhpcrun_o-unlink.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.obj `if test -f 'utilities/unlink.c'; then $(CYGPATH_W) 'utilities/unlink.c'; else $(CYGPATH_W) '$(srcdir)/utilities/unlink.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.obj `if test -f 'utilities/unlink.c'; then $(CYGPATH_W) 'utilities/unlink.c'; else $(CYGPATH_W) '$(srcdir)/utilities/unlink.c'; fi` fnbounds/libhpcrun_o-fnbounds_static.o: fnbounds/fnbounds_static.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_static.o -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_static.o `test -f 'fnbounds/fnbounds_static.c' || echo '$(srcdir)/'`fnbounds/fnbounds_static.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_static.c' object='fnbounds/libhpcrun_o-fnbounds_static.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.o `test -f 'fnbounds/fnbounds_static.c' || echo '$(srcdir)/'`fnbounds/fnbounds_static.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.o `test -f 'fnbounds/fnbounds_static.c' || echo '$(srcdir)/'`fnbounds/fnbounds_static.c fnbounds/libhpcrun_o-fnbounds_static.obj: fnbounds/fnbounds_static.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_static.obj -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_static.obj `if test -f 'fnbounds/fnbounds_static.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_static.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_static.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_static.c' object='fnbounds/libhpcrun_o-fnbounds_static.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.obj `if test -f 'fnbounds/fnbounds_static.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_static.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_static.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.obj `if test -f 'fnbounds/fnbounds_static.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_static.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_static.c'; fi` libhpcrun_o-custom-init-static.o: custom-init-static.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-custom-init-static.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo -c -o libhpcrun_o-custom-init-static.o `test -f 'custom-init-static.c' || echo '$(srcdir)/'`custom-init-static.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo $(DEPDIR)/libhpcrun_o-custom-init-static.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='custom-init-static.c' object='libhpcrun_o-custom-init-static.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.o `test -f 'custom-init-static.c' || echo '$(srcdir)/'`custom-init-static.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.o `test -f 'custom-init-static.c' || echo '$(srcdir)/'`custom-init-static.c libhpcrun_o-custom-init-static.obj: custom-init-static.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-custom-init-static.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo -c -o libhpcrun_o-custom-init-static.obj `if test -f 'custom-init-static.c'; then $(CYGPATH_W) 'custom-init-static.c'; else $(CYGPATH_W) '$(srcdir)/custom-init-static.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo $(DEPDIR)/libhpcrun_o-custom-init-static.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='custom-init-static.c' object='libhpcrun_o-custom-init-static.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.obj `if test -f 'custom-init-static.c'; then $(CYGPATH_W) 'custom-init-static.c'; else $(CYGPATH_W) '$(srcdir)/custom-init-static.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.obj `if test -f 'custom-init-static.c'; then $(CYGPATH_W) 'custom-init-static.c'; else $(CYGPATH_W) '$(srcdir)/custom-init-static.c'; fi` unwind/common/libhpcrun_o-default_validation_summary.o: unwind/common/default_validation_summary.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-default_validation_summary.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo -c -o unwind/common/libhpcrun_o-default_validation_summary.o `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/default_validation_summary.c' object='unwind/common/libhpcrun_o-default_validation_summary.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.o `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.o `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c unwind/common/libhpcrun_o-default_validation_summary.obj: unwind/common/default_validation_summary.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-default_validation_summary.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo -c -o unwind/common/libhpcrun_o-default_validation_summary.obj `if test -f 'unwind/common/default_validation_summary.c'; then $(CYGPATH_W) 'unwind/common/default_validation_summary.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/default_validation_summary.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/default_validation_summary.c' object='unwind/common/libhpcrun_o-default_validation_summary.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.obj `if test -f 'unwind/common/default_validation_summary.c'; then $(CYGPATH_W) 'unwind/common/default_validation_summary.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/default_validation_summary.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.obj `if test -f 'unwind/common/default_validation_summary.c'; then $(CYGPATH_W) 'unwind/common/default_validation_summary.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/default_validation_summary.c'; fi` utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o: utilities/arch/ppc64/ppc64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o -MD -MP -MF utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ppc64/ppc64-context-pc.c' object='utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj: utilities/arch/ppc64/ppc64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj -MD -MP -MF utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj `if test -f 'utilities/arch/ppc64/ppc64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ppc64/ppc64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ppc64/ppc64-context-pc.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ppc64/ppc64-context-pc.c' object='utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj `if test -f 'utilities/arch/ppc64/ppc64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ppc64/ppc64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ppc64/ppc64-context-pc.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj `if test -f 'utilities/arch/ppc64/ppc64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ppc64/ppc64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ppc64/ppc64-context-pc.c'; fi` utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o: utilities/arch/x86-family/x86-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o -MD -MP -MF utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/x86-family/x86-context-pc.c' object='utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj: utilities/arch/x86-family/x86-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj -MD -MP -MF utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj `if test -f 'utilities/arch/x86-family/x86-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/x86-family/x86-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/x86-family/x86-context-pc.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/x86-family/x86-context-pc.c' object='utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj `if test -f 'utilities/arch/x86-family/x86-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/x86-family/x86-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/x86-family/x86-context-pc.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj `if test -f 'utilities/arch/x86-family/x86-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/x86-family/x86-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/x86-family/x86-context-pc.c'; fi` utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o: utilities/arch/ia64/ia64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o -MD -MP -MF utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ia64/ia64-context-pc.c' object='utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj: utilities/arch/ia64/ia64-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj -MD -MP -MF utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj `if test -f 'utilities/arch/ia64/ia64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ia64/ia64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ia64/ia64-context-pc.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ia64/ia64-context-pc.c' object='utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj `if test -f 'utilities/arch/ia64/ia64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ia64/ia64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ia64/ia64-context-pc.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj `if test -f 'utilities/arch/ia64/ia64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ia64/ia64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ia64/ia64-context-pc.c'; fi` trampoline/aarch64/libhpcrun_o-aarch64-tramp.o: trampoline/aarch64/aarch64-tramp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/aarch64/libhpcrun_o-aarch64-tramp.o -MD -MP -MF trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.o `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/aarch64/aarch64-tramp.c' object='trampoline/aarch64/libhpcrun_o-aarch64-tramp.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.o `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.o `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj: trampoline/aarch64/aarch64-tramp.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj -MD -MP -MF trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj `if test -f 'trampoline/aarch64/aarch64-tramp.c'; then $(CYGPATH_W) 'trampoline/aarch64/aarch64-tramp.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/aarch64/aarch64-tramp.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/aarch64/aarch64-tramp.c' object='trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj `if test -f 'trampoline/aarch64/aarch64-tramp.c'; then $(CYGPATH_W) 'trampoline/aarch64/aarch64-tramp.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/aarch64/aarch64-tramp.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj `if test -f 'trampoline/aarch64/aarch64-tramp.c'; then $(CYGPATH_W) 'trampoline/aarch64/aarch64-tramp.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/aarch64/aarch64-tramp.c'; fi` utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o: utilities/arch/libunwind/libunwind-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o -MD -MP -MF utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/libunwind/libunwind-context-pc.c' object='utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj: utilities/arch/libunwind/libunwind-context-pc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj -MD -MP -MF utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj `if test -f 'utilities/arch/libunwind/libunwind-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/libunwind/libunwind-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/libunwind/libunwind-context-pc.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/libunwind/libunwind-context-pc.c' object='utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj `if test -f 'utilities/arch/libunwind/libunwind-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/libunwind/libunwind-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/libunwind/libunwind-context-pc.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj `if test -f 'utilities/arch/libunwind/libunwind-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/libunwind/libunwind-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/libunwind/libunwind-context-pc.c'; fi` sample-sources/libhpcrun_o-papi.o: sample-sources/papi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo -c -o sample-sources/libhpcrun_o-papi.o `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi.c' object='sample-sources/libhpcrun_o-papi.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.o `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.o `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c sample-sources/libhpcrun_o-papi.obj: sample-sources/papi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo -c -o sample-sources/libhpcrun_o-papi.obj `if test -f 'sample-sources/papi.c'; then $(CYGPATH_W) 'sample-sources/papi.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi.c' object='sample-sources/libhpcrun_o-papi.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.obj `if test -f 'sample-sources/papi.c'; then $(CYGPATH_W) 'sample-sources/papi.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.obj `if test -f 'sample-sources/papi.c'; then $(CYGPATH_W) 'sample-sources/papi.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi.c'; fi` sample-sources/libhpcrun_o-papi-c-cupti.o: sample-sources/papi-c-cupti.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-cupti.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo -c -o sample-sources/libhpcrun_o-papi-c-cupti.o `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-cupti.c' object='sample-sources/libhpcrun_o-papi-c-cupti.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.o `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.o `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c sample-sources/libhpcrun_o-papi-c-cupti.obj: sample-sources/papi-c-cupti.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-cupti.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo -c -o sample-sources/libhpcrun_o-papi-c-cupti.obj `if test -f 'sample-sources/papi-c-cupti.c'; then $(CYGPATH_W) 'sample-sources/papi-c-cupti.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-cupti.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-cupti.c' object='sample-sources/libhpcrun_o-papi-c-cupti.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.obj `if test -f 'sample-sources/papi-c-cupti.c'; then $(CYGPATH_W) 'sample-sources/papi-c-cupti.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-cupti.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.obj `if test -f 'sample-sources/papi-c-cupti.c'; then $(CYGPATH_W) 'sample-sources/papi-c-cupti.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-cupti.c'; fi` sample-sources/libhpcrun_o-papi-c.o: sample-sources/papi-c.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo -c -o sample-sources/libhpcrun_o-papi-c.o `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c.c' object='sample-sources/libhpcrun_o-papi-c.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.o `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.o `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c sample-sources/libhpcrun_o-papi-c.obj: sample-sources/papi-c.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo -c -o sample-sources/libhpcrun_o-papi-c.obj `if test -f 'sample-sources/papi-c.c'; then $(CYGPATH_W) 'sample-sources/papi-c.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c.c' object='sample-sources/libhpcrun_o-papi-c.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.obj `if test -f 'sample-sources/papi-c.c'; then $(CYGPATH_W) 'sample-sources/papi-c.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.obj `if test -f 'sample-sources/papi-c.c'; then $(CYGPATH_W) 'sample-sources/papi-c.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c.c'; fi` sample-sources/libhpcrun_o-papi-c-extended-info.o: sample-sources/papi-c-extended-info.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-extended-info.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo -c -o sample-sources/libhpcrun_o-papi-c-extended-info.o `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-extended-info.c' object='sample-sources/libhpcrun_o-papi-c-extended-info.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.o `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.o `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c sample-sources/libhpcrun_o-papi-c-extended-info.obj: sample-sources/papi-c-extended-info.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-extended-info.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo -c -o sample-sources/libhpcrun_o-papi-c-extended-info.obj `if test -f 'sample-sources/papi-c-extended-info.c'; then $(CYGPATH_W) 'sample-sources/papi-c-extended-info.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-extended-info.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-extended-info.c' object='sample-sources/libhpcrun_o-papi-c-extended-info.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.obj `if test -f 'sample-sources/papi-c-extended-info.c'; then $(CYGPATH_W) 'sample-sources/papi-c-extended-info.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-extended-info.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.obj `if test -f 'sample-sources/papi-c-extended-info.c'; then $(CYGPATH_W) 'sample-sources/papi-c-extended-info.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-extended-info.c'; fi` sample-sources/libhpcrun_o-upc.o: sample-sources/upc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-upc.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo -c -o sample-sources/libhpcrun_o-upc.o `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-upc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/upc.c' object='sample-sources/libhpcrun_o-upc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.o `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.o `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c sample-sources/libhpcrun_o-upc.obj: sample-sources/upc.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-upc.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo -c -o sample-sources/libhpcrun_o-upc.obj `if test -f 'sample-sources/upc.c'; then $(CYGPATH_W) 'sample-sources/upc.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/upc.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-upc.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/upc.c' object='sample-sources/libhpcrun_o-upc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.obj `if test -f 'sample-sources/upc.c'; then $(CYGPATH_W) 'sample-sources/upc.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/upc.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.obj `if test -f 'sample-sources/upc.c'; then $(CYGPATH_W) 'sample-sources/upc.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/upc.c'; fi` unwind/common/libhpcrun_o-backtrace.o: unwind/common/backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-backtrace.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo -c -o unwind/common/libhpcrun_o-backtrace.o `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/backtrace.c' object='unwind/common/libhpcrun_o-backtrace.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.o `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.o `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c unwind/common/libhpcrun_o-backtrace.obj: unwind/common/backtrace.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-backtrace.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo -c -o unwind/common/libhpcrun_o-backtrace.obj `if test -f 'unwind/common/backtrace.c'; then $(CYGPATH_W) 'unwind/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/backtrace.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/backtrace.c' object='unwind/common/libhpcrun_o-backtrace.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.obj `if test -f 'unwind/common/backtrace.c'; then $(CYGPATH_W) 'unwind/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/backtrace.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.obj `if test -f 'unwind/common/backtrace.c'; then $(CYGPATH_W) 'unwind/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/backtrace.c'; fi` unwind/common/libhpcrun_o-unw-throw.o: unwind/common/unw-throw.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-unw-throw.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo -c -o unwind/common/libhpcrun_o-unw-throw.o `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/unw-throw.c' object='unwind/common/libhpcrun_o-unw-throw.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.o `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.o `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c unwind/common/libhpcrun_o-unw-throw.obj: unwind/common/unw-throw.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-unw-throw.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo -c -o unwind/common/libhpcrun_o-unw-throw.obj `if test -f 'unwind/common/unw-throw.c'; then $(CYGPATH_W) 'unwind/common/unw-throw.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/unw-throw.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/unw-throw.c' object='unwind/common/libhpcrun_o-unw-throw.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.obj `if test -f 'unwind/common/unw-throw.c'; then $(CYGPATH_W) 'unwind/common/unw-throw.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/unw-throw.c'; fi` - -unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o: unwind/generic-libunwind/libunw-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o -MD -MP -MF unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/generic-libunwind/libunw-unwind.c' object='unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c - -unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj: unwind/generic-libunwind/libunw-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj -MD -MP -MF unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj `if test -f 'unwind/generic-libunwind/libunw-unwind.c'; then $(CYGPATH_W) 'unwind/generic-libunwind/libunw-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/generic-libunwind/libunw-unwind.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/generic-libunwind/libunw-unwind.c' object='unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj `if test -f 'unwind/generic-libunwind/libunw-unwind.c'; then $(CYGPATH_W) 'unwind/generic-libunwind/libunw-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/generic-libunwind/libunw-unwind.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.obj `if test -f 'unwind/common/unw-throw.c'; then $(CYGPATH_W) 'unwind/common/unw-throw.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/unw-throw.c'; fi` unwind/common/libhpcrun_o-binarytree_uwi.o: unwind/common/binarytree_uwi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-binarytree_uwi.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo -c -o unwind/common/libhpcrun_o-binarytree_uwi.o `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/binarytree_uwi.c' object='unwind/common/libhpcrun_o-binarytree_uwi.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.o `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.o `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c unwind/common/libhpcrun_o-binarytree_uwi.obj: unwind/common/binarytree_uwi.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-binarytree_uwi.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/binarytree_uwi.c' object='unwind/common/libhpcrun_o-binarytree_uwi.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` unwind/common/libhpcrun_o-interval_t.o: unwind/common/interval_t.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-interval_t.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/interval_t.c' object='unwind/common/libhpcrun_o-interval_t.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c unwind/common/libhpcrun_o-interval_t.obj: unwind/common/interval_t.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-interval_t.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo -c -o unwind/common/libhpcrun_o-interval_t.obj `if test -f 'unwind/common/interval_t.c'; then $(CYGPATH_W) 'unwind/common/interval_t.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/interval_t.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/interval_t.c' object='unwind/common/libhpcrun_o-interval_t.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.obj `if test -f 'unwind/common/interval_t.c'; then $(CYGPATH_W) 'unwind/common/interval_t.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/interval_t.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.obj `if test -f 'unwind/common/interval_t.c'; then $(CYGPATH_W) 'unwind/common/interval_t.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/interval_t.c'; fi` unwind/common/libhpcrun_o-stack_troll.o: unwind/common/stack_troll.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-stack_troll.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo -c -o unwind/common/libhpcrun_o-stack_troll.o `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/stack_troll.c' object='unwind/common/libhpcrun_o-stack_troll.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.o `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.o `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c unwind/common/libhpcrun_o-stack_troll.obj: unwind/common/stack_troll.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-stack_troll.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo -c -o unwind/common/libhpcrun_o-stack_troll.obj `if test -f 'unwind/common/stack_troll.c'; then $(CYGPATH_W) 'unwind/common/stack_troll.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/stack_troll.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/stack_troll.c' object='unwind/common/libhpcrun_o-stack_troll.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.obj `if test -f 'unwind/common/stack_troll.c'; then $(CYGPATH_W) 'unwind/common/stack_troll.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/stack_troll.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.obj `if test -f 'unwind/common/stack_troll.c'; then $(CYGPATH_W) 'unwind/common/stack_troll.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/stack_troll.c'; fi` unwind/common/libhpcrun_o-uw_recipe_map.o: unwind/common/uw_recipe_map.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-uw_recipe_map.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo -c -o unwind/common/libhpcrun_o-uw_recipe_map.o `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/uw_recipe_map.c' object='unwind/common/libhpcrun_o-uw_recipe_map.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.o `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.o `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c unwind/common/libhpcrun_o-uw_recipe_map.obj: unwind/common/uw_recipe_map.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-uw_recipe_map.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo -c -o unwind/common/libhpcrun_o-uw_recipe_map.obj `if test -f 'unwind/common/uw_recipe_map.c'; then $(CYGPATH_W) 'unwind/common/uw_recipe_map.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/uw_recipe_map.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/uw_recipe_map.c' object='unwind/common/libhpcrun_o-uw_recipe_map.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.obj `if test -f 'unwind/common/uw_recipe_map.c'; then $(CYGPATH_W) 'unwind/common/uw_recipe_map.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/uw_recipe_map.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.obj `if test -f 'unwind/common/uw_recipe_map.c'; then $(CYGPATH_W) 'unwind/common/uw_recipe_map.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/uw_recipe_map.c'; fi` + +unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o: unwind/generic-libunwind/libunw-unwind.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c + +unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj: unwind/generic-libunwind/libunw-unwind.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj `if test -f 'unwind/generic-libunwind/libunw-unwind.c'; then $(CYGPATH_W) 'unwind/generic-libunwind/libunw-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/generic-libunwind/libunw-unwind.c'; fi` unwind/ppc64/libhpcrun_o-ppc64-unwind.o: unwind/ppc64/ppc64-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind.o -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.o `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.o `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.o `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c unwind/ppc64/libhpcrun_o-ppc64-unwind.obj: unwind/ppc64/ppc64-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind.obj -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.obj `if test -f 'unwind/ppc64/ppc64-unwind.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.obj `if test -f 'unwind/ppc64/ppc64-unwind.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.obj `if test -f 'unwind/ppc64/ppc64-unwind.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind.c'; fi` unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o: unwind/ppc64/ppc64-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind-interval.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj: unwind/ppc64/ppc64-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj `if test -f 'unwind/ppc64/ppc64-unwind-interval.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind-interval.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind-interval.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj `if test -f 'unwind/ppc64/ppc64-unwind-interval.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind-interval.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj `if test -f 'unwind/ppc64/ppc64-unwind-interval.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind-interval.c'; fi` unwind/x86-family/libhpcrun_o-x86-all.o: unwind/x86-family/x86-all.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-all.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-all.o `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-all.c' object='unwind/x86-family/libhpcrun_o-x86-all.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.o `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.o `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c unwind/x86-family/libhpcrun_o-x86-all.obj: unwind/x86-family/x86-all.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-all.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-all.obj `if test -f 'unwind/x86-family/x86-all.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-all.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-all.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-all.c' object='unwind/x86-family/libhpcrun_o-x86-all.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.obj `if test -f 'unwind/x86-family/x86-all.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-all.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-all.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.obj `if test -f 'unwind/x86-family/x86-all.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-all.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-all.c'; fi` unwind/x86-family/libhpcrun_o-amd-xop.o: unwind/x86-family/amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-amd-xop.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo -c -o unwind/x86-family/libhpcrun_o-amd-xop.o `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/amd-xop.c' object='unwind/x86-family/libhpcrun_o-amd-xop.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.o `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.o `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c unwind/x86-family/libhpcrun_o-amd-xop.obj: unwind/x86-family/amd-xop.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-amd-xop.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo -c -o unwind/x86-family/libhpcrun_o-amd-xop.obj `if test -f 'unwind/x86-family/amd-xop.c'; then $(CYGPATH_W) 'unwind/x86-family/amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/amd-xop.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/amd-xop.c' object='unwind/x86-family/libhpcrun_o-amd-xop.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.obj `if test -f 'unwind/x86-family/amd-xop.c'; then $(CYGPATH_W) 'unwind/x86-family/amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/amd-xop.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.obj `if test -f 'unwind/x86-family/amd-xop.c'; then $(CYGPATH_W) 'unwind/x86-family/amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/amd-xop.c'; fi` unwind/x86-family/libhpcrun_o-x86-cold-path.o: unwind/x86-family/x86-cold-path.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-cold-path.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.o `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-cold-path.c' object='unwind/x86-family/libhpcrun_o-x86-cold-path.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.o `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.o `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c unwind/x86-family/libhpcrun_o-x86-cold-path.obj: unwind/x86-family/x86-cold-path.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-cold-path.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.obj `if test -f 'unwind/x86-family/x86-cold-path.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-cold-path.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-cold-path.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-cold-path.c' object='unwind/x86-family/libhpcrun_o-x86-cold-path.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.obj `if test -f 'unwind/x86-family/x86-cold-path.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-cold-path.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-cold-path.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.obj `if test -f 'unwind/x86-family/x86-cold-path.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-cold-path.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-cold-path.c'; fi` unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o: unwind/x86-family/x86-validate-retn-addr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-validate-retn-addr.c' object='unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj: unwind/x86-family/x86-validate-retn-addr.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj `if test -f 'unwind/x86-family/x86-validate-retn-addr.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-validate-retn-addr.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-validate-retn-addr.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-validate-retn-addr.c' object='unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj `if test -f 'unwind/x86-family/x86-validate-retn-addr.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-validate-retn-addr.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-validate-retn-addr.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj `if test -f 'unwind/x86-family/x86-validate-retn-addr.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-validate-retn-addr.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-validate-retn-addr.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind-interval.o: unwind/x86-family/x86-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.o `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.o `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.o `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj: unwind/x86-family/x86-unwind-interval.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj `if test -f 'unwind/x86-family/x86-unwind-interval.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj `if test -f 'unwind/x86-family/x86-unwind-interval.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj `if test -f 'unwind/x86-family/x86-unwind-interval.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o: unwind/x86-family/x86-unwind-interval-fixup.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval-fixup.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj: unwind/x86-family/x86-unwind-interval-fixup.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj `if test -f 'unwind/x86-family/x86-unwind-interval-fixup.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval-fixup.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval-fixup.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval-fixup.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj `if test -f 'unwind/x86-family/x86-unwind-interval-fixup.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval-fixup.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval-fixup.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj `if test -f 'unwind/x86-family/x86-unwind-interval-fixup.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval-fixup.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval-fixup.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind.o: unwind/x86-family/x86-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind.o `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind.c' object='unwind/x86-family/libhpcrun_o-x86-unwind.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.o `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.o `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c unwind/x86-family/libhpcrun_o-x86-unwind.obj: unwind/x86-family/x86-unwind.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind.obj `if test -f 'unwind/x86-family/x86-unwind.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind.c' object='unwind/x86-family/libhpcrun_o-x86-unwind.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.obj `if test -f 'unwind/x86-family/x86-unwind.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.obj `if test -f 'unwind/x86-family/x86-unwind.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind-support.o: unwind/x86-family/x86-unwind-support.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-support.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.o `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-support.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-support.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.o `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.o `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c unwind/x86-family/libhpcrun_o-x86-unwind-support.obj: unwind/x86-family/x86-unwind-support.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-support.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.obj `if test -f 'unwind/x86-family/x86-unwind-support.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-support.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-support.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-support.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-support.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.obj `if test -f 'unwind/x86-family/x86-unwind-support.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-support.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-support.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.obj `if test -f 'unwind/x86-family/x86-unwind-support.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-support.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-support.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o: unwind/x86-family/manual-intervals/x86-gcc-main64.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-gcc-main64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj: unwind/x86-family/manual-intervals/x86-gcc-main64.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-gcc-main64.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-gcc-main64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-gcc-main64.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-gcc-main64.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o: unwind/x86-family/manual-intervals/x86-linux-dlresolver.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj: unwind/x86-family/manual-intervals/x86-linux-dlresolver.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj `if test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj `if test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj `if test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o: unwind/x86-family/manual-intervals/x86-intel11-f90main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel11-f90main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj: unwind/x86-family/manual-intervals/x86-intel11-f90main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel11-f90main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o: unwind/x86-family/manual-intervals/x86-intel-align32.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align32.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj: unwind/x86-family/manual-intervals/x86-intel-align32.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align32.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align32.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align32.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align32.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o: unwind/x86-family/manual-intervals/x86-intel-align64.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj: unwind/x86-family/manual-intervals/x86-intel-align64.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align64.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align64.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align64.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o: unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj: unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o: unwind/x86-family/manual-intervals/x86-32bit-main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj: unwind/x86-family/manual-intervals/x86-32bit-main.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-main.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-main.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-main.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o: unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj: unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o: unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj: unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj `if test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj `if test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj `if test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; fi` utilities/libhpcrun_o-last_func.o: utilities/last_func.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-last_func.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo -c -o utilities/libhpcrun_o-last_func.o `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-last_func.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/last_func.c' object='utilities/libhpcrun_o-last_func.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.o `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.o `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c utilities/libhpcrun_o-last_func.obj: utilities/last_func.c -@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-last_func.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo -c -o utilities/libhpcrun_o-last_func.obj `if test -f 'utilities/last_func.c'; then $(CYGPATH_W) 'utilities/last_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/last_func.c'; fi` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-last_func.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/last_func.c' object='utilities/libhpcrun_o-last_func.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.obj `if test -f 'utilities/last_func.c'; then $(CYGPATH_W) 'utilities/last_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/last_func.c'; fi` + $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.obj `if test -f 'utilities/last_func.c'; then $(CYGPATH_W) 'utilities/last_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/last_func.c'; fi` .s.o: $(AM_V_CCAS)$(CCASCOMPILE) -c -o $@ $< @@ -5765,59 +3859,32 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f ./$(am__dirstamp) - -rm -f cct/$(DEPDIR)/$(am__dirstamp) -rm -f cct/$(am__dirstamp) - -rm -f fnbounds/$(DEPDIR)/$(am__dirstamp) -rm -f fnbounds/$(am__dirstamp) - -rm -f lush-agents/$(DEPDIR)/$(am__dirstamp) -rm -f lush-agents/$(am__dirstamp) - -rm -f lush/$(DEPDIR)/$(am__dirstamp) -rm -f lush/$(am__dirstamp) - -rm -f memory/$(DEPDIR)/$(am__dirstamp) -rm -f memory/$(am__dirstamp) - -rm -f messages/$(DEPDIR)/$(am__dirstamp) -rm -f messages/$(am__dirstamp) - -rm -f monitor-exts/$(DEPDIR)/$(am__dirstamp) -rm -f monitor-exts/$(am__dirstamp) - -rm -f os/linux/$(DEPDIR)/$(am__dirstamp) -rm -f os/linux/$(am__dirstamp) - -rm -f plugins/$(DEPDIR)/$(am__dirstamp) -rm -f plugins/$(am__dirstamp) - -rm -f sample-sources/$(DEPDIR)/$(am__dirstamp) -rm -f sample-sources/$(am__dirstamp) - -rm -f sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) -rm -f sample-sources/blame-shift/$(am__dirstamp) - -rm -f trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/aarch64/$(am__dirstamp) - -rm -f trampoline/common/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/common/$(am__dirstamp) - -rm -f trampoline/ia64/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/ia64/$(am__dirstamp) - -rm -f trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/ppc64/$(am__dirstamp) - -rm -f trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/x86-family/$(am__dirstamp) - -rm -f unwind/common/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/common/$(am__dirstamp) - -rm -f unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/generic-libunwind/$(am__dirstamp) - -rm -f unwind/ppc64/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/ppc64/$(am__dirstamp) - -rm -f unwind/x86-family/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/x86-family/$(am__dirstamp) - -rm -f unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/x86-family/manual-intervals/$(am__dirstamp) - -rm -f utilities/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/$(am__dirstamp) - -rm -f utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/ia64/$(am__dirstamp) - -rm -f utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/libunwind/$(am__dirstamp) - -rm -f utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/ppc64/$(am__dirstamp) - -rm -f utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/x86-family/$(am__dirstamp) - -test -z "$(DEPDIR)/$(am__dirstamp)" || rm -f $(DEPDIR)/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -5831,7 +3898,6 @@ clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ clean-pkglibexecPROGRAMS mostlyclean-am distclean: distclean-recursive - -rm -rf ./$(DEPDIR) cct/$(DEPDIR) fnbounds/$(DEPDIR) lush-agents/$(DEPDIR) lush/$(DEPDIR) memory/$(DEPDIR) messages/$(DEPDIR) monitor-exts/$(DEPDIR) os/linux/$(DEPDIR) plugins/$(DEPDIR) sample-sources/$(DEPDIR) sample-sources/blame-shift/$(DEPDIR) trampoline/aarch64/$(DEPDIR) trampoline/common/$(DEPDIR) trampoline/x86-family/$(DEPDIR) unwind/common/$(DEPDIR) unwind/generic-libunwind/$(DEPDIR) unwind/ppc64/$(DEPDIR) unwind/x86-family/$(DEPDIR) unwind/x86-family/manual-intervals/$(DEPDIR) utilities/$(DEPDIR) utilities/arch/ia64/$(DEPDIR) utilities/arch/libunwind/$(DEPDIR) utilities/arch/ppc64/$(DEPDIR) utilities/arch/x86-family/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -5881,7 +3947,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive - -rm -rf ./$(DEPDIR) cct/$(DEPDIR) fnbounds/$(DEPDIR) lush-agents/$(DEPDIR) lush/$(DEPDIR) memory/$(DEPDIR) messages/$(DEPDIR) monitor-exts/$(DEPDIR) os/linux/$(DEPDIR) plugins/$(DEPDIR) sample-sources/$(DEPDIR) sample-sources/blame-shift/$(DEPDIR) trampoline/aarch64/$(DEPDIR) trampoline/common/$(DEPDIR) trampoline/x86-family/$(DEPDIR) unwind/common/$(DEPDIR) unwind/generic-libunwind/$(DEPDIR) unwind/ppc64/$(DEPDIR) unwind/x86-family/$(DEPDIR) unwind/x86-family/manual-intervals/$(DEPDIR) utilities/$(DEPDIR) utilities/arch/ia64/$(DEPDIR) utilities/arch/libunwind/$(DEPDIR) utilities/arch/ppc64/$(DEPDIR) utilities/arch/x86-family/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index b405ac3079..3ae51ac120 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -96,8 +96,11 @@ #include #include +#include #include #include +#include +#include #include //************************************************ @@ -128,6 +131,7 @@ compute_normalized_ips(hpcrun_unw_cursor_t* cursor) void hpcrun_unw_init(void) { + uw_recipe_map_init(); hpcrun_set_real_siglongjmp(); } @@ -178,27 +182,27 @@ hpcrun_unw_get_ra_loc(hpcrun_unw_cursor_t* c) // except for pc_norm and pc_unnorm. // void -hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* h_cursor, void* context) +hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* cursor, void* context) { - unw_cursor_t *cursor = &(h_cursor->uc); + unw_cursor_t *unw_cursor = &(cursor->uc); unw_context_t *ctx = (unw_context_t *) context; unw_word_t pc; - if (ctx != NULL && unw_init_local_signal(cursor, ctx) == 0) { - unw_get_reg(cursor, UNW_REG_IP, &pc); + if (ctx != NULL && unw_init_local_signal(unw_cursor, ctx) == 0) { + unw_get_reg(unw_cursor, UNW_REG_IP, &pc); } else { pc = 0; } - h_cursor->sp = NULL; - h_cursor->bp = NULL; - h_cursor->pc_unnorm = (void *) pc; - h_cursor->intvl = &(h_cursor->real_intvl); - h_cursor->real_intvl.lm = NULL; + cursor->sp = NULL; + cursor->bp = NULL; + cursor->pc_unnorm = (void *) pc; + cursor->intvl = &(cursor->real_intvl); + cursor->real_intvl.lm = NULL; - compute_normalized_ips(h_cursor); + compute_normalized_ips(cursor); - TMSG(UNW, "init cursor pc = %p\n", h_cursor->pc_unnorm); + TMSG(UNW, "init cursor pc = %p\n", cursor->pc_unnorm); } @@ -213,20 +217,20 @@ hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* h_cursor, void* context) // --------------------------------------------------------- step_state -hpcrun_unw_step(hpcrun_unw_cursor_t* h_cursor) +hpcrun_unw_step(hpcrun_unw_cursor_t* cursor) { // this should never be NULL - if (h_cursor == NULL) { + if (cursor == NULL) { TMSG(UNW, "unw_step: internal error: cursor ptr is NULL\n"); return STEP_ERROR; } // starting pc - unw_cursor_t *cursor = &(h_cursor->uc); + unw_cursor_t *unw_cursor = &(cursor->uc); unw_word_t tmp; void *pc; - unw_get_reg(cursor, UNW_REG_IP, &tmp); + unw_get_reg(unw_cursor, UNW_REG_IP, &tmp); pc = (void *) tmp; // full unwind: stop at libmonitor fence. this is where we hope the @@ -238,32 +242,88 @@ hpcrun_unw_step(hpcrun_unw_cursor_t* h_cursor) return STEP_STOP; } - int ret = unw_step(cursor); - - // step error, almost never happens with libunwind. - if (ret < 0) { - TMSG(UNW, "unw_step: error: unw_step failed at: %p\n", pc); - return STEP_ERROR; - } - - // we prefer to stop at monitor fence, but must also stop here. - if (ret == 0) { - TMSG(UNW, "unw_step: stop at unw_step: %p\n", pc); - return STEP_STOP; - } + //----------------------------------------------------------- + // compute unwind information for the caller's pc + //----------------------------------------------------------- + unwindr_info_t unwr_info; + bool found = uw_recipe_map_lookup(pc, &unwr_info); + if (!found) + { + TMSG(UNW, "unw_step: error: unw_step failed at: %p\n", pc); + return STEP_ERROR; + } + + bitree_uwi_t* uw = unwr_info.btuwi; + uwi_t *uwi = bitree_uwi_rootval(uw); + unw_apply_reg_state(unw_cursor, uwi->recipe); // update for new pc - unw_get_reg(cursor, UNW_REG_IP, &tmp); + unw_get_reg(unw_cursor, UNW_REG_IP, &tmp); pc = (void *) tmp; - h_cursor->sp = NULL; - h_cursor->bp = NULL; - h_cursor->pc_unnorm = pc; - h_cursor->intvl = &(h_cursor->real_intvl); - h_cursor->real_intvl.lm = NULL; + cursor->sp = NULL; + cursor->bp = NULL; + cursor->pc_unnorm = pc; + cursor->intvl = &(cursor->real_intvl); + cursor->real_intvl.lm = NULL; - compute_normalized_ips(h_cursor); + compute_normalized_ips(cursor); TMSG(UNW, "unw_step: advance pc: %p\n", pc); return STEP_OK; } + +//*************************************************************************** +// unwind_interval interface +//*************************************************************************** + +struct builder +{ + mem_alloc m_alloc; + bitree_uwi_t *root; +}; + +int dwarf_reg_states_callback(void *token, + void *rs, + size_t size, + unw_word_t start_ip, unw_word_t end_ip) +{ + struct builder *b = token; + bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, size); + bitree_uwi_set_leftsubtree(u, b->root); + uwi_t *uwi = bitree_uwi_rootval(u); + interval_t *interval = uwi->interval; + interval->start = (uintptr_t)start_ip; + interval->end = (uintptr_t)end_ip; + memcpy(uwi->recipe, rs, size); + b->root = u; + return 0; +} + + +static btuwi_status_t +libunw_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) +{ + unw_context_t uc; + unw_getcontext(&uc); + unw_cursor_t c; + unw_init_local_signal(&c, &uc); + unw_set_reg(&c, UNW_REG_IP, (intptr_t)beg_insn); + struct builder b = {m_alloc, NULL}; + unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); + + btuwi_status_t stat; + stat.first_undecoded_ins = NULL; + stat.errcode = 0; + stat.first = b.root; + + return stat; +} + +btuwi_status_t +build_intervals(char *ins, unsigned int len, mem_alloc m_alloc) +{ + btuwi_status_t stat = libunw_build_intervals(ins, len, m_alloc); + return stat; +} + diff --git a/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in b/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in index 13543db3de..f4bc5e9e70 100644 --- a/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in +++ b/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in @@ -127,9 +127,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -174,7 +173,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ @@ -422,9 +421,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/tool/hpcrun/utilities/bgq-cnk/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu --ignore-deps src/tool/hpcrun/utilities/bgq-cnk/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu src/tool/hpcrun/utilities/bgq-cnk/Makefile + $(AUTOMAKE) --gnu --ignore-deps src/tool/hpcrun/utilities/bgq-cnk/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -463,28 +462,14 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hardware-thread-id.Plo@am__quote@ - .c.o: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< + $(AM_V_CC)$(COMPILE) -c -o $@ $< .c.obj: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: -@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< + $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -614,7 +599,6 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -660,7 +644,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcserver/Makefile.in b/src/tool/hpcserver/Makefile.in index 4705fa811c..e0d432fede 100644 --- a/src/tool/hpcserver/Makefile.in +++ b/src/tool/hpcserver/Makefile.in @@ -177,9 +177,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -224,7 +223,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -555,9 +554,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcserver/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcserver/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -636,282 +635,116 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-BaseDataFile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-Communication-SingleThreaded.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DBOpener.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DataCompressionLayer.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DataOutputFileStream.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DataSocketStream.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-FilteredBaseData.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-LargeByteBuffer.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-MergeDataFiles.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-ProcessTimeline.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-ProgressBar.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-Server.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-SpaceTimeDataController.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-TraceDataByRank.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-VersatileMemoryPage.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcserver-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Args.o -MD -MP -MF $(DEPDIR)/hpcserver-Args.Tpo -c -o hpcserver-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Args.Tpo $(DEPDIR)/hpcserver-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcserver-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcserver-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Args.obj -MD -MP -MF $(DEPDIR)/hpcserver-Args.Tpo -c -o hpcserver-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Args.Tpo $(DEPDIR)/hpcserver-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcserver-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` hpcserver-BaseDataFile.o: BaseDataFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-BaseDataFile.o -MD -MP -MF $(DEPDIR)/hpcserver-BaseDataFile.Tpo -c -o hpcserver-BaseDataFile.o `test -f 'BaseDataFile.cpp' || echo '$(srcdir)/'`BaseDataFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-BaseDataFile.Tpo $(DEPDIR)/hpcserver-BaseDataFile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BaseDataFile.cpp' object='hpcserver-BaseDataFile.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.o `test -f 'BaseDataFile.cpp' || echo '$(srcdir)/'`BaseDataFile.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.o `test -f 'BaseDataFile.cpp' || echo '$(srcdir)/'`BaseDataFile.cpp hpcserver-BaseDataFile.obj: BaseDataFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-BaseDataFile.obj -MD -MP -MF $(DEPDIR)/hpcserver-BaseDataFile.Tpo -c -o hpcserver-BaseDataFile.obj `if test -f 'BaseDataFile.cpp'; then $(CYGPATH_W) 'BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/BaseDataFile.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-BaseDataFile.Tpo $(DEPDIR)/hpcserver-BaseDataFile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BaseDataFile.cpp' object='hpcserver-BaseDataFile.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.obj `if test -f 'BaseDataFile.cpp'; then $(CYGPATH_W) 'BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/BaseDataFile.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.obj `if test -f 'BaseDataFile.cpp'; then $(CYGPATH_W) 'BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/BaseDataFile.cpp'; fi` hpcserver-Communication-SingleThreaded.o: Communication-SingleThreaded.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Communication-SingleThreaded.o -MD -MP -MF $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo -c -o hpcserver-Communication-SingleThreaded.o `test -f 'Communication-SingleThreaded.cpp' || echo '$(srcdir)/'`Communication-SingleThreaded.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo $(DEPDIR)/hpcserver-Communication-SingleThreaded.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Communication-SingleThreaded.cpp' object='hpcserver-Communication-SingleThreaded.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.o `test -f 'Communication-SingleThreaded.cpp' || echo '$(srcdir)/'`Communication-SingleThreaded.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.o `test -f 'Communication-SingleThreaded.cpp' || echo '$(srcdir)/'`Communication-SingleThreaded.cpp hpcserver-Communication-SingleThreaded.obj: Communication-SingleThreaded.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Communication-SingleThreaded.obj -MD -MP -MF $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo -c -o hpcserver-Communication-SingleThreaded.obj `if test -f 'Communication-SingleThreaded.cpp'; then $(CYGPATH_W) 'Communication-SingleThreaded.cpp'; else $(CYGPATH_W) '$(srcdir)/Communication-SingleThreaded.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo $(DEPDIR)/hpcserver-Communication-SingleThreaded.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Communication-SingleThreaded.cpp' object='hpcserver-Communication-SingleThreaded.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.obj `if test -f 'Communication-SingleThreaded.cpp'; then $(CYGPATH_W) 'Communication-SingleThreaded.cpp'; else $(CYGPATH_W) '$(srcdir)/Communication-SingleThreaded.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.obj `if test -f 'Communication-SingleThreaded.cpp'; then $(CYGPATH_W) 'Communication-SingleThreaded.cpp'; else $(CYGPATH_W) '$(srcdir)/Communication-SingleThreaded.cpp'; fi` hpcserver-DataCompressionLayer.o: DataCompressionLayer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataCompressionLayer.o -MD -MP -MF $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo -c -o hpcserver-DataCompressionLayer.o `test -f 'DataCompressionLayer.cpp' || echo '$(srcdir)/'`DataCompressionLayer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo $(DEPDIR)/hpcserver-DataCompressionLayer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataCompressionLayer.cpp' object='hpcserver-DataCompressionLayer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.o `test -f 'DataCompressionLayer.cpp' || echo '$(srcdir)/'`DataCompressionLayer.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.o `test -f 'DataCompressionLayer.cpp' || echo '$(srcdir)/'`DataCompressionLayer.cpp hpcserver-DataCompressionLayer.obj: DataCompressionLayer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataCompressionLayer.obj -MD -MP -MF $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo -c -o hpcserver-DataCompressionLayer.obj `if test -f 'DataCompressionLayer.cpp'; then $(CYGPATH_W) 'DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/DataCompressionLayer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo $(DEPDIR)/hpcserver-DataCompressionLayer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataCompressionLayer.cpp' object='hpcserver-DataCompressionLayer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.obj `if test -f 'DataCompressionLayer.cpp'; then $(CYGPATH_W) 'DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/DataCompressionLayer.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.obj `if test -f 'DataCompressionLayer.cpp'; then $(CYGPATH_W) 'DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/DataCompressionLayer.cpp'; fi` hpcserver-DataOutputFileStream.o: DataOutputFileStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataOutputFileStream.o -MD -MP -MF $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo -c -o hpcserver-DataOutputFileStream.o `test -f 'DataOutputFileStream.cpp' || echo '$(srcdir)/'`DataOutputFileStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo $(DEPDIR)/hpcserver-DataOutputFileStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataOutputFileStream.cpp' object='hpcserver-DataOutputFileStream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.o `test -f 'DataOutputFileStream.cpp' || echo '$(srcdir)/'`DataOutputFileStream.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.o `test -f 'DataOutputFileStream.cpp' || echo '$(srcdir)/'`DataOutputFileStream.cpp hpcserver-DataOutputFileStream.obj: DataOutputFileStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataOutputFileStream.obj -MD -MP -MF $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo -c -o hpcserver-DataOutputFileStream.obj `if test -f 'DataOutputFileStream.cpp'; then $(CYGPATH_W) 'DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataOutputFileStream.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo $(DEPDIR)/hpcserver-DataOutputFileStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataOutputFileStream.cpp' object='hpcserver-DataOutputFileStream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.obj `if test -f 'DataOutputFileStream.cpp'; then $(CYGPATH_W) 'DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataOutputFileStream.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.obj `if test -f 'DataOutputFileStream.cpp'; then $(CYGPATH_W) 'DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataOutputFileStream.cpp'; fi` hpcserver-DataSocketStream.o: DataSocketStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataSocketStream.o -MD -MP -MF $(DEPDIR)/hpcserver-DataSocketStream.Tpo -c -o hpcserver-DataSocketStream.o `test -f 'DataSocketStream.cpp' || echo '$(srcdir)/'`DataSocketStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataSocketStream.Tpo $(DEPDIR)/hpcserver-DataSocketStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataSocketStream.cpp' object='hpcserver-DataSocketStream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.o `test -f 'DataSocketStream.cpp' || echo '$(srcdir)/'`DataSocketStream.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.o `test -f 'DataSocketStream.cpp' || echo '$(srcdir)/'`DataSocketStream.cpp hpcserver-DataSocketStream.obj: DataSocketStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataSocketStream.obj -MD -MP -MF $(DEPDIR)/hpcserver-DataSocketStream.Tpo -c -o hpcserver-DataSocketStream.obj `if test -f 'DataSocketStream.cpp'; then $(CYGPATH_W) 'DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataSocketStream.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataSocketStream.Tpo $(DEPDIR)/hpcserver-DataSocketStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataSocketStream.cpp' object='hpcserver-DataSocketStream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.obj `if test -f 'DataSocketStream.cpp'; then $(CYGPATH_W) 'DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataSocketStream.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.obj `if test -f 'DataSocketStream.cpp'; then $(CYGPATH_W) 'DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataSocketStream.cpp'; fi` hpcserver-DBOpener.o: DBOpener.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DBOpener.o -MD -MP -MF $(DEPDIR)/hpcserver-DBOpener.Tpo -c -o hpcserver-DBOpener.o `test -f 'DBOpener.cpp' || echo '$(srcdir)/'`DBOpener.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DBOpener.Tpo $(DEPDIR)/hpcserver-DBOpener.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBOpener.cpp' object='hpcserver-DBOpener.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.o `test -f 'DBOpener.cpp' || echo '$(srcdir)/'`DBOpener.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.o `test -f 'DBOpener.cpp' || echo '$(srcdir)/'`DBOpener.cpp hpcserver-DBOpener.obj: DBOpener.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DBOpener.obj -MD -MP -MF $(DEPDIR)/hpcserver-DBOpener.Tpo -c -o hpcserver-DBOpener.obj `if test -f 'DBOpener.cpp'; then $(CYGPATH_W) 'DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/DBOpener.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DBOpener.Tpo $(DEPDIR)/hpcserver-DBOpener.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBOpener.cpp' object='hpcserver-DBOpener.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.obj `if test -f 'DBOpener.cpp'; then $(CYGPATH_W) 'DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/DBOpener.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.obj `if test -f 'DBOpener.cpp'; then $(CYGPATH_W) 'DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/DBOpener.cpp'; fi` hpcserver-FilteredBaseData.o: FilteredBaseData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-FilteredBaseData.o -MD -MP -MF $(DEPDIR)/hpcserver-FilteredBaseData.Tpo -c -o hpcserver-FilteredBaseData.o `test -f 'FilteredBaseData.cpp' || echo '$(srcdir)/'`FilteredBaseData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-FilteredBaseData.Tpo $(DEPDIR)/hpcserver-FilteredBaseData.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FilteredBaseData.cpp' object='hpcserver-FilteredBaseData.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.o `test -f 'FilteredBaseData.cpp' || echo '$(srcdir)/'`FilteredBaseData.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.o `test -f 'FilteredBaseData.cpp' || echo '$(srcdir)/'`FilteredBaseData.cpp hpcserver-FilteredBaseData.obj: FilteredBaseData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-FilteredBaseData.obj -MD -MP -MF $(DEPDIR)/hpcserver-FilteredBaseData.Tpo -c -o hpcserver-FilteredBaseData.obj `if test -f 'FilteredBaseData.cpp'; then $(CYGPATH_W) 'FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/FilteredBaseData.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-FilteredBaseData.Tpo $(DEPDIR)/hpcserver-FilteredBaseData.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FilteredBaseData.cpp' object='hpcserver-FilteredBaseData.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.obj `if test -f 'FilteredBaseData.cpp'; then $(CYGPATH_W) 'FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/FilteredBaseData.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.obj `if test -f 'FilteredBaseData.cpp'; then $(CYGPATH_W) 'FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/FilteredBaseData.cpp'; fi` hpcserver-LargeByteBuffer.o: LargeByteBuffer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-LargeByteBuffer.o -MD -MP -MF $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo -c -o hpcserver-LargeByteBuffer.o `test -f 'LargeByteBuffer.cpp' || echo '$(srcdir)/'`LargeByteBuffer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo $(DEPDIR)/hpcserver-LargeByteBuffer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LargeByteBuffer.cpp' object='hpcserver-LargeByteBuffer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.o `test -f 'LargeByteBuffer.cpp' || echo '$(srcdir)/'`LargeByteBuffer.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.o `test -f 'LargeByteBuffer.cpp' || echo '$(srcdir)/'`LargeByteBuffer.cpp hpcserver-LargeByteBuffer.obj: LargeByteBuffer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-LargeByteBuffer.obj -MD -MP -MF $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo -c -o hpcserver-LargeByteBuffer.obj `if test -f 'LargeByteBuffer.cpp'; then $(CYGPATH_W) 'LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/LargeByteBuffer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo $(DEPDIR)/hpcserver-LargeByteBuffer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LargeByteBuffer.cpp' object='hpcserver-LargeByteBuffer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.obj `if test -f 'LargeByteBuffer.cpp'; then $(CYGPATH_W) 'LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/LargeByteBuffer.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.obj `if test -f 'LargeByteBuffer.cpp'; then $(CYGPATH_W) 'LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/LargeByteBuffer.cpp'; fi` hpcserver-MergeDataFiles.o: MergeDataFiles.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-MergeDataFiles.o -MD -MP -MF $(DEPDIR)/hpcserver-MergeDataFiles.Tpo -c -o hpcserver-MergeDataFiles.o `test -f 'MergeDataFiles.cpp' || echo '$(srcdir)/'`MergeDataFiles.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-MergeDataFiles.Tpo $(DEPDIR)/hpcserver-MergeDataFiles.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MergeDataFiles.cpp' object='hpcserver-MergeDataFiles.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.o `test -f 'MergeDataFiles.cpp' || echo '$(srcdir)/'`MergeDataFiles.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.o `test -f 'MergeDataFiles.cpp' || echo '$(srcdir)/'`MergeDataFiles.cpp hpcserver-MergeDataFiles.obj: MergeDataFiles.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-MergeDataFiles.obj -MD -MP -MF $(DEPDIR)/hpcserver-MergeDataFiles.Tpo -c -o hpcserver-MergeDataFiles.obj `if test -f 'MergeDataFiles.cpp'; then $(CYGPATH_W) 'MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/MergeDataFiles.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-MergeDataFiles.Tpo $(DEPDIR)/hpcserver-MergeDataFiles.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MergeDataFiles.cpp' object='hpcserver-MergeDataFiles.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.obj `if test -f 'MergeDataFiles.cpp'; then $(CYGPATH_W) 'MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/MergeDataFiles.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.obj `if test -f 'MergeDataFiles.cpp'; then $(CYGPATH_W) 'MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/MergeDataFiles.cpp'; fi` hpcserver-ProcessTimeline.o: ProcessTimeline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProcessTimeline.o -MD -MP -MF $(DEPDIR)/hpcserver-ProcessTimeline.Tpo -c -o hpcserver-ProcessTimeline.o `test -f 'ProcessTimeline.cpp' || echo '$(srcdir)/'`ProcessTimeline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProcessTimeline.Tpo $(DEPDIR)/hpcserver-ProcessTimeline.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProcessTimeline.cpp' object='hpcserver-ProcessTimeline.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.o `test -f 'ProcessTimeline.cpp' || echo '$(srcdir)/'`ProcessTimeline.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.o `test -f 'ProcessTimeline.cpp' || echo '$(srcdir)/'`ProcessTimeline.cpp hpcserver-ProcessTimeline.obj: ProcessTimeline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProcessTimeline.obj -MD -MP -MF $(DEPDIR)/hpcserver-ProcessTimeline.Tpo -c -o hpcserver-ProcessTimeline.obj `if test -f 'ProcessTimeline.cpp'; then $(CYGPATH_W) 'ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/ProcessTimeline.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProcessTimeline.Tpo $(DEPDIR)/hpcserver-ProcessTimeline.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProcessTimeline.cpp' object='hpcserver-ProcessTimeline.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.obj `if test -f 'ProcessTimeline.cpp'; then $(CYGPATH_W) 'ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/ProcessTimeline.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.obj `if test -f 'ProcessTimeline.cpp'; then $(CYGPATH_W) 'ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/ProcessTimeline.cpp'; fi` hpcserver-ProgressBar.o: ProgressBar.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProgressBar.o -MD -MP -MF $(DEPDIR)/hpcserver-ProgressBar.Tpo -c -o hpcserver-ProgressBar.o `test -f 'ProgressBar.cpp' || echo '$(srcdir)/'`ProgressBar.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProgressBar.Tpo $(DEPDIR)/hpcserver-ProgressBar.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProgressBar.cpp' object='hpcserver-ProgressBar.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.o `test -f 'ProgressBar.cpp' || echo '$(srcdir)/'`ProgressBar.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.o `test -f 'ProgressBar.cpp' || echo '$(srcdir)/'`ProgressBar.cpp hpcserver-ProgressBar.obj: ProgressBar.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProgressBar.obj -MD -MP -MF $(DEPDIR)/hpcserver-ProgressBar.Tpo -c -o hpcserver-ProgressBar.obj `if test -f 'ProgressBar.cpp'; then $(CYGPATH_W) 'ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/ProgressBar.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProgressBar.Tpo $(DEPDIR)/hpcserver-ProgressBar.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProgressBar.cpp' object='hpcserver-ProgressBar.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.obj `if test -f 'ProgressBar.cpp'; then $(CYGPATH_W) 'ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/ProgressBar.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.obj `if test -f 'ProgressBar.cpp'; then $(CYGPATH_W) 'ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/ProgressBar.cpp'; fi` hpcserver-Server.o: Server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Server.o -MD -MP -MF $(DEPDIR)/hpcserver-Server.Tpo -c -o hpcserver-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Server.Tpo $(DEPDIR)/hpcserver-Server.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Server.cpp' object='hpcserver-Server.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp hpcserver-Server.obj: Server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Server.obj -MD -MP -MF $(DEPDIR)/hpcserver-Server.Tpo -c -o hpcserver-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Server.Tpo $(DEPDIR)/hpcserver-Server.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Server.cpp' object='hpcserver-Server.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` hpcserver-SpaceTimeDataController.o: SpaceTimeDataController.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-SpaceTimeDataController.o -MD -MP -MF $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo -c -o hpcserver-SpaceTimeDataController.o `test -f 'SpaceTimeDataController.cpp' || echo '$(srcdir)/'`SpaceTimeDataController.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo $(DEPDIR)/hpcserver-SpaceTimeDataController.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SpaceTimeDataController.cpp' object='hpcserver-SpaceTimeDataController.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.o `test -f 'SpaceTimeDataController.cpp' || echo '$(srcdir)/'`SpaceTimeDataController.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.o `test -f 'SpaceTimeDataController.cpp' || echo '$(srcdir)/'`SpaceTimeDataController.cpp hpcserver-SpaceTimeDataController.obj: SpaceTimeDataController.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-SpaceTimeDataController.obj -MD -MP -MF $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo -c -o hpcserver-SpaceTimeDataController.obj `if test -f 'SpaceTimeDataController.cpp'; then $(CYGPATH_W) 'SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/SpaceTimeDataController.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo $(DEPDIR)/hpcserver-SpaceTimeDataController.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SpaceTimeDataController.cpp' object='hpcserver-SpaceTimeDataController.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.obj `if test -f 'SpaceTimeDataController.cpp'; then $(CYGPATH_W) 'SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/SpaceTimeDataController.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.obj `if test -f 'SpaceTimeDataController.cpp'; then $(CYGPATH_W) 'SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/SpaceTimeDataController.cpp'; fi` hpcserver-TraceDataByRank.o: TraceDataByRank.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-TraceDataByRank.o -MD -MP -MF $(DEPDIR)/hpcserver-TraceDataByRank.Tpo -c -o hpcserver-TraceDataByRank.o `test -f 'TraceDataByRank.cpp' || echo '$(srcdir)/'`TraceDataByRank.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-TraceDataByRank.Tpo $(DEPDIR)/hpcserver-TraceDataByRank.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TraceDataByRank.cpp' object='hpcserver-TraceDataByRank.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.o `test -f 'TraceDataByRank.cpp' || echo '$(srcdir)/'`TraceDataByRank.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.o `test -f 'TraceDataByRank.cpp' || echo '$(srcdir)/'`TraceDataByRank.cpp hpcserver-TraceDataByRank.obj: TraceDataByRank.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-TraceDataByRank.obj -MD -MP -MF $(DEPDIR)/hpcserver-TraceDataByRank.Tpo -c -o hpcserver-TraceDataByRank.obj `if test -f 'TraceDataByRank.cpp'; then $(CYGPATH_W) 'TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/TraceDataByRank.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-TraceDataByRank.Tpo $(DEPDIR)/hpcserver-TraceDataByRank.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TraceDataByRank.cpp' object='hpcserver-TraceDataByRank.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.obj `if test -f 'TraceDataByRank.cpp'; then $(CYGPATH_W) 'TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/TraceDataByRank.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.obj `if test -f 'TraceDataByRank.cpp'; then $(CYGPATH_W) 'TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/TraceDataByRank.cpp'; fi` hpcserver-VersatileMemoryPage.o: VersatileMemoryPage.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-VersatileMemoryPage.o -MD -MP -MF $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo -c -o hpcserver-VersatileMemoryPage.o `test -f 'VersatileMemoryPage.cpp' || echo '$(srcdir)/'`VersatileMemoryPage.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo $(DEPDIR)/hpcserver-VersatileMemoryPage.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='VersatileMemoryPage.cpp' object='hpcserver-VersatileMemoryPage.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.o `test -f 'VersatileMemoryPage.cpp' || echo '$(srcdir)/'`VersatileMemoryPage.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.o `test -f 'VersatileMemoryPage.cpp' || echo '$(srcdir)/'`VersatileMemoryPage.cpp hpcserver-VersatileMemoryPage.obj: VersatileMemoryPage.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-VersatileMemoryPage.obj -MD -MP -MF $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo -c -o hpcserver-VersatileMemoryPage.obj `if test -f 'VersatileMemoryPage.cpp'; then $(CYGPATH_W) 'VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/VersatileMemoryPage.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo $(DEPDIR)/hpcserver-VersatileMemoryPage.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='VersatileMemoryPage.cpp' object='hpcserver-VersatileMemoryPage.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.obj `if test -f 'VersatileMemoryPage.cpp'; then $(CYGPATH_W) 'VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/VersatileMemoryPage.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.obj `if test -f 'VersatileMemoryPage.cpp'; then $(CYGPATH_W) 'VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/VersatileMemoryPage.cpp'; fi` hpcserver-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-main.o -MD -MP -MF $(DEPDIR)/hpcserver-main.Tpo -c -o hpcserver-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-main.Tpo $(DEPDIR)/hpcserver-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcserver-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcserver-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-main.obj -MD -MP -MF $(DEPDIR)/hpcserver-main.Tpo -c -o hpcserver-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-main.Tpo $(DEPDIR)/hpcserver-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcserver-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -1044,7 +877,6 @@ clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1090,7 +922,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcserver/mpi/Makefile.in b/src/tool/hpcserver/mpi/Makefile.in index 6223922438..cf3b8cae5c 100644 --- a/src/tool/hpcserver/mpi/Makefile.in +++ b/src/tool/hpcserver/mpi/Makefile.in @@ -181,9 +181,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -228,7 +227,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -560,9 +559,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcserver/mpi/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/mpi/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcserver/mpi/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/mpi/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -633,45 +632,25 @@ clean-binPROGRAMS: ../$(am__dirstamp): @$(MKDIR_P) .. @: > ../$(am__dirstamp) -../$(DEPDIR)/$(am__dirstamp): - @$(MKDIR_P) ../$(DEPDIR) - @: > ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-Args.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-BaseDataFile.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-Communication-MPI.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-DataCompressionLayer.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-DBOpener.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-DataOutputFileStream.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-DataSocketStream.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-FilteredBaseData.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-LargeByteBuffer.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-MergeDataFiles.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-ProcessTimeline.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-ProgressBar.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-Server.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-Slave.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-Args.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-BaseDataFile.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-Communication-MPI.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-DataCompressionLayer.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-DBOpener.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-DataOutputFileStream.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-DataSocketStream.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-FilteredBaseData.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-LargeByteBuffer.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-MergeDataFiles.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-ProcessTimeline.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-ProgressBar.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-Server.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-Slave.$(OBJEXT): ../$(am__dirstamp) ../hpcserver_mpi-SpaceTimeDataController.$(OBJEXT): \ - ../$(am__dirstamp) ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-TraceDataByRank.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-VersatileMemoryPage.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) -../hpcserver_mpi-main.$(OBJEXT): ../$(am__dirstamp) \ - ../$(DEPDIR)/$(am__dirstamp) + ../$(am__dirstamp) +../hpcserver_mpi-TraceDataByRank.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-VersatileMemoryPage.$(OBJEXT): ../$(am__dirstamp) +../hpcserver_mpi-main.$(OBJEXT): ../$(am__dirstamp) hpcserver-mpi$(EXEEXT): $(hpcserver_mpi_OBJECTS) $(hpcserver_mpi_DEPENDENCIES) $(EXTRA_hpcserver_mpi_DEPENDENCIES) @rm -f hpcserver-mpi$(EXEEXT) @@ -684,300 +663,122 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DBOpener.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-ProgressBar.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Server.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Slave.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ -@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ -@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ -@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ -@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< ../hpcserver_mpi-Args.o: ../Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Args.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Args.Tpo -c -o ../hpcserver_mpi-Args.o `test -f '../Args.cpp' || echo '$(srcdir)/'`../Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Args.Tpo ../$(DEPDIR)/hpcserver_mpi-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Args.cpp' object='../hpcserver_mpi-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.o `test -f '../Args.cpp' || echo '$(srcdir)/'`../Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.o `test -f '../Args.cpp' || echo '$(srcdir)/'`../Args.cpp ../hpcserver_mpi-Args.obj: ../Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Args.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Args.Tpo -c -o ../hpcserver_mpi-Args.obj `if test -f '../Args.cpp'; then $(CYGPATH_W) '../Args.cpp'; else $(CYGPATH_W) '$(srcdir)/../Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Args.Tpo ../$(DEPDIR)/hpcserver_mpi-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Args.cpp' object='../hpcserver_mpi-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.obj `if test -f '../Args.cpp'; then $(CYGPATH_W) '../Args.cpp'; else $(CYGPATH_W) '$(srcdir)/../Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.obj `if test -f '../Args.cpp'; then $(CYGPATH_W) '../Args.cpp'; else $(CYGPATH_W) '$(srcdir)/../Args.cpp'; fi` ../hpcserver_mpi-BaseDataFile.o: ../BaseDataFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-BaseDataFile.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo -c -o ../hpcserver_mpi-BaseDataFile.o `test -f '../BaseDataFile.cpp' || echo '$(srcdir)/'`../BaseDataFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../BaseDataFile.cpp' object='../hpcserver_mpi-BaseDataFile.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.o `test -f '../BaseDataFile.cpp' || echo '$(srcdir)/'`../BaseDataFile.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.o `test -f '../BaseDataFile.cpp' || echo '$(srcdir)/'`../BaseDataFile.cpp ../hpcserver_mpi-BaseDataFile.obj: ../BaseDataFile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-BaseDataFile.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo -c -o ../hpcserver_mpi-BaseDataFile.obj `if test -f '../BaseDataFile.cpp'; then $(CYGPATH_W) '../BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/../BaseDataFile.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../BaseDataFile.cpp' object='../hpcserver_mpi-BaseDataFile.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.obj `if test -f '../BaseDataFile.cpp'; then $(CYGPATH_W) '../BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/../BaseDataFile.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.obj `if test -f '../BaseDataFile.cpp'; then $(CYGPATH_W) '../BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/../BaseDataFile.cpp'; fi` ../hpcserver_mpi-Communication-MPI.o: ../Communication-MPI.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Communication-MPI.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo -c -o ../hpcserver_mpi-Communication-MPI.o `test -f '../Communication-MPI.cpp' || echo '$(srcdir)/'`../Communication-MPI.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Communication-MPI.cpp' object='../hpcserver_mpi-Communication-MPI.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.o `test -f '../Communication-MPI.cpp' || echo '$(srcdir)/'`../Communication-MPI.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.o `test -f '../Communication-MPI.cpp' || echo '$(srcdir)/'`../Communication-MPI.cpp ../hpcserver_mpi-Communication-MPI.obj: ../Communication-MPI.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Communication-MPI.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo -c -o ../hpcserver_mpi-Communication-MPI.obj `if test -f '../Communication-MPI.cpp'; then $(CYGPATH_W) '../Communication-MPI.cpp'; else $(CYGPATH_W) '$(srcdir)/../Communication-MPI.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Communication-MPI.cpp' object='../hpcserver_mpi-Communication-MPI.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.obj `if test -f '../Communication-MPI.cpp'; then $(CYGPATH_W) '../Communication-MPI.cpp'; else $(CYGPATH_W) '$(srcdir)/../Communication-MPI.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.obj `if test -f '../Communication-MPI.cpp'; then $(CYGPATH_W) '../Communication-MPI.cpp'; else $(CYGPATH_W) '$(srcdir)/../Communication-MPI.cpp'; fi` ../hpcserver_mpi-DataCompressionLayer.o: ../DataCompressionLayer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataCompressionLayer.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo -c -o ../hpcserver_mpi-DataCompressionLayer.o `test -f '../DataCompressionLayer.cpp' || echo '$(srcdir)/'`../DataCompressionLayer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataCompressionLayer.cpp' object='../hpcserver_mpi-DataCompressionLayer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.o `test -f '../DataCompressionLayer.cpp' || echo '$(srcdir)/'`../DataCompressionLayer.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.o `test -f '../DataCompressionLayer.cpp' || echo '$(srcdir)/'`../DataCompressionLayer.cpp ../hpcserver_mpi-DataCompressionLayer.obj: ../DataCompressionLayer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataCompressionLayer.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo -c -o ../hpcserver_mpi-DataCompressionLayer.obj `if test -f '../DataCompressionLayer.cpp'; then $(CYGPATH_W) '../DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataCompressionLayer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataCompressionLayer.cpp' object='../hpcserver_mpi-DataCompressionLayer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.obj `if test -f '../DataCompressionLayer.cpp'; then $(CYGPATH_W) '../DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataCompressionLayer.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.obj `if test -f '../DataCompressionLayer.cpp'; then $(CYGPATH_W) '../DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataCompressionLayer.cpp'; fi` ../hpcserver_mpi-DBOpener.o: ../DBOpener.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DBOpener.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo -c -o ../hpcserver_mpi-DBOpener.o `test -f '../DBOpener.cpp' || echo '$(srcdir)/'`../DBOpener.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo ../$(DEPDIR)/hpcserver_mpi-DBOpener.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DBOpener.cpp' object='../hpcserver_mpi-DBOpener.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.o `test -f '../DBOpener.cpp' || echo '$(srcdir)/'`../DBOpener.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.o `test -f '../DBOpener.cpp' || echo '$(srcdir)/'`../DBOpener.cpp ../hpcserver_mpi-DBOpener.obj: ../DBOpener.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DBOpener.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo -c -o ../hpcserver_mpi-DBOpener.obj `if test -f '../DBOpener.cpp'; then $(CYGPATH_W) '../DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/../DBOpener.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo ../$(DEPDIR)/hpcserver_mpi-DBOpener.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DBOpener.cpp' object='../hpcserver_mpi-DBOpener.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.obj `if test -f '../DBOpener.cpp'; then $(CYGPATH_W) '../DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/../DBOpener.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.obj `if test -f '../DBOpener.cpp'; then $(CYGPATH_W) '../DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/../DBOpener.cpp'; fi` ../hpcserver_mpi-DataOutputFileStream.o: ../DataOutputFileStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataOutputFileStream.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo -c -o ../hpcserver_mpi-DataOutputFileStream.o `test -f '../DataOutputFileStream.cpp' || echo '$(srcdir)/'`../DataOutputFileStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataOutputFileStream.cpp' object='../hpcserver_mpi-DataOutputFileStream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.o `test -f '../DataOutputFileStream.cpp' || echo '$(srcdir)/'`../DataOutputFileStream.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.o `test -f '../DataOutputFileStream.cpp' || echo '$(srcdir)/'`../DataOutputFileStream.cpp ../hpcserver_mpi-DataOutputFileStream.obj: ../DataOutputFileStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataOutputFileStream.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo -c -o ../hpcserver_mpi-DataOutputFileStream.obj `if test -f '../DataOutputFileStream.cpp'; then $(CYGPATH_W) '../DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataOutputFileStream.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataOutputFileStream.cpp' object='../hpcserver_mpi-DataOutputFileStream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.obj `if test -f '../DataOutputFileStream.cpp'; then $(CYGPATH_W) '../DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataOutputFileStream.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.obj `if test -f '../DataOutputFileStream.cpp'; then $(CYGPATH_W) '../DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataOutputFileStream.cpp'; fi` ../hpcserver_mpi-DataSocketStream.o: ../DataSocketStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataSocketStream.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo -c -o ../hpcserver_mpi-DataSocketStream.o `test -f '../DataSocketStream.cpp' || echo '$(srcdir)/'`../DataSocketStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataSocketStream.cpp' object='../hpcserver_mpi-DataSocketStream.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.o `test -f '../DataSocketStream.cpp' || echo '$(srcdir)/'`../DataSocketStream.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.o `test -f '../DataSocketStream.cpp' || echo '$(srcdir)/'`../DataSocketStream.cpp ../hpcserver_mpi-DataSocketStream.obj: ../DataSocketStream.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataSocketStream.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo -c -o ../hpcserver_mpi-DataSocketStream.obj `if test -f '../DataSocketStream.cpp'; then $(CYGPATH_W) '../DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataSocketStream.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataSocketStream.cpp' object='../hpcserver_mpi-DataSocketStream.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.obj `if test -f '../DataSocketStream.cpp'; then $(CYGPATH_W) '../DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataSocketStream.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.obj `if test -f '../DataSocketStream.cpp'; then $(CYGPATH_W) '../DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataSocketStream.cpp'; fi` ../hpcserver_mpi-FilteredBaseData.o: ../FilteredBaseData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-FilteredBaseData.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo -c -o ../hpcserver_mpi-FilteredBaseData.o `test -f '../FilteredBaseData.cpp' || echo '$(srcdir)/'`../FilteredBaseData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../FilteredBaseData.cpp' object='../hpcserver_mpi-FilteredBaseData.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.o `test -f '../FilteredBaseData.cpp' || echo '$(srcdir)/'`../FilteredBaseData.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.o `test -f '../FilteredBaseData.cpp' || echo '$(srcdir)/'`../FilteredBaseData.cpp ../hpcserver_mpi-FilteredBaseData.obj: ../FilteredBaseData.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-FilteredBaseData.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo -c -o ../hpcserver_mpi-FilteredBaseData.obj `if test -f '../FilteredBaseData.cpp'; then $(CYGPATH_W) '../FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/../FilteredBaseData.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../FilteredBaseData.cpp' object='../hpcserver_mpi-FilteredBaseData.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.obj `if test -f '../FilteredBaseData.cpp'; then $(CYGPATH_W) '../FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/../FilteredBaseData.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.obj `if test -f '../FilteredBaseData.cpp'; then $(CYGPATH_W) '../FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/../FilteredBaseData.cpp'; fi` ../hpcserver_mpi-LargeByteBuffer.o: ../LargeByteBuffer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-LargeByteBuffer.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo -c -o ../hpcserver_mpi-LargeByteBuffer.o `test -f '../LargeByteBuffer.cpp' || echo '$(srcdir)/'`../LargeByteBuffer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../LargeByteBuffer.cpp' object='../hpcserver_mpi-LargeByteBuffer.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.o `test -f '../LargeByteBuffer.cpp' || echo '$(srcdir)/'`../LargeByteBuffer.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.o `test -f '../LargeByteBuffer.cpp' || echo '$(srcdir)/'`../LargeByteBuffer.cpp ../hpcserver_mpi-LargeByteBuffer.obj: ../LargeByteBuffer.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-LargeByteBuffer.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo -c -o ../hpcserver_mpi-LargeByteBuffer.obj `if test -f '../LargeByteBuffer.cpp'; then $(CYGPATH_W) '../LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../LargeByteBuffer.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../LargeByteBuffer.cpp' object='../hpcserver_mpi-LargeByteBuffer.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.obj `if test -f '../LargeByteBuffer.cpp'; then $(CYGPATH_W) '../LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../LargeByteBuffer.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.obj `if test -f '../LargeByteBuffer.cpp'; then $(CYGPATH_W) '../LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../LargeByteBuffer.cpp'; fi` ../hpcserver_mpi-MergeDataFiles.o: ../MergeDataFiles.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-MergeDataFiles.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo -c -o ../hpcserver_mpi-MergeDataFiles.o `test -f '../MergeDataFiles.cpp' || echo '$(srcdir)/'`../MergeDataFiles.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../MergeDataFiles.cpp' object='../hpcserver_mpi-MergeDataFiles.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.o `test -f '../MergeDataFiles.cpp' || echo '$(srcdir)/'`../MergeDataFiles.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.o `test -f '../MergeDataFiles.cpp' || echo '$(srcdir)/'`../MergeDataFiles.cpp ../hpcserver_mpi-MergeDataFiles.obj: ../MergeDataFiles.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-MergeDataFiles.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo -c -o ../hpcserver_mpi-MergeDataFiles.obj `if test -f '../MergeDataFiles.cpp'; then $(CYGPATH_W) '../MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../MergeDataFiles.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../MergeDataFiles.cpp' object='../hpcserver_mpi-MergeDataFiles.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.obj `if test -f '../MergeDataFiles.cpp'; then $(CYGPATH_W) '../MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../MergeDataFiles.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.obj `if test -f '../MergeDataFiles.cpp'; then $(CYGPATH_W) '../MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../MergeDataFiles.cpp'; fi` ../hpcserver_mpi-ProcessTimeline.o: ../ProcessTimeline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProcessTimeline.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo -c -o ../hpcserver_mpi-ProcessTimeline.o `test -f '../ProcessTimeline.cpp' || echo '$(srcdir)/'`../ProcessTimeline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProcessTimeline.cpp' object='../hpcserver_mpi-ProcessTimeline.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.o `test -f '../ProcessTimeline.cpp' || echo '$(srcdir)/'`../ProcessTimeline.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.o `test -f '../ProcessTimeline.cpp' || echo '$(srcdir)/'`../ProcessTimeline.cpp ../hpcserver_mpi-ProcessTimeline.obj: ../ProcessTimeline.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProcessTimeline.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo -c -o ../hpcserver_mpi-ProcessTimeline.obj `if test -f '../ProcessTimeline.cpp'; then $(CYGPATH_W) '../ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProcessTimeline.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProcessTimeline.cpp' object='../hpcserver_mpi-ProcessTimeline.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.obj `if test -f '../ProcessTimeline.cpp'; then $(CYGPATH_W) '../ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProcessTimeline.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.obj `if test -f '../ProcessTimeline.cpp'; then $(CYGPATH_W) '../ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProcessTimeline.cpp'; fi` ../hpcserver_mpi-ProgressBar.o: ../ProgressBar.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProgressBar.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo -c -o ../hpcserver_mpi-ProgressBar.o `test -f '../ProgressBar.cpp' || echo '$(srcdir)/'`../ProgressBar.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProgressBar.cpp' object='../hpcserver_mpi-ProgressBar.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.o `test -f '../ProgressBar.cpp' || echo '$(srcdir)/'`../ProgressBar.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.o `test -f '../ProgressBar.cpp' || echo '$(srcdir)/'`../ProgressBar.cpp ../hpcserver_mpi-ProgressBar.obj: ../ProgressBar.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProgressBar.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo -c -o ../hpcserver_mpi-ProgressBar.obj `if test -f '../ProgressBar.cpp'; then $(CYGPATH_W) '../ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProgressBar.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProgressBar.cpp' object='../hpcserver_mpi-ProgressBar.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.obj `if test -f '../ProgressBar.cpp'; then $(CYGPATH_W) '../ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProgressBar.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.obj `if test -f '../ProgressBar.cpp'; then $(CYGPATH_W) '../ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProgressBar.cpp'; fi` ../hpcserver_mpi-Server.o: ../Server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Server.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Server.Tpo -c -o ../hpcserver_mpi-Server.o `test -f '../Server.cpp' || echo '$(srcdir)/'`../Server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Server.Tpo ../$(DEPDIR)/hpcserver_mpi-Server.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Server.cpp' object='../hpcserver_mpi-Server.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.o `test -f '../Server.cpp' || echo '$(srcdir)/'`../Server.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.o `test -f '../Server.cpp' || echo '$(srcdir)/'`../Server.cpp ../hpcserver_mpi-Server.obj: ../Server.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Server.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Server.Tpo -c -o ../hpcserver_mpi-Server.obj `if test -f '../Server.cpp'; then $(CYGPATH_W) '../Server.cpp'; else $(CYGPATH_W) '$(srcdir)/../Server.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Server.Tpo ../$(DEPDIR)/hpcserver_mpi-Server.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Server.cpp' object='../hpcserver_mpi-Server.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.obj `if test -f '../Server.cpp'; then $(CYGPATH_W) '../Server.cpp'; else $(CYGPATH_W) '$(srcdir)/../Server.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.obj `if test -f '../Server.cpp'; then $(CYGPATH_W) '../Server.cpp'; else $(CYGPATH_W) '$(srcdir)/../Server.cpp'; fi` ../hpcserver_mpi-Slave.o: ../Slave.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Slave.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo -c -o ../hpcserver_mpi-Slave.o `test -f '../Slave.cpp' || echo '$(srcdir)/'`../Slave.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo ../$(DEPDIR)/hpcserver_mpi-Slave.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Slave.cpp' object='../hpcserver_mpi-Slave.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.o `test -f '../Slave.cpp' || echo '$(srcdir)/'`../Slave.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.o `test -f '../Slave.cpp' || echo '$(srcdir)/'`../Slave.cpp ../hpcserver_mpi-Slave.obj: ../Slave.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Slave.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo -c -o ../hpcserver_mpi-Slave.obj `if test -f '../Slave.cpp'; then $(CYGPATH_W) '../Slave.cpp'; else $(CYGPATH_W) '$(srcdir)/../Slave.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo ../$(DEPDIR)/hpcserver_mpi-Slave.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Slave.cpp' object='../hpcserver_mpi-Slave.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.obj `if test -f '../Slave.cpp'; then $(CYGPATH_W) '../Slave.cpp'; else $(CYGPATH_W) '$(srcdir)/../Slave.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.obj `if test -f '../Slave.cpp'; then $(CYGPATH_W) '../Slave.cpp'; else $(CYGPATH_W) '$(srcdir)/../Slave.cpp'; fi` ../hpcserver_mpi-SpaceTimeDataController.o: ../SpaceTimeDataController.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-SpaceTimeDataController.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo -c -o ../hpcserver_mpi-SpaceTimeDataController.o `test -f '../SpaceTimeDataController.cpp' || echo '$(srcdir)/'`../SpaceTimeDataController.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../SpaceTimeDataController.cpp' object='../hpcserver_mpi-SpaceTimeDataController.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.o `test -f '../SpaceTimeDataController.cpp' || echo '$(srcdir)/'`../SpaceTimeDataController.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.o `test -f '../SpaceTimeDataController.cpp' || echo '$(srcdir)/'`../SpaceTimeDataController.cpp ../hpcserver_mpi-SpaceTimeDataController.obj: ../SpaceTimeDataController.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-SpaceTimeDataController.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo -c -o ../hpcserver_mpi-SpaceTimeDataController.obj `if test -f '../SpaceTimeDataController.cpp'; then $(CYGPATH_W) '../SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/../SpaceTimeDataController.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../SpaceTimeDataController.cpp' object='../hpcserver_mpi-SpaceTimeDataController.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.obj `if test -f '../SpaceTimeDataController.cpp'; then $(CYGPATH_W) '../SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/../SpaceTimeDataController.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.obj `if test -f '../SpaceTimeDataController.cpp'; then $(CYGPATH_W) '../SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/../SpaceTimeDataController.cpp'; fi` ../hpcserver_mpi-TraceDataByRank.o: ../TraceDataByRank.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-TraceDataByRank.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo -c -o ../hpcserver_mpi-TraceDataByRank.o `test -f '../TraceDataByRank.cpp' || echo '$(srcdir)/'`../TraceDataByRank.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../TraceDataByRank.cpp' object='../hpcserver_mpi-TraceDataByRank.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.o `test -f '../TraceDataByRank.cpp' || echo '$(srcdir)/'`../TraceDataByRank.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.o `test -f '../TraceDataByRank.cpp' || echo '$(srcdir)/'`../TraceDataByRank.cpp ../hpcserver_mpi-TraceDataByRank.obj: ../TraceDataByRank.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-TraceDataByRank.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo -c -o ../hpcserver_mpi-TraceDataByRank.obj `if test -f '../TraceDataByRank.cpp'; then $(CYGPATH_W) '../TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/../TraceDataByRank.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../TraceDataByRank.cpp' object='../hpcserver_mpi-TraceDataByRank.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.obj `if test -f '../TraceDataByRank.cpp'; then $(CYGPATH_W) '../TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/../TraceDataByRank.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.obj `if test -f '../TraceDataByRank.cpp'; then $(CYGPATH_W) '../TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/../TraceDataByRank.cpp'; fi` ../hpcserver_mpi-VersatileMemoryPage.o: ../VersatileMemoryPage.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-VersatileMemoryPage.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo -c -o ../hpcserver_mpi-VersatileMemoryPage.o `test -f '../VersatileMemoryPage.cpp' || echo '$(srcdir)/'`../VersatileMemoryPage.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../VersatileMemoryPage.cpp' object='../hpcserver_mpi-VersatileMemoryPage.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.o `test -f '../VersatileMemoryPage.cpp' || echo '$(srcdir)/'`../VersatileMemoryPage.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.o `test -f '../VersatileMemoryPage.cpp' || echo '$(srcdir)/'`../VersatileMemoryPage.cpp ../hpcserver_mpi-VersatileMemoryPage.obj: ../VersatileMemoryPage.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-VersatileMemoryPage.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo -c -o ../hpcserver_mpi-VersatileMemoryPage.obj `if test -f '../VersatileMemoryPage.cpp'; then $(CYGPATH_W) '../VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/../VersatileMemoryPage.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../VersatileMemoryPage.cpp' object='../hpcserver_mpi-VersatileMemoryPage.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.obj `if test -f '../VersatileMemoryPage.cpp'; then $(CYGPATH_W) '../VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/../VersatileMemoryPage.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.obj `if test -f '../VersatileMemoryPage.cpp'; then $(CYGPATH_W) '../VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/../VersatileMemoryPage.cpp'; fi` ../hpcserver_mpi-main.o: ../main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-main.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-main.Tpo -c -o ../hpcserver_mpi-main.o `test -f '../main.cpp' || echo '$(srcdir)/'`../main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-main.Tpo ../$(DEPDIR)/hpcserver_mpi-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../main.cpp' object='../hpcserver_mpi-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.o `test -f '../main.cpp' || echo '$(srcdir)/'`../main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.o `test -f '../main.cpp' || echo '$(srcdir)/'`../main.cpp ../hpcserver_mpi-main.obj: ../main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-main.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-main.Tpo -c -o ../hpcserver_mpi-main.obj `if test -f '../main.cpp'; then $(CYGPATH_W) '../main.cpp'; else $(CYGPATH_W) '$(srcdir)/../main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-main.Tpo ../$(DEPDIR)/hpcserver_mpi-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../main.cpp' object='../hpcserver_mpi-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.obj `if test -f '../main.cpp'; then $(CYGPATH_W) '../main.cpp'; else $(CYGPATH_W) '$(srcdir)/../main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.obj `if test -f '../main.cpp'; then $(CYGPATH_W) '../main.cpp'; else $(CYGPATH_W) '$(srcdir)/../main.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -1101,7 +902,6 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) - -rm -f ../$(DEPDIR)/$(am__dirstamp) -rm -f ../$(am__dirstamp) maintainer-clean-generic: @@ -1112,7 +912,6 @@ clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am - -rm -rf ../$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1158,7 +957,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ../$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcstruct/Makefile.in b/src/tool/hpcstruct/Makefile.in index 45e734bb25..1b0b7c1fd8 100644 --- a/src/tool/hpcstruct/Makefile.in +++ b/src/tool/hpcstruct/Makefile.in @@ -209,9 +209,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -275,7 +274,6 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcstruct.in \ - $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -604,9 +602,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcstruct/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcstruct/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/hpcstruct/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcstruct/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -722,57 +720,26 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcstruct_bin-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcstruct_bin-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< hpcstruct_bin-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-main.o -MD -MP -MF $(DEPDIR)/hpcstruct_bin-main.Tpo -c -o hpcstruct_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-main.Tpo $(DEPDIR)/hpcstruct_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcstruct_bin-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcstruct_bin-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcstruct_bin-main.Tpo -c -o hpcstruct_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-main.Tpo $(DEPDIR)/hpcstruct_bin-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcstruct_bin-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcstruct_bin-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcstruct_bin-Args.Tpo -c -o hpcstruct_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-Args.Tpo $(DEPDIR)/hpcstruct_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcstruct_bin-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcstruct_bin-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcstruct_bin-Args.Tpo -c -o hpcstruct_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-Args.Tpo $(DEPDIR)/hpcstruct_bin-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcstruct_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -907,7 +874,6 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -954,7 +920,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/misc/Makefile.in b/src/tool/misc/Makefile.in index 9c2067a7f9..6f347a7ab7 100644 --- a/src/tool/misc/Makefile.in +++ b/src/tool/misc/Makefile.in @@ -164,6 +164,8 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = +depcomp = +am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -459,9 +461,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/misc/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/misc/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/misc/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/misc/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/tool/xprof/Makefile.in b/src/tool/xprof/Makefile.in index 6cecfd3c2f..904db7c8e6 100644 --- a/src/tool/xprof/Makefile.in +++ b/src/tool/xprof/Makefile.in @@ -172,9 +172,8 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = $(SHELL) $(top_srcdir)/config/depcomp -am__depfiles_maybe = depfiles -am__mv = mv -f +depcomp = +am__depfiles_maybe = CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -237,7 +236,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ +am__DIST_COMMON = $(srcdir)/Makefile.in \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -558,9 +557,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/xprof/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/xprof/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign src/tool/xprof/Makefile + $(AUTOMAKE) --foreign --ignore-deps src/tool/xprof/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -639,207 +638,86 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-Args.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIMetricDesc.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIProfile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIProfileFilter.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIProfileMetric.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DerivedProfile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-PCProfile.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-PCProfileFilter.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-PCProfileMetric.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-ProfileReader.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-ProfileWriter.Po@am__quote@ -@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-main.Po@am__quote@ - .cpp.o: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` + $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< + $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< xprof-main.o: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-main.o -MD -MP -MF $(DEPDIR)/xprof-main.Tpo -c -o xprof-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-main.Tpo $(DEPDIR)/xprof-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='xprof-main.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp xprof-main.obj: main.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-main.obj -MD -MP -MF $(DEPDIR)/xprof-main.Tpo -c -o xprof-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-main.Tpo $(DEPDIR)/xprof-main.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='xprof-main.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` xprof-Args.o: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-Args.o -MD -MP -MF $(DEPDIR)/xprof-Args.Tpo -c -o xprof-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-Args.Tpo $(DEPDIR)/xprof-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='xprof-Args.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp xprof-Args.obj: Args.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-Args.obj -MD -MP -MF $(DEPDIR)/xprof-Args.Tpo -c -o xprof-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-Args.Tpo $(DEPDIR)/xprof-Args.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='xprof-Args.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` xprof-DCPIMetricDesc.o: DCPIMetricDesc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIMetricDesc.o -MD -MP -MF $(DEPDIR)/xprof-DCPIMetricDesc.Tpo -c -o xprof-DCPIMetricDesc.o `test -f 'DCPIMetricDesc.cpp' || echo '$(srcdir)/'`DCPIMetricDesc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIMetricDesc.Tpo $(DEPDIR)/xprof-DCPIMetricDesc.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIMetricDesc.cpp' object='xprof-DCPIMetricDesc.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.o `test -f 'DCPIMetricDesc.cpp' || echo '$(srcdir)/'`DCPIMetricDesc.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.o `test -f 'DCPIMetricDesc.cpp' || echo '$(srcdir)/'`DCPIMetricDesc.cpp xprof-DCPIMetricDesc.obj: DCPIMetricDesc.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIMetricDesc.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIMetricDesc.Tpo -c -o xprof-DCPIMetricDesc.obj `if test -f 'DCPIMetricDesc.cpp'; then $(CYGPATH_W) 'DCPIMetricDesc.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIMetricDesc.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIMetricDesc.Tpo $(DEPDIR)/xprof-DCPIMetricDesc.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIMetricDesc.cpp' object='xprof-DCPIMetricDesc.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.obj `if test -f 'DCPIMetricDesc.cpp'; then $(CYGPATH_W) 'DCPIMetricDesc.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIMetricDesc.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.obj `if test -f 'DCPIMetricDesc.cpp'; then $(CYGPATH_W) 'DCPIMetricDesc.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIMetricDesc.cpp'; fi` xprof-DCPIProfile.o: DCPIProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfile.o -MD -MP -MF $(DEPDIR)/xprof-DCPIProfile.Tpo -c -o xprof-DCPIProfile.o `test -f 'DCPIProfile.cpp' || echo '$(srcdir)/'`DCPIProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfile.Tpo $(DEPDIR)/xprof-DCPIProfile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfile.cpp' object='xprof-DCPIProfile.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.o `test -f 'DCPIProfile.cpp' || echo '$(srcdir)/'`DCPIProfile.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.o `test -f 'DCPIProfile.cpp' || echo '$(srcdir)/'`DCPIProfile.cpp xprof-DCPIProfile.obj: DCPIProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfile.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIProfile.Tpo -c -o xprof-DCPIProfile.obj `if test -f 'DCPIProfile.cpp'; then $(CYGPATH_W) 'DCPIProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfile.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfile.Tpo $(DEPDIR)/xprof-DCPIProfile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfile.cpp' object='xprof-DCPIProfile.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.obj `if test -f 'DCPIProfile.cpp'; then $(CYGPATH_W) 'DCPIProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfile.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.obj `if test -f 'DCPIProfile.cpp'; then $(CYGPATH_W) 'DCPIProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfile.cpp'; fi` xprof-DCPIProfileFilter.o: DCPIProfileFilter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileFilter.o -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileFilter.Tpo -c -o xprof-DCPIProfileFilter.o `test -f 'DCPIProfileFilter.cpp' || echo '$(srcdir)/'`DCPIProfileFilter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileFilter.Tpo $(DEPDIR)/xprof-DCPIProfileFilter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileFilter.cpp' object='xprof-DCPIProfileFilter.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.o `test -f 'DCPIProfileFilter.cpp' || echo '$(srcdir)/'`DCPIProfileFilter.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.o `test -f 'DCPIProfileFilter.cpp' || echo '$(srcdir)/'`DCPIProfileFilter.cpp xprof-DCPIProfileFilter.obj: DCPIProfileFilter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileFilter.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileFilter.Tpo -c -o xprof-DCPIProfileFilter.obj `if test -f 'DCPIProfileFilter.cpp'; then $(CYGPATH_W) 'DCPIProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileFilter.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileFilter.Tpo $(DEPDIR)/xprof-DCPIProfileFilter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileFilter.cpp' object='xprof-DCPIProfileFilter.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.obj `if test -f 'DCPIProfileFilter.cpp'; then $(CYGPATH_W) 'DCPIProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileFilter.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.obj `if test -f 'DCPIProfileFilter.cpp'; then $(CYGPATH_W) 'DCPIProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileFilter.cpp'; fi` xprof-DCPIProfileMetric.o: DCPIProfileMetric.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileMetric.o -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileMetric.Tpo -c -o xprof-DCPIProfileMetric.o `test -f 'DCPIProfileMetric.cpp' || echo '$(srcdir)/'`DCPIProfileMetric.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileMetric.Tpo $(DEPDIR)/xprof-DCPIProfileMetric.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileMetric.cpp' object='xprof-DCPIProfileMetric.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.o `test -f 'DCPIProfileMetric.cpp' || echo '$(srcdir)/'`DCPIProfileMetric.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.o `test -f 'DCPIProfileMetric.cpp' || echo '$(srcdir)/'`DCPIProfileMetric.cpp xprof-DCPIProfileMetric.obj: DCPIProfileMetric.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileMetric.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileMetric.Tpo -c -o xprof-DCPIProfileMetric.obj `if test -f 'DCPIProfileMetric.cpp'; then $(CYGPATH_W) 'DCPIProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileMetric.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileMetric.Tpo $(DEPDIR)/xprof-DCPIProfileMetric.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileMetric.cpp' object='xprof-DCPIProfileMetric.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.obj `if test -f 'DCPIProfileMetric.cpp'; then $(CYGPATH_W) 'DCPIProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileMetric.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.obj `if test -f 'DCPIProfileMetric.cpp'; then $(CYGPATH_W) 'DCPIProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileMetric.cpp'; fi` xprof-DerivedProfile.o: DerivedProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DerivedProfile.o -MD -MP -MF $(DEPDIR)/xprof-DerivedProfile.Tpo -c -o xprof-DerivedProfile.o `test -f 'DerivedProfile.cpp' || echo '$(srcdir)/'`DerivedProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DerivedProfile.Tpo $(DEPDIR)/xprof-DerivedProfile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DerivedProfile.cpp' object='xprof-DerivedProfile.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.o `test -f 'DerivedProfile.cpp' || echo '$(srcdir)/'`DerivedProfile.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.o `test -f 'DerivedProfile.cpp' || echo '$(srcdir)/'`DerivedProfile.cpp xprof-DerivedProfile.obj: DerivedProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DerivedProfile.obj -MD -MP -MF $(DEPDIR)/xprof-DerivedProfile.Tpo -c -o xprof-DerivedProfile.obj `if test -f 'DerivedProfile.cpp'; then $(CYGPATH_W) 'DerivedProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DerivedProfile.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DerivedProfile.Tpo $(DEPDIR)/xprof-DerivedProfile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DerivedProfile.cpp' object='xprof-DerivedProfile.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.obj `if test -f 'DerivedProfile.cpp'; then $(CYGPATH_W) 'DerivedProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DerivedProfile.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.obj `if test -f 'DerivedProfile.cpp'; then $(CYGPATH_W) 'DerivedProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DerivedProfile.cpp'; fi` xprof-PCProfile.o: PCProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfile.o -MD -MP -MF $(DEPDIR)/xprof-PCProfile.Tpo -c -o xprof-PCProfile.o `test -f 'PCProfile.cpp' || echo '$(srcdir)/'`PCProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfile.Tpo $(DEPDIR)/xprof-PCProfile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfile.cpp' object='xprof-PCProfile.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.o `test -f 'PCProfile.cpp' || echo '$(srcdir)/'`PCProfile.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.o `test -f 'PCProfile.cpp' || echo '$(srcdir)/'`PCProfile.cpp xprof-PCProfile.obj: PCProfile.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfile.obj -MD -MP -MF $(DEPDIR)/xprof-PCProfile.Tpo -c -o xprof-PCProfile.obj `if test -f 'PCProfile.cpp'; then $(CYGPATH_W) 'PCProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfile.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfile.Tpo $(DEPDIR)/xprof-PCProfile.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfile.cpp' object='xprof-PCProfile.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.obj `if test -f 'PCProfile.cpp'; then $(CYGPATH_W) 'PCProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfile.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.obj `if test -f 'PCProfile.cpp'; then $(CYGPATH_W) 'PCProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfile.cpp'; fi` xprof-PCProfileFilter.o: PCProfileFilter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileFilter.o -MD -MP -MF $(DEPDIR)/xprof-PCProfileFilter.Tpo -c -o xprof-PCProfileFilter.o `test -f 'PCProfileFilter.cpp' || echo '$(srcdir)/'`PCProfileFilter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileFilter.Tpo $(DEPDIR)/xprof-PCProfileFilter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileFilter.cpp' object='xprof-PCProfileFilter.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.o `test -f 'PCProfileFilter.cpp' || echo '$(srcdir)/'`PCProfileFilter.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.o `test -f 'PCProfileFilter.cpp' || echo '$(srcdir)/'`PCProfileFilter.cpp xprof-PCProfileFilter.obj: PCProfileFilter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileFilter.obj -MD -MP -MF $(DEPDIR)/xprof-PCProfileFilter.Tpo -c -o xprof-PCProfileFilter.obj `if test -f 'PCProfileFilter.cpp'; then $(CYGPATH_W) 'PCProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileFilter.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileFilter.Tpo $(DEPDIR)/xprof-PCProfileFilter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileFilter.cpp' object='xprof-PCProfileFilter.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.obj `if test -f 'PCProfileFilter.cpp'; then $(CYGPATH_W) 'PCProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileFilter.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.obj `if test -f 'PCProfileFilter.cpp'; then $(CYGPATH_W) 'PCProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileFilter.cpp'; fi` xprof-PCProfileMetric.o: PCProfileMetric.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileMetric.o -MD -MP -MF $(DEPDIR)/xprof-PCProfileMetric.Tpo -c -o xprof-PCProfileMetric.o `test -f 'PCProfileMetric.cpp' || echo '$(srcdir)/'`PCProfileMetric.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileMetric.Tpo $(DEPDIR)/xprof-PCProfileMetric.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileMetric.cpp' object='xprof-PCProfileMetric.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.o `test -f 'PCProfileMetric.cpp' || echo '$(srcdir)/'`PCProfileMetric.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.o `test -f 'PCProfileMetric.cpp' || echo '$(srcdir)/'`PCProfileMetric.cpp xprof-PCProfileMetric.obj: PCProfileMetric.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileMetric.obj -MD -MP -MF $(DEPDIR)/xprof-PCProfileMetric.Tpo -c -o xprof-PCProfileMetric.obj `if test -f 'PCProfileMetric.cpp'; then $(CYGPATH_W) 'PCProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileMetric.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileMetric.Tpo $(DEPDIR)/xprof-PCProfileMetric.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileMetric.cpp' object='xprof-PCProfileMetric.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.obj `if test -f 'PCProfileMetric.cpp'; then $(CYGPATH_W) 'PCProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileMetric.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.obj `if test -f 'PCProfileMetric.cpp'; then $(CYGPATH_W) 'PCProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileMetric.cpp'; fi` xprof-ProfileReader.o: ProfileReader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileReader.o -MD -MP -MF $(DEPDIR)/xprof-ProfileReader.Tpo -c -o xprof-ProfileReader.o `test -f 'ProfileReader.cpp' || echo '$(srcdir)/'`ProfileReader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileReader.Tpo $(DEPDIR)/xprof-ProfileReader.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileReader.cpp' object='xprof-ProfileReader.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.o `test -f 'ProfileReader.cpp' || echo '$(srcdir)/'`ProfileReader.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.o `test -f 'ProfileReader.cpp' || echo '$(srcdir)/'`ProfileReader.cpp xprof-ProfileReader.obj: ProfileReader.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileReader.obj -MD -MP -MF $(DEPDIR)/xprof-ProfileReader.Tpo -c -o xprof-ProfileReader.obj `if test -f 'ProfileReader.cpp'; then $(CYGPATH_W) 'ProfileReader.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileReader.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileReader.Tpo $(DEPDIR)/xprof-ProfileReader.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileReader.cpp' object='xprof-ProfileReader.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.obj `if test -f 'ProfileReader.cpp'; then $(CYGPATH_W) 'ProfileReader.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileReader.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.obj `if test -f 'ProfileReader.cpp'; then $(CYGPATH_W) 'ProfileReader.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileReader.cpp'; fi` xprof-ProfileWriter.o: ProfileWriter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileWriter.o -MD -MP -MF $(DEPDIR)/xprof-ProfileWriter.Tpo -c -o xprof-ProfileWriter.o `test -f 'ProfileWriter.cpp' || echo '$(srcdir)/'`ProfileWriter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileWriter.Tpo $(DEPDIR)/xprof-ProfileWriter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileWriter.cpp' object='xprof-ProfileWriter.o' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.o `test -f 'ProfileWriter.cpp' || echo '$(srcdir)/'`ProfileWriter.cpp + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.o `test -f 'ProfileWriter.cpp' || echo '$(srcdir)/'`ProfileWriter.cpp xprof-ProfileWriter.obj: ProfileWriter.cpp -@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileWriter.obj -MD -MP -MF $(DEPDIR)/xprof-ProfileWriter.Tpo -c -o xprof-ProfileWriter.obj `if test -f 'ProfileWriter.cpp'; then $(CYGPATH_W) 'ProfileWriter.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileWriter.cpp'; fi` -@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileWriter.Tpo $(DEPDIR)/xprof-ProfileWriter.Po -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileWriter.cpp' object='xprof-ProfileWriter.obj' libtool=no @AMDEPBACKSLASH@ -@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ -@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.obj `if test -f 'ProfileWriter.cpp'; then $(CYGPATH_W) 'ProfileWriter.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileWriter.cpp'; fi` + $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.obj `if test -f 'ProfileWriter.cpp'; then $(CYGPATH_W) 'ProfileWriter.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileWriter.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -972,7 +850,6 @@ clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1018,7 +895,6 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am - -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic From 010386a87a29894186851e825984f605cd5084ff Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 17:27:27 -0500 Subject: [PATCH 35/85] Build unbalanced tree of intervals with the same rightward tilt used for the other architectures. Use a hack to get around some binary tree obfuscation. --- .../hpcrun/unwind/generic-libunwind/libunw-unwind.c | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 3ae51ac120..2663ff32f5 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -280,7 +280,7 @@ hpcrun_unw_step(hpcrun_unw_cursor_t* cursor) struct builder { mem_alloc m_alloc; - bitree_uwi_t *root; + bitree_uwi_t *latest; }; int dwarf_reg_states_callback(void *token, @@ -290,13 +290,13 @@ int dwarf_reg_states_callback(void *token, { struct builder *b = token; bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, size); - bitree_uwi_set_leftsubtree(u, b->root); + bitree_uwi_set_rightsubtree(b->latest, u); uwi_t *uwi = bitree_uwi_rootval(u); interval_t *interval = uwi->interval; interval->start = (uintptr_t)start_ip; interval->end = (uintptr_t)end_ip; memcpy(uwi->recipe, rs, size); - b->root = u; + b->latest = u; return 0; } @@ -309,13 +309,15 @@ libunw_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) unw_cursor_t c; unw_init_local_signal(&c, &uc); unw_set_reg(&c, UNW_REG_IP, (intptr_t)beg_insn); - struct builder b = {m_alloc, NULL}; + void *space[3]; // enough space for any binarytree + bitree_uwi_t *dummy = &space; + struct builder b = {m_alloc, dummy}; unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); btuwi_status_t stat; stat.first_undecoded_ins = NULL; stat.errcode = 0; - stat.first = b.root; + stat.first = bitree_uwi_rightsubtree(dummy); return stat; } From 9d85199ba361240d2f721b5d0370a125f398ad3b Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 18:06:29 -0500 Subject: [PATCH 36/85] Make an interval, not a pointer to an interval, a member of ildmod_stat_t. --- src/tool/hpcrun/unwind/common/ildmod_stat.h | 2 +- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 39 +++++++++---------- 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.h b/src/tool/hpcrun/unwind/common/ildmod_stat.h index b042305cd9..cffd9e6db5 100644 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.h +++ b/src/tool/hpcrun/unwind/common/ildmod_stat.h @@ -28,7 +28,7 @@ typedef enum { // {interval, load_module, tree status} typedef struct ildmod_stat_s { - interval_t *interval; + interval_t interval; load_module_t *loadmod; _Atomic(tree_stat_t) stat; } ildmod_stat_t; diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 64a1f8b049..c0c99fca26 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -150,8 +150,8 @@ ilmstat_btuwi_pair_cmp(void *lhs, void *rhs) ilmstat_btuwi_pair_t *l = (ilmstat_btuwi_pair_t*)lhs; ilmstat_btuwi_pair_t *r = (ilmstat_btuwi_pair_t*)rhs; return interval_t_cmp( - l->ilmstat->interval, - r->ilmstat->interval); + &l->ilmstat->interval, + &r->ilmstat->interval); } /* @@ -162,7 +162,7 @@ extern int ilmstat_btuwi_pair_inrange(void *itp, void *address) { ilmstat_btuwi_pair_t *p = (ilmstat_btuwi_pair_t*)itp; - return interval_t_inrange(p->ilmstat->interval, address); + return interval_t_inrange(&p->ilmstat->interval, address); } static ilmstat_btuwi_pair_t *GF_ilmstat_btuwi = NULL; // global free list of ilmstat_btuwi_pair_t* @@ -182,7 +182,8 @@ ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, ilmstat_btuwi_pair_t* node = m_alloc(sizeof(*node)); node->next = NULL; ildmod_stat_t *ilmstat = m_alloc(sizeof(*ilmstat)); - ilmstat->interval = interval_t_new(start, end, m_alloc); + ilmstat->interval.start = start; + ilmstat->interval.end = end; ilmstat->loadmod = ldmod; atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); node->ilmstat = ilmstat; @@ -249,9 +250,8 @@ ilmstat_btuwi_pair_malloc( ildmod_stat_t *ilmstat = ans->ilmstat; atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); ilmstat->loadmod = ldmod; - interval_t *interval = ilmstat->interval; - interval->start = start; - interval->end = end; + ilmstat->interval.start = start; + ilmstat->interval.end = end; return ans; } @@ -325,7 +325,7 @@ ildmod_stat_tostr(void* ilms, char str[]) { ildmod_stat_t* ildmod_stat = (ildmod_stat_t*)ilms; char intervalstr[MAX_INTERVAL_STR]; - interval_t_tostr(ildmod_stat->interval, intervalstr); + interval_t_tostr(&ildmod_stat->interval, intervalstr); char ldmodstr[LDMOD_NAME_LEN]; load_module_tostr(ildmod_stat->loadmod, ldmodstr); char statstr[MAX_STAT_STR]; @@ -443,11 +443,12 @@ uw_recipe_map_unpoison(uintptr_t start, uintptr_t end) ildmod_stat_t* ilmstat = ilmstat_btuwi->ilmstat; assert(ilmstat != NULL); assert(atomic_load_explicit(&ilmstat->stat, memory_order_relaxed) == NEVER); // should be a poisoned node +#else + ildmod_stat_t* ilmstat = ilmstat_btuwi->ilmstat; #endif - interval_t* interval = ilmstat_btuwi->ilmstat->interval; - uintptr_t s0 = interval->start; - uintptr_t e0 = interval->end; + uintptr_t s0 = ilmstat->interval.start; + uintptr_t e0 = ilmstat->interval.end; uw_recipe_map_cmp_del_bulk_unsynch(ilmstat_btuwi, ilmstat_btuwi); uw_recipe_map_poison(s0, start); uw_recipe_map_poison(end, e0); @@ -461,10 +462,10 @@ uw_recipe_map_repoison(uintptr_t start, uintptr_t end) ilmstat_btuwi_pair_t* ileft = uw_recipe_map_inrange_find(start - 1); if (ileft) { ildmod_stat_t* ilmstat = ileft->ilmstat; - if ((ilmstat->interval->end == start) && + if ((ilmstat->interval.end == start) && (NEVER == atomic_load_explicit(&ilmstat->stat, memory_order_acquire))) { // poisoned interval adjacent on the left - start = ilmstat->interval->start; + start = ilmstat->interval.start; uw_recipe_map_cmp_del_bulk_unsynch(ileft, ileft); } } @@ -473,10 +474,10 @@ uw_recipe_map_repoison(uintptr_t start, uintptr_t end) ilmstat_btuwi_pair_t* iright = uw_recipe_map_inrange_find(end+1); if (iright) { ildmod_stat_t* ilmstat = iright->ilmstat; - if ((ilmstat->interval->start == end) && + if ((ilmstat->interval.start == end) && (NEVER == atomic_load_explicit(&ilmstat->stat, memory_order_acquire))) { // poisoned interval adjacent on the right - end = ilmstat->interval->end; + end = ilmstat->interval.end; uw_recipe_map_cmp_del_bulk_unsynch(iright, iright); } } @@ -657,9 +658,8 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) if (atomic_compare_exchange_strong_explicit(&ilmstat->stat, &oldstat, FORTHCOMING, memory_order_release, memory_order_relaxed)) { // it is my responsibility to build the tree of intervals for the function - interval_t *interval = ilmstat->interval; - void *fcn_start = (void*)interval->start; - void *fcn_end = (void*)interval->end; + void *fcn_start = (void*)ilmstat->interval.start; + void *fcn_end = (void*)ilmstat->interval.end; // potentially crash in this statement. need to save the state current_btuwi = ilm_btui; @@ -691,8 +691,7 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) unwr_info->btuwi = bitree_uwi_inrange(btuwi, (uintptr_t)addr); unwr_info->treestat = READY; unwr_info->lm = ilmstat->loadmod; - interval_t *interval = ilmstat->interval; - unwr_info->interval = *interval; + unwr_info->interval = ilmstat->interval; return true; } From fe1521f820caae691f94e0530601e848321230b0 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 18:31:48 -0500 Subject: [PATCH 37/85] fix typo --- src/tool/hpcrun/unwind/x86-family/x86-and.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-and.c b/src/tool/hpcrun/unwind/x86-family/x86-and.c index 866a13c614..4554e08212 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-and.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-and.c @@ -70,7 +70,7 @@ process_and(xed_decoded_inst_t *xptr, const xed_inst_t *xi, interval_arg_t *iarg //----------------------------------------------------------------------- // we are adjusting the stack pointer via 'and' instruction //----------------------------------------------------------------------- - next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, &xr->reg, , m_alloc); + next = new_ui(nextInsn(iarg, xptr), RA_BP_FRAME, &xr->reg, m_alloc); } } return next; From fde1e1dc747a098e9e04bab256f2727030e8e670 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 18:33:38 -0500 Subject: [PATCH 38/85] Make interval, not a pointer to interval, part of a uwi_t, the unwind interval and recipe pair. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 15 +++++++-------- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 2 +- src/tool/hpcrun/unwind/common/interval_t.c | 10 ---------- src/tool/hpcrun/unwind/common/interval_t.h | 17 ++++------------- .../unwind/generic-libunwind/libunw-unwind.c | 5 ++--- .../hpcrun/unwind/ppc64/ppc64-unwind-interval.c | 5 ++--- .../unwind/x86-family/x86-unwind-interval.c | 8 +++----- 7 files changed, 19 insertions(+), 43 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 30032e5161..a9a817b980 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -43,10 +43,10 @@ bitree_uwi_init() // constructors static uwi_t* -uwi_t_new(interval_t* interval, uw_recipe_t* recipe, mem_alloc m_alloc) +uwi_t_new(uw_recipe_t* recipe, mem_alloc m_alloc) { uwi_t *uwi = m_alloc(sizeof(*uwi)); - uwi->interval = interval; + uwi->interval.start = uwi->interval.end = 0; uwi->recipe = recipe; return uwi; } @@ -63,9 +63,8 @@ bitree_uwi_new(uwi_t *val, static bitree_uwi_t* bitree_uwi_new_node(mem_alloc m_alloc, size_t recipe_size) { - interval_t *interval = interval_t_new(0, 0, m_alloc); uw_recipe_t * recipe = uw_recipe_t_new(m_alloc, recipe_size); - binarytree_t *btuwi = binarytree_new(uwi_t_new(interval, recipe, m_alloc), NULL, NULL, m_alloc); + binarytree_t *btuwi = binarytree_new(uwi_t_new(recipe, m_alloc), NULL, NULL, m_alloc); return (bitree_uwi_t*) btuwi; } @@ -209,7 +208,7 @@ bitree_uwi_interval(bitree_uwi_t *tree) assert(tree != NULL); uwi_t* uwi = bitree_uwi_rootval(tree); assert(uwi != NULL); - return uwi->interval; + return &uwi->interval; } // return the recipe_t value of the tree root @@ -244,7 +243,7 @@ uwi_t_cmp(void* lhs, void* rhs) { uwi_t* uwi1 = (uwi_t*)lhs; uwi_t* uwi2 = (uwi_t*)rhs; - return interval_t_cmp(uwi1->interval, uwi2->interval); + return interval_t_cmp(&uwi1->interval, &uwi2->interval); } // use uwi_t_cmp to find a matching node in a binary search tree of uwi_t @@ -264,7 +263,7 @@ static int uwi_t_inrange(void* lhs, void* address) { uwi_t* uwi = (uwi_t*)lhs; - return interval_t_inrange(uwi->interval, address); + return interval_t_inrange(&uwi->interval, address); } bitree_uwi_t* @@ -286,7 +285,7 @@ uwi_t_tostr(void* uwip, char str[]) { uwi_t *uwi = uwip; char intervalstr[MAX_INTERVAL_STR]; - interval_t_tostr(uwi->interval, intervalstr); + interval_t_tostr(&uwi->interval, intervalstr); char recipestr[MAX_RECIPE_STR]; uw_recipe_tostr(uwi->recipe, recipestr); sprintf(str, "(%s %s)", intervalstr, recipestr); diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index e70f222ef9..4774e3d92a 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -60,7 +60,7 @@ typedef struct unwind_interval_t unwind_interval; typedef struct recipe_s uw_recipe_t; typedef struct uwi_s { - interval_t *interval; + interval_t interval; uw_recipe_t *recipe; } uwi_t; diff --git a/src/tool/hpcrun/unwind/common/interval_t.c b/src/tool/hpcrun/unwind/common/interval_t.c index 2a67d01900..58258dedb2 100644 --- a/src/tool/hpcrun/unwind/common/interval_t.c +++ b/src/tool/hpcrun/unwind/common/interval_t.c @@ -23,16 +23,6 @@ static char Interval_MaxSpaces[] = " "; -// pre-condition: start <= end -interval_t* -interval_t_new(uintptr_t start, uintptr_t end, mem_alloc m_alloc) -{ - interval_t* ptr_interval = (interval_t*)m_alloc(sizeof(interval_t)); - ptr_interval->start = start; - ptr_interval->end = end; - return ptr_interval; -} - int interval_t_cmp(void* lhs, void* rhs) { diff --git a/src/tool/hpcrun/unwind/common/interval_t.h b/src/tool/hpcrun/unwind/common/interval_t.h index a26e134406..5ca7d84450 100644 --- a/src/tool/hpcrun/unwind/common/interval_t.h +++ b/src/tool/hpcrun/unwind/common/interval_t.h @@ -41,15 +41,6 @@ typedef struct interval_s { } interval_t; -//****************************************************************************** -// Constructor -//****************************************************************************** - -// pre-condition: start <= end -interval_t* -interval_t_new(uintptr_t start, uintptr_t end, mem_alloc m_alloc); - - //****************************************************************************** // Comparison //****************************************************************************** @@ -70,12 +61,12 @@ interval_t_cmp(void* p1, void* p2); * check if address is inside of interval, i.e. start <= address < end * * // special boundary case: - * if (address == UINTPTR_MAX && interval->start == UINTPTR_MAX) + * if (address == UINTPTR_MAX && interval.start == UINTPTR_MAX) * return 0; * - * if address < interval->start , i.e. interval is "greater than" address + * if address < interval.start , i.e. interval is "greater than" address * return 1 - * if interval->start <= address < interval.end, i.e. address is inside interval + * if interval.start <= address < interval.end, i.e. address is inside interval * return 0 * else , i.e. interval is "less than" address * returns -1 @@ -92,7 +83,7 @@ interval_t_inrange(void* interval, void* address); * concrete implementation of the abstract val_tostr function of the generic_val class. * pre-condition: ptr_interval is of type ptrinterval_t* * pre-condition: result[] is an array of length >= MAX_INTERVAL_STR - * post-condition: result[] is a string of the form [interval->start, interval->end) + * post-condition: result[] is a string of the form [interval.start, interval.end) */ void interval_t_tostr(void* interval, char result[]); diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 2663ff32f5..774bf1956b 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -292,9 +292,8 @@ int dwarf_reg_states_callback(void *token, bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, size); bitree_uwi_set_rightsubtree(b->latest, u); uwi_t *uwi = bitree_uwi_rootval(u); - interval_t *interval = uwi->interval; - interval->start = (uintptr_t)start_ip; - interval->end = (uintptr_t)end_ip; + uwi->interval.start = (uintptr_t)start_ip; + uwi->interval.end = (uintptr_t)end_ip; memcpy(uwi->recipe, rs, size); b->latest = u; return 0; diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c index a9be57c278..c4e20b1c0c 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c @@ -132,9 +132,8 @@ new_ui(char *startaddr, // filled in when a successor recipe is linked behind this one or // when the end of the enclosing routine is reached // ---------------------------------------------------------------- - interval_t *interval = uwi->interval; - interval->start = (uintptr_t)startaddr; - interval->end = 0; + uwi->interval.start = (uintptr_t)startaddr; + uwi->interval.end = 0; // ---------------------------------------------------------------- // initialize the unwind recipe for the given interval as specified diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index 0725917c95..f69f5efdfb 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -91,8 +91,7 @@ new_ui(char *start, ra_loc ra_status, const x86registers_t *reg, uwi_t *uwi = bitree_uwi_rootval(u); - interval_t *interval = uwi->interval; - interval->start = (uintptr_t)start; + uwi->interval.start = (uintptr_t)start; x86recipe_t* x86recipe = (x86recipe_t*) uwi->recipe; x86recipe->ra_status = ra_status; @@ -122,9 +121,8 @@ fluke_ui(char *loc, unsigned int pos, mem_alloc m_alloc) bitree_uwi_t *u = bitree_uwi_malloc(m_alloc, sizeof(x86recipe_t)); uwi_t *uwi = bitree_uwi_rootval(u); - interval_t *interval = uwi->interval; - interval->start = (uintptr_t)loc; - interval->end = (uintptr_t)loc; + uwi->interval.start = (uintptr_t)loc; + uwi->interval.end = (uintptr_t)loc; x86recipe_t* x86recipe = (x86recipe_t*) uwi->recipe; x86recipe->ra_status = RA_SP_RELATIVE; From 1288e96e159fe92c575d61b2ca019f83a879ccce Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 18:44:38 -0500 Subject: [PATCH 39/85] Drop unused function. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 9 --------- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 4 ---- 2 files changed, 13 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index a9a817b980..a597e10652 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -51,15 +51,6 @@ uwi_t_new(uw_recipe_t* recipe, mem_alloc m_alloc) return uwi; } -bitree_uwi_t* -bitree_uwi_new(uwi_t *val, - bitree_uwi_t *left, bitree_uwi_t *right, mem_alloc m_alloc) -{ - binarytree_t *bt = - binarytree_new(val, (binarytree_t*)left, (binarytree_t*)right, m_alloc); - return (bitree_uwi_t*)bt; -} - static bitree_uwi_t* bitree_uwi_new_node(mem_alloc m_alloc, size_t recipe_size) { diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 4774e3d92a..31a0bb1abf 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -86,10 +86,6 @@ uw_recipe_t_new(mem_alloc m_alloc, size_t recipe_size) return (uw_recipe_t*)m_alloc(recipe_size); } -bitree_uwi_t* -bitree_uwi_new(uwi_t *val, bitree_uwi_t *left, bitree_uwi_t *right, - mem_alloc m_alloc); - /* * Returns a bitree_uwi_t node whose left and right subtree nodes are NULL. * The root value of the returned node is a non-null uwi_t*, which is a pair From 22fdd15dae159a906b0bed2cd2d44db016ee2893 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 19:14:50 -0500 Subject: [PATCH 40/85] Add a soothing typecast. --- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 774bf1956b..1b5223d365 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -309,7 +309,7 @@ libunw_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) unw_init_local_signal(&c, &uc); unw_set_reg(&c, UNW_REG_IP, (intptr_t)beg_insn); void *space[3]; // enough space for any binarytree - bitree_uwi_t *dummy = &space; + bitree_uwi_t *dummy = (bitree_uwi_t*)&space; struct builder b = {m_alloc, dummy}; unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); From 5644c454299faae92df46ab4f7644371f3654c8a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 11 May 2017 19:15:08 -0500 Subject: [PATCH 41/85] Allocate the recipe space and the interval space for the uwi in a single allocation. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 8 +++----- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index a597e10652..7d68924c5c 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -43,19 +43,17 @@ bitree_uwi_init() // constructors static uwi_t* -uwi_t_new(uw_recipe_t* recipe, mem_alloc m_alloc) +uwi_t_new(size_t recipe_size, mem_alloc m_alloc) { - uwi_t *uwi = m_alloc(sizeof(*uwi)); + uwi_t *uwi = m_alloc(sizeof(*uwi) + recipe_size); uwi->interval.start = uwi->interval.end = 0; - uwi->recipe = recipe; return uwi; } static bitree_uwi_t* bitree_uwi_new_node(mem_alloc m_alloc, size_t recipe_size) { - uw_recipe_t * recipe = uw_recipe_t_new(m_alloc, recipe_size); - binarytree_t *btuwi = binarytree_new(uwi_t_new(recipe, m_alloc), NULL, NULL, m_alloc); + binarytree_t *btuwi = binarytree_new(uwi_t_new(recipe_size, m_alloc), NULL, NULL, m_alloc); return (bitree_uwi_t*) btuwi; } diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 31a0bb1abf..b474fa5573 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -61,7 +61,7 @@ typedef struct recipe_s uw_recipe_t; typedef struct uwi_s { interval_t interval; - uw_recipe_t *recipe; + char recipe[]; } uwi_t; typedef struct bitree_uwi_s bitree_uwi_t; From 19a5e8d0151c8235d2699491d3bf14a2092b8c46 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 15 May 2017 15:16:58 -0500 Subject: [PATCH 42/85] Factor out some duplicated code. --- .../hpcrun/unwind/common/binarytree_uwi.c | 12 ++---- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 38 ++++++++++--------- 2 files changed, 24 insertions(+), 26 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 7d68924c5c..b4365e12cc 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -42,18 +42,12 @@ bitree_uwi_init() } // constructors -static uwi_t* -uwi_t_new(size_t recipe_size, mem_alloc m_alloc) -{ - uwi_t *uwi = m_alloc(sizeof(*uwi) + recipe_size); - uwi->interval.start = uwi->interval.end = 0; - return uwi; -} - static bitree_uwi_t* bitree_uwi_new_node(mem_alloc m_alloc, size_t recipe_size) { - binarytree_t *btuwi = binarytree_new(uwi_t_new(recipe_size, m_alloc), NULL, NULL, m_alloc); + uwi_t *uwi = m_alloc(sizeof(*uwi) + recipe_size); + uwi->interval.start = uwi->interval.end = 0; + binarytree_t *btuwi = binarytree_new(uwi, NULL, NULL, m_alloc); return (bitree_uwi_t*) btuwi; } diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index c0c99fca26..06a75ce0a1 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -175,20 +175,31 @@ static __thread ilmstat_btuwi_pair_t *current_btuwi = NULL; // Constructors //****************************************************************************** +static inline ilmstat_btuwi_pair_t * +ilmstat__btuwi_pair_init(ilmstat_btuwi_pair_t *node, + tree_stat_t treestat, + load_module_t *ldmod, + uintptr_t start, + uintptr_t end, + bitree_uwi_t *tree) +{ + ildmod_stat_t *ilmstat = node->ilmstat; + atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); + ilmstat->loadmod = ldmod; + ilmstat->interval.start = start; + ilmstat->interval.end = end; + node->btuwi = tree; + node->next = NULL; + return node; +} + static inline ilmstat_btuwi_pair_t* ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, tree_stat_t treestat, bitree_uwi_t *tree, mem_alloc m_alloc) { ilmstat_btuwi_pair_t* node = m_alloc(sizeof(*node)); - node->next = NULL; - ildmod_stat_t *ilmstat = m_alloc(sizeof(*ilmstat)); - ilmstat->interval.start = start; - ilmstat->interval.end = end; - ilmstat->loadmod = ldmod; - atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); - node->ilmstat = ilmstat; - node->btuwi = tree; - return node; + node->ilmstat = m_alloc(sizeof(*node->ilmstat)); + return ilmstat__btuwi_pair_init(node, treestat, ldmod, start, end, tree); } static ilmstat_btuwi_pair_t* @@ -245,14 +256,7 @@ ilmstat_btuwi_pair_malloc( */ ilmstat_btuwi_pair_t *ans = _lf_ilmstat_btuwi; _lf_ilmstat_btuwi = _lf_ilmstat_btuwi->next; - ans->next = NULL; - ans->btuwi = tree; - ildmod_stat_t *ilmstat = ans->ilmstat; - atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); - ilmstat->loadmod = ldmod; - ilmstat->interval.start = start; - ilmstat->interval.end = end; - return ans; + return ilmstat__btuwi_pair_init(ans, treestat, ldmod, start, end, tree); } //****************************************************************************** From 3723cea31729ba1d8f88a573d57eab20b307910b Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 15 May 2017 15:55:19 -0500 Subject: [PATCH 43/85] Handle the possibility that build_intervals will fail. Let the invoker of build_intervals return false, and set the stat so that other threads awaiting the completion of build_intervals will also return false, instead of spinning forever. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 06a75ce0a1..b7af2678aa 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -670,6 +670,7 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) btuwi_status_t btuwi_stat = build_intervals(fcn_start, fcn_end - fcn_start, my_alloc); if (btuwi_stat.first == NULL) { + atomic_store_explicit(&ilmstat->stat, NEVER, memory_order_release); TMSG(UW_RECIPE_MAP, "BAD build_intervals failed: fcn range %p to %p", fcn_start, fcn_end); return false; @@ -677,16 +678,12 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) ilm_btui->btuwi = bitree_uwi_rebalance(btuwi_stat.first); atomic_store_explicit(&ilmstat->stat, READY, memory_order_release); } - else switch (oldstat) { - case NEVER: + else { + while (FORTHCOMING == (oldstat = atomic_load_explicit(&ilmstat->stat, memory_order_acquire))); + if (oldstat == NEVER) { // addr is in the range of some poisoned load module return false; - case FORTHCOMING: - // invariant: ilm_btui is non-null - while (READY != atomic_load_explicit(&ilmstat->stat, memory_order_acquire)); - break; - default: - break; + } } TMSG(UW_RECIPE_MAP_LOOKUP, "found in unwind tree: addr %p", addr); From 4829dcc311f468c79f9226d2e1fff294bc5dbf5f Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 16 May 2017 16:03:55 -0500 Subject: [PATCH 44/85] Count the new unwind intervals created and give the count to binarytree_rebalance so it doesn't have to count itself. Keep a stat for libunw intervals created. Null terminate the libunw rightward-tree of intervals, in case it's empty. --- src/lib/prof-lean/binarytree.c | 4 ++-- src/lib/prof-lean/binarytree.h | 2 +- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 4 ++-- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 3 ++- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 2 +- .../unwind/generic-libunwind/libunw-unwind.c | 8 +++++++- .../hpcrun/unwind/ppc64/ppc64-unwind-interval.c | 3 +++ .../unwind/x86-family/x86-build-intervals.c | 17 ++++++----------- 8 files changed, 24 insertions(+), 19 deletions(-) diff --git a/src/lib/prof-lean/binarytree.c b/src/lib/prof-lean/binarytree.c index 6bb93077df..102bd1d9bf 100644 --- a/src/lib/prof-lean/binarytree.c +++ b/src/lib/prof-lean/binarytree.c @@ -265,11 +265,11 @@ vector_to_binarytree(binarytree_t *nvec[], int lo, int hi) } binarytree_t * -binarytree_rebalance(binarytree_t * root) +binarytree_rebalance(binarytree_t * root, int count) { if (!root) return root; - int n = binarytree_count(root); + int n = count < 0 ? binarytree_count(root) : count; // collect tree nodes in order into a vector binarytree_t *vec[n]; diff --git a/src/lib/prof-lean/binarytree.h b/src/lib/prof-lean/binarytree.h index 1aaba837dd..bfc312de40 100644 --- a/src/lib/prof-lean/binarytree.h +++ b/src/lib/prof-lean/binarytree.h @@ -161,7 +161,7 @@ vector_to_binarytree(binarytree_t *nvec[], int l, int u); // perform bulk rebalancing by gathering nodes into a vector and // rebuilding the tree from scratch using the same nodes. binarytree_t * -binarytree_rebalance(binarytree_t *tree); +binarytree_rebalance(binarytree_t *tree, int count); // use binarytree_node_cmp to find a matching node in a binary search tree. // NULL is returned diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index b4365e12cc..c5dcfd407d 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -215,9 +215,9 @@ bitree_uwi_count(bitree_uwi_t *tree) // perform bulk rebalancing by gathering nodes into a vector and // rebuilding the tree from scratch using the same nodes. bitree_uwi_t* -bitree_uwi_rebalance(bitree_uwi_t * tree) +bitree_uwi_rebalance(bitree_uwi_t * tree, int count) { - binarytree_t *balanced = binarytree_rebalance((binarytree_t*)tree); + binarytree_t *balanced = binarytree_rebalance((binarytree_t*)tree, count); return (bitree_uwi_t*)balanced; } diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index b474fa5573..f48cdaf4fb 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -70,6 +70,7 @@ typedef struct bitree_uwi_s bitree_uwi_t; typedef struct btuwi_status_s { char *first_undecoded_ins; bitree_uwi_t *first; + int count; int errcode; } btuwi_status_t; @@ -151,7 +152,7 @@ bitree_uwi_count(bitree_uwi_t * tree); // perform bulk rebalancing by gathering nodes into a vector and // rebuilding the tree from scratch using the same nodes. bitree_uwi_t * -bitree_uwi_rebalance(bitree_uwi_t * tree); +bitree_uwi_rebalance(bitree_uwi_t * tree, int count); // use uwi_t_cmp to find a matching node in a binary search tree of uwi_t // empty tree is returned if no match is found. diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index b7af2678aa..042ce2fc2d 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -675,7 +675,7 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) fcn_start, fcn_end); return false; } - ilm_btui->btuwi = bitree_uwi_rebalance(btuwi_stat.first); + ilm_btui->btuwi = bitree_uwi_rebalance(btuwi_stat.first, btuwi_stat.count); atomic_store_explicit(&ilmstat->stat, READY, memory_order_release); } else { diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 1b5223d365..2ba39c52f1 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -97,6 +97,7 @@ #include #include #include +#include #include #include #include @@ -281,6 +282,7 @@ struct builder { mem_alloc m_alloc; bitree_uwi_t *latest; + int count; }; int dwarf_reg_states_callback(void *token, @@ -296,6 +298,8 @@ int dwarf_reg_states_callback(void *token, uwi->interval.end = (uintptr_t)end_ip; memcpy(uwi->recipe, rs, size); b->latest = u; + b->count++; + hpcrun_stats_num_unwind_intervals_total_inc(); return 0; } @@ -310,11 +314,13 @@ libunw_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) unw_set_reg(&c, UNW_REG_IP, (intptr_t)beg_insn); void *space[3]; // enough space for any binarytree bitree_uwi_t *dummy = (bitree_uwi_t*)&space; - struct builder b = {m_alloc, dummy}; + struct builder b = {m_alloc, dummy, 0}; unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); + bitree_uwi_set_rightsubtree(b.latest, NULL); btuwi_status_t stat; stat.first_undecoded_ins = NULL; + stat.count = b.count; stat.errcode = 0; stat.first = bitree_uwi_rightsubtree(dummy); diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c index c4e20b1c0c..4d61aa9df4 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind-interval.c @@ -513,6 +513,7 @@ ppc64_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) new_ui(beg_insn, SPTy_Reg, RATy_Reg, PPC_REG_SP, PPC_REG_LR, m_alloc); unwind_interval* ui = beg_ui; unwind_interval* canon_ui = beg_ui; + int count = 1; uint32_t* cur_insn = (uint32_t*) beg_insn; uint32_t* end_insn = (uint32_t*) (beg_insn + len); @@ -684,6 +685,7 @@ ppc64_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) if (prev_ui != ui) { link_ui(prev_ui, ui); + count++; } cur_insn++; @@ -693,6 +695,7 @@ ppc64_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) btuwi_status_t stat; stat.first_undecoded_ins = NULL; + stat.count = count; stat.errcode = 0; stat.first = beg_ui; diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index 9f1d939b93..66445073a1 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -120,6 +120,7 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) void *first_ins = ins; void *end = ins + len; + int count = 1; iarg.beg = first_ins; iarg.end = end; @@ -174,6 +175,7 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) if (next != iarg.current) { link_ui(iarg.current, next); iarg.current = next; + count++; if (noisy) dump_ui(iarg.current, true); } @@ -183,7 +185,10 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) UWI_END_ADDR(iarg.current) = (uintptr_t)end; - set_status(&status, iarg.ins, error_count, iarg.first); + status.first_undecoded_ins = iarg.ins; + status.count = count; + status.errcode = error_count; + status.first = iarg.first; x86_fix_unwind_intervals(iarg.beg, len, &status); x86_coalesce_unwind_intervals(status.first); @@ -206,16 +211,6 @@ x86_ui_same_data(x86recipe_t *proto, x86recipe_t *cand) (proto->reg.bp_bp_pos == cand->reg.bp_bp_pos) ); } - -static void -set_status(btuwi_status_t *status, char *fui, int errcode, - unwind_interval *first) -{ - status->first_undecoded_ins = fui; - status->errcode = errcode; - status->first = first; -} - // NOTE: following routine has an additional side effect! // the presence of tail calls is determined at interval building time, // (and noted in the interval where it is detected). From ce44f8f3864a5088147bb4d9252bc34e9b713e7a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 22 May 2017 16:21:04 -0500 Subject: [PATCH 45/85] Avoid an extra atomic load --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 3a5a75c603..1d688740a4 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -682,7 +682,8 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) atomic_store_explicit(&ilmstat->stat, READY, memory_order_release); } else { - while (FORTHCOMING == (oldstat = atomic_load_explicit(&ilmstat->stat, memory_order_acquire))); + while (FORTHCOMING == oldstat) + oldstat = atomic_load_explicit(&ilmstat->stat, memory_order_acquire); if (oldstat == NEVER) { // addr is in the range of some poisoned load module return false; From 4d4c84c393ffe5cc5f76ece56abc39e633169f0a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 22 May 2017 16:53:41 -0500 Subject: [PATCH 46/85] drop some unused functions. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 7 ------- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 11 ----------- 2 files changed, 18 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index c5dcfd407d..7f65cdd184 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -205,13 +205,6 @@ bitree_uwi_recipe(bitree_uwi_t *tree) return uwi->recipe; } -// count the number of nodes in the binary tree. -int -bitree_uwi_count(bitree_uwi_t *tree) -{ - return binarytree_count((binarytree_t *)tree); -} - // perform bulk rebalancing by gathering nodes into a vector and // rebuilding the tree from scratch using the same nodes. bitree_uwi_t* diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index f48cdaf4fb..90570a4275 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -80,13 +80,6 @@ typedef struct btuwi_status_s { void bitree_uwi_init(); -// constructors -static inline uw_recipe_t* -uw_recipe_t_new(mem_alloc m_alloc, size_t recipe_size) -{ - return (uw_recipe_t*)m_alloc(recipe_size); -} - /* * Returns a bitree_uwi_t node whose left and right subtree nodes are NULL. * The root value of the returned node is a non-null uwi_t*, which is a pair @@ -145,10 +138,6 @@ bitree_uwi_interval(bitree_uwi_t *tree); uw_recipe_t* bitree_uwi_recipe(bitree_uwi_t *tree); -// count the number of nodes in the binary tree. -int -bitree_uwi_count(bitree_uwi_t * tree); - // perform bulk rebalancing by gathering nodes into a vector and // rebuilding the tree from scratch using the same nodes. bitree_uwi_t * From 2eea9616b88fe2f454731ebd8deb612b68366e39 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 30 May 2017 17:30:45 -0500 Subject: [PATCH 47/85] Drop unused function. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 7 ------- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 3 --- 2 files changed, 10 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 7f65cdd184..7c789976c3 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -324,13 +324,6 @@ bitree_uwi_is_inorder(bitree_uwi_t *tree) } -bitree_uwi_t* -bitree_uwi_insert(bitree_uwi_t *tree, uwi_t *val, mem_alloc m_alloc) -{ - return (bitree_uwi_t*)binarytree_insert((binarytree_t*)tree, - uwi_t_cmp, val, m_alloc); -} - void bitree_uwi_leftmostleaf_to_root(bitree_uwi_t **tree) { diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 90570a4275..66050ca79b 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -198,9 +198,6 @@ bool bitree_uwi_is_inorder(bitree_uwi_t *tree); -bitree_uwi_t * -bitree_uwi_insert(bitree_uwi_t *tree, uwi_t *val, mem_alloc m_alloc); - void bitree_uwi_leftmostleaf_to_root(bitree_uwi_t **tree); From 4a4ac9113501a540ee56ae6ed29b628720219b65 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 30 May 2017 18:08:41 -0500 Subject: [PATCH 48/85] Drop some ununsed functions. Combine the allocation of tree pointers and unwind interval data into a single allocation. --- src/lib/prof-lean/binarytree.c | 31 ++++++------------- src/lib/prof-lean/binarytree.h | 12 ++----- .../hpcrun/unwind/common/binarytree_uwi.c | 16 +++------- .../hpcrun/unwind/common/binarytree_uwi.h | 5 --- 4 files changed, 17 insertions(+), 47 deletions(-) diff --git a/src/lib/prof-lean/binarytree.c b/src/lib/prof-lean/binarytree.c index 102bd1d9bf..908561c594 100644 --- a/src/lib/prof-lean/binarytree.c +++ b/src/lib/prof-lean/binarytree.c @@ -157,13 +157,11 @@ subtree_tostr2(binarytree_t *subtree, val_tostr tostr, char valstr[], binarytree_t * -binarytree_new(void *value, binarytree_t *left, binarytree_t *right, - mem_alloc m_alloc) +binarytree_new(size_t size, mem_alloc m_alloc) { - binarytree_t *node = (binarytree_t *)m_alloc(sizeof(binarytree_t)); - node->right = right; - node->left = left; - node->val = value; + binarytree_t *node = (binarytree_t *)m_alloc(sizeof(binarytree_t) + size); + node->right = NULL; + node->left = NULL; return node; } @@ -206,15 +204,6 @@ binarytree_rightsubtree(binarytree_t *tree) return tree->right; } -void -binarytree_set_rootval( - binarytree_t *tree, - void* rootval) -{ - assert(tree != NULL); - tree->val = rootval; -} - void binarytree_set_leftsubtree( binarytree_t *tree, @@ -372,16 +361,16 @@ binarytree_is_inorder(binarytree_t *root, val_cmp compare) } binarytree_t * -binarytree_insert(binarytree_t *root, val_cmp compare, void *val, mem_alloc m_alloc) +binarytree_insert(binarytree_t *root, val_cmp compare, binarytree_t *key) { if(!root) { - return binarytree_new(val, NULL, NULL, m_alloc); // empty tree case + return key; // empty tree case } - else if (compare(root->val, val) > 0) { - root->left = binarytree_insert(root->left, compare, val, m_alloc); + else if (compare(root->val, key->val) > 0) { + root->left = binarytree_insert(root->left, compare, key); } - else if (compare(root->val, val) < 0) { - root->right = binarytree_insert(root->right, compare, val, m_alloc); + else if (compare(root->val, key->val) < 0) { + root->right = binarytree_insert(root->right, compare, key); } return root; } diff --git a/src/lib/prof-lean/binarytree.h b/src/lib/prof-lean/binarytree.h index bfc312de40..eb423c1ec2 100644 --- a/src/lib/prof-lean/binarytree.h +++ b/src/lib/prof-lean/binarytree.h @@ -98,15 +98,14 @@ typedef struct binarytree_s binarytree_t; typedef struct binarytree_s { struct binarytree_s *left; struct binarytree_s *right; - void* val; + char val[]; } binarytree_t; #endif // constructors binarytree_t * -binarytree_new(void* value, binarytree_t *left, binarytree_t *right, - mem_alloc m_alloc); +binarytree_new(size_t size, mem_alloc m_alloc); // destructor void binarytree_del(binarytree_t **root, mem_free m_free); @@ -131,11 +130,6 @@ binarytree_rightsubtree(binarytree_t *tree); * Settors */ void -binarytree_set_rootval( - binarytree_t *tree, - void* rootval); - -void binarytree_set_leftsubtree( binarytree_t *tree, binarytree_t* subtree); @@ -202,7 +196,7 @@ binarytree_is_inorder(binarytree_t *tree, val_cmp compare); binarytree_t * -binarytree_insert(binarytree_t *tree, val_cmp compare, void *val, mem_alloc m_alloc); +binarytree_insert(binarytree_t *tree, val_cmp compare, binarytree_t *key); /* * if the tree is not NULL, remove the leftmost left node from the tree, make it diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 7c789976c3..4369f9a291 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -45,10 +45,10 @@ bitree_uwi_init() static bitree_uwi_t* bitree_uwi_new_node(mem_alloc m_alloc, size_t recipe_size) { - uwi_t *uwi = m_alloc(sizeof(*uwi) + recipe_size); + bitree_uwi_t *btuwi = (bitree_uwi_t *)binarytree_new(sizeof(uwi_t) + recipe_size, m_alloc); + uwi_t* uwi = bitree_uwi_rootval(btuwi); uwi->interval.start = uwi->interval.end = 0; - binarytree_t *btuwi = binarytree_new(uwi, NULL, NULL, m_alloc); - return (bitree_uwi_t*) btuwi; + return btuwi; } static void @@ -159,14 +159,6 @@ bitree_uwi_rightsubtree(bitree_uwi_t *tree) return (bitree_uwi_t*) binarytree_rightsubtree((binarytree_t*) tree); } -void -bitree_uwi_set_rootval( - bitree_uwi_t *tree, - uwi_t* rootval) -{ - binarytree_set_rootval((binarytree_t*) tree, rootval); -} - void bitree_uwi_set_leftsubtree( bitree_uwi_t *tree, @@ -202,7 +194,7 @@ bitree_uwi_recipe(bitree_uwi_t *tree) assert(tree != NULL); uwi_t* uwi = bitree_uwi_rootval(tree); assert(uwi != NULL); - return uwi->recipe; + return (uw_recipe_t *)uwi->recipe; } // perform bulk rebalancing by gathering nodes into a vector and diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 66050ca79b..acfe71c9a9 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -113,11 +113,6 @@ bitree_uwi_leftsubtree(bitree_uwi_t *tree); bitree_uwi_t* bitree_uwi_rightsubtree(bitree_uwi_t *tree); -void -bitree_uwi_set_rootval( - bitree_uwi_t *tree, - uwi_t* rootval); - void bitree_uwi_set_leftsubtree( bitree_uwi_t *tree, From 4da53caf7d164ba834d6f8f73e4bbdf0b7a3f29e Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 30 May 2017 18:15:03 -0500 Subject: [PATCH 49/85] Deleting a binary tree no longer requires a separate freeing of the node value. --- src/lib/prof-lean/binarytree.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/lib/prof-lean/binarytree.c b/src/lib/prof-lean/binarytree.c index 908561c594..16911f44d7 100644 --- a/src/lib/prof-lean/binarytree.c +++ b/src/lib/prof-lean/binarytree.c @@ -171,9 +171,6 @@ void binarytree_del(binarytree_t **root, mem_free m_free) if (*root) { binarytree_del(&((*root)->left), m_free); binarytree_del(&((*root)->right), m_free); - if ((*root)->val) { - m_free((*root)->val); - } m_free(*root); *root = NULL; } From c652e5c23546bbbbb9f6716e8fec1f3ac0afc4f8 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Wed, 31 May 2017 15:54:47 -0500 Subject: [PATCH 50/85] Balance the tree of right children without data copying. --- src/lib/prof-lean/binarytree.c | 13 +++++++++++++ src/lib/prof-lean/binarytree.h | 5 +++++ src/tool/hpcrun/unwind/common/binarytree_uwi.c | 2 +- 3 files changed, 19 insertions(+), 1 deletion(-) diff --git a/src/lib/prof-lean/binarytree.c b/src/lib/prof-lean/binarytree.c index 16911f44d7..0475155836 100644 --- a/src/lib/prof-lean/binarytree.c +++ b/src/lib/prof-lean/binarytree.c @@ -265,6 +265,19 @@ binarytree_rebalance(binarytree_t * root, int count) return vector_to_binarytree(vec, 0, n - 1); } +binarytree_t * +binarytree_list_to_tree(binarytree_t ** head, int count) +{ + if (count == 0) + return NULL; + int mid = count >> 1; + binarytree_t *left = binarytree_list_to_tree(head, mid); + binarytree_t *root = *head; + root->left = left; + *head = (*head)->right; + root->right = binarytree_list_to_tree(head, count - mid - 1); + return root; +} binarytree_t * binarytree_find(binarytree_t * root, val_cmp matches, void *val) diff --git a/src/lib/prof-lean/binarytree.h b/src/lib/prof-lean/binarytree.h index eb423c1ec2..52fb8ce2da 100644 --- a/src/lib/prof-lean/binarytree.h +++ b/src/lib/prof-lean/binarytree.h @@ -157,6 +157,11 @@ vector_to_binarytree(binarytree_t *nvec[], int l, int u); binarytree_t * binarytree_rebalance(binarytree_t *tree, int count); +// given a tree that is a list, with all left children empty, +// restructure to make a balanced tree +binarytree_t * +binarytree_list_to_tree(binarytree_t ** head, int count); + // use binarytree_node_cmp to find a matching node in a binary search tree. // NULL is returned // if no match is found. diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 4369f9a291..b7caaf5401 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -202,7 +202,7 @@ bitree_uwi_recipe(bitree_uwi_t *tree) bitree_uwi_t* bitree_uwi_rebalance(bitree_uwi_t * tree, int count) { - binarytree_t *balanced = binarytree_rebalance((binarytree_t*)tree, count); + binarytree_t *balanced = binarytree_list_to_tree((binarytree_t**)&tree, count); return (bitree_uwi_t*)balanced; } From 0a316e75e3bd7675c875e115cc9aaa4584744f42 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 1 Jun 2017 16:26:06 -0500 Subject: [PATCH 51/85] Represent the thread-specific free lists of tree nodes as right-linked lists, and represent the global free list as a left-linked list of heads of right-linked lists. On deleting a tree, flatten it to a right-linked list. On allocating new nodes, allocate a right-linked list. Discard some peculiar tree operations that served only the previous method of free list maintenance, in which free nodes were arranged in arbitrary trees. --- src/lib/prof-lean/binarytree.c | 93 +++++++------------ src/lib/prof-lean/binarytree.h | 37 ++------ .../hpcrun/unwind/common/binarytree_uwi.c | 89 ++++-------------- .../hpcrun/unwind/common/binarytree_uwi.h | 28 ++---- .../unwind/generic-libunwind/libunw-unwind.c | 2 +- 5 files changed, 66 insertions(+), 183 deletions(-) diff --git a/src/lib/prof-lean/binarytree.c b/src/lib/prof-lean/binarytree.c index 0475155836..0d1f59bffd 100644 --- a/src/lib/prof-lean/binarytree.c +++ b/src/lib/prof-lean/binarytree.c @@ -279,6 +279,38 @@ binarytree_list_to_tree(binarytree_t ** head, int count) return root; } +void +binarytree_listify_helper(binarytree_t *root, binarytree_t **tail) +{ + if (root != NULL) { + binarytree_listify_helper(root->left, tail); + root->left = NULL; + *tail = root; + tail = &root->right; + binarytree_listify_helper(root->right, tail); + } +} + +binarytree_t * +binarytree_listify(binarytree_t *root) +{ + binarytree_t *head; + binarytree_listify_helper(root, &head); + return head; +} + +binarytree_t * +binarytree_listalloc(size_t elt_size, int num_elts, mem_alloc m_alloc) +{ + binarytree_t *head; + binarytree_t **tail = &head; + while (num_elts--) { + *tail = binarytree_new(elt_size, m_alloc); + tail = &(*tail)->right; + } + return head; +} + binarytree_t * binarytree_find(binarytree_t * root, val_cmp matches, void *val) { @@ -338,38 +370,6 @@ binarytree_height(binarytree_t *root) return 0; } -bool -binarytree_is_balanced(binarytree_t *root) -{ - if (root) { - int ldepth = binarytree_height(root->left); - int rdepth = binarytree_height(root->right); - if (rdepth - ldepth > 1) return 0; - if (!binarytree_is_balanced(root->left)) return 0; - if (!binarytree_is_balanced(root->right)) return 0; - } - return 1; -} - -bool -binarytree_is_inorder(binarytree_t *root, val_cmp compare) -{ - if (!root) return true; // empty tree is trivially in order - if (root->left) { - // value at node is smaller than left child's - if (compare(root->left->val, root->val) >= 0) return false; - // left subtree is not in order - if (!binarytree_is_inorder(root->left, compare)) return false; - } - if (root->right) { - // value at node is larger than right child's - if (compare(root->right->val, root->val) <= 0) return false; - // right subtree is not in order - if (!binarytree_is_inorder(root->right, compare)) return false; - } - return true; // tree is in order -} - binarytree_t * binarytree_insert(binarytree_t *root, val_cmp compare, binarytree_t *key) { @@ -384,32 +384,3 @@ binarytree_insert(binarytree_t *root, val_cmp compare, binarytree_t *key) } return root; } - -binarytree_t* -binarytree_remove_leftmostleaf(binarytree_t **tree) -{ - if (*tree == NULL) { - return NULL; - } - if ((*tree)->left){ - return binarytree_remove_leftmostleaf(&((*tree)->left)); - } - else if ((*tree)->right) { - return binarytree_remove_leftmostleaf(&((*tree)->right)); - } - else { - binarytree_t *rml = *tree; - *tree = NULL; - return rml; - } -} - -void -binarytree_leftmostleaf_to_root(binarytree_t **tree) -{ - if (*tree) { - binarytree_t *lml = binarytree_remove_leftmostleaf(tree); - lml->left = *tree; - *tree = lml; - } -} diff --git a/src/lib/prof-lean/binarytree.h b/src/lib/prof-lean/binarytree.h index 52fb8ce2da..4eeab30e44 100644 --- a/src/lib/prof-lean/binarytree.h +++ b/src/lib/prof-lean/binarytree.h @@ -162,6 +162,14 @@ binarytree_rebalance(binarytree_t *tree, int count); binarytree_t * binarytree_list_to_tree(binarytree_t ** head, int count); +// restructure a binary tree so that all its left children are null +binarytree_t * +binarytree_listify(binarytree_t *root); + +// allocate a binary tree so that all its left children are null +binarytree_t * +binarytree_listalloc(size_t elt_size, int num_elts, mem_alloc m_alloc); + // use binarytree_node_cmp to find a matching node in a binary search tree. // NULL is returned // if no match is found. @@ -186,36 +194,7 @@ binarytree_tostring_indent(binarytree_t *tree, val_tostr tostr, int binarytree_height(binarytree_t *tree); -// an empty binary tree is balanced. -// a non-empty binary tree is balanced iff the difference in height between -// the left and right subtrees is less or equal to 1. -bool -binarytree_is_balanced(binarytree_t *tree); - -// an empty binary tree is in order -// an non-empty binary tree is in order iff -// its left subtree is in order and all of its elements are < the root element -// its right subtree is in order and all of its elements are > the root element -bool -binarytree_is_inorder(binarytree_t *tree, val_cmp compare); - - binarytree_t * binarytree_insert(binarytree_t *tree, val_cmp compare, binarytree_t *key); -/* - * if the tree is not NULL, remove the leftmost left node from the tree, make it - * the new root of the tree, and set its left subtree to the old tree. - * if the tree is NULL, do nothing. - */ -void -binarytree_leftmostleaf_to_root(binarytree_t **tree); - -/* - * if the tree != NULL, remove and return the leftmost leaf node from the tree, - * otherwise return NULL. - */ -binarytree_t* -binarytree_remove_leftmostleaf(binarytree_t **tree); - #endif diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index b7caaf5401..c89cc6d652 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -42,35 +42,13 @@ bitree_uwi_init() } // constructors -static bitree_uwi_t* -bitree_uwi_new_node(mem_alloc m_alloc, size_t recipe_size) -{ - bitree_uwi_t *btuwi = (bitree_uwi_t *)binarytree_new(sizeof(uwi_t) + recipe_size, m_alloc); - uwi_t* uwi = bitree_uwi_rootval(btuwi); - uwi->interval.start = uwi->interval.end = 0; - return btuwi; -} - -static void -bitree_uwi_add_nodes_to_lft( - mem_alloc m_alloc, - size_t recipe_size) -{ - bitree_uwi_t *btuwi = bitree_uwi_new_node(m_alloc, recipe_size); - bitree_uwi_t * current = btuwi; - for (int i = 1; i < NUM_NODES; i++) { - bitree_uwi_t *new_node = bitree_uwi_new_node(m_alloc, recipe_size); - bitree_uwi_set_leftsubtree(current, new_node); - current = new_node; - } - bitree_uwi_set_rightsubtree(btuwi, _lf_uwi_tree); - _lf_uwi_tree = btuwi; -} - static bitree_uwi_t * bitree_uwi_alloc_from_lft() { - return bitree_uwi_remove_leftmostleaf(&_lf_uwi_tree); + bitree_uwi_t *top = _lf_uwi_tree; + _lf_uwi_tree = bitree_uwi_rightsubtree(top); + bitree_uwi_set_rightsubtree(top, NULL); + return top; } static void @@ -83,19 +61,17 @@ bitree_uwi_populate_lft( if (acquired) { // the global free list is locked, so use it if (GF_uwi_tree) { - bitree_uwi_t *btuwi = GF_uwi_tree; - GF_uwi_tree = bitree_uwi_rightsubtree(GF_uwi_tree); + _lf_uwi_tree = GF_uwi_tree; + GF_uwi_tree = bitree_uwi_leftsubtree(_lf_uwi_tree); mcs_unlock(&GFT_lock, &me); - bitree_uwi_set_rightsubtree(btuwi, _lf_uwi_tree); - _lf_uwi_tree = btuwi; + bitree_uwi_set_leftsubtree(_lf_uwi_tree, NULL); } else { mcs_unlock(&GFT_lock, &me); } } - if (!_lf_uwi_tree) { - bitree_uwi_add_nodes_to_lft(m_alloc, recipe_size); - } + if (!_lf_uwi_tree) + _lf_uwi_tree = (bitree_uwi_t *)binarytree_listalloc(recipe_size, NUM_NODES, m_alloc); } bitree_uwi_t* @@ -127,13 +103,12 @@ bitree_uwi_del(bitree_uwi_t **tree, mem_free m_free) void bitree_uwi_free(bitree_uwi_t *tree) { if(!tree) return; - bitree_uwi_leftmostleaf_to_root(&tree); + tree = bitree_uwi_flatten(tree); // link to the global free unwind interval tree: mcs_node_t me; mcs_lock(&GFT_lock, &me); - bitree_uwi_set_rightsubtree(tree, GF_uwi_tree); + bitree_uwi_set_leftsubtree(tree, GF_uwi_tree); GF_uwi_tree = tree; - bitree_uwi_set_rightsubtree(tree, NULL); mcs_unlock(&GFT_lock, &me); } @@ -197,8 +172,7 @@ bitree_uwi_recipe(bitree_uwi_t *tree) return (uw_recipe_t *)uwi->recipe; } -// perform bulk rebalancing by gathering nodes into a vector and -// rebuilding the tree from scratch using the same nodes. +// change a tree of all right children into a balanced tree bitree_uwi_t* bitree_uwi_rebalance(bitree_uwi_t * tree, int count) { @@ -206,6 +180,13 @@ bitree_uwi_rebalance(bitree_uwi_t * tree, int count) return (bitree_uwi_t*)balanced; } +bitree_uwi_t* +bitree_uwi_flatten(bitree_uwi_t * tree) +{ + binarytree_t *flattened = binarytree_listify((binarytree_t*)tree); + return (bitree_uwi_t*)flattened; +} + static int uwi_t_cmp(void* lhs, void* rhs) { @@ -295,35 +276,3 @@ bitree_uwi_height(bitree_uwi_t *tree) { return binarytree_height((binarytree_t*)tree); } - -// an empty binary tree is balanced. -// a non-empty binary tree is balanced iff the difference in height between -// the left and right subtrees is less or equal to 1. -bool -bitree_uwi_is_balanced(bitree_uwi_t *tree) -{ - return binarytree_is_balanced((binarytree_t*)tree); -} - -// an empty binary tree is in order -// an non-empty binary tree is in order iff -// its left subtree is in order and all of its elements are < the root element -// its right subtree is in order and all of its elements are > the root element -bool -bitree_uwi_is_inorder(bitree_uwi_t *tree) -{ - return binarytree_is_inorder((binarytree_t*)tree, uwi_t_cmp); -} - - -void -bitree_uwi_leftmostleaf_to_root(bitree_uwi_t **tree) -{ - binarytree_leftmostleaf_to_root((binarytree_t**)tree); -} - -bitree_uwi_t* -bitree_uwi_remove_leftmostleaf(bitree_uwi_t **tree) -{ - return (bitree_uwi_t*) binarytree_remove_leftmostleaf((binarytree_t**)tree); -} diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index acfe71c9a9..5c6dba7020 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -133,11 +133,15 @@ bitree_uwi_interval(bitree_uwi_t *tree); uw_recipe_t* bitree_uwi_recipe(bitree_uwi_t *tree); -// perform bulk rebalancing by gathering nodes into a vector and -// rebuilding the tree from scratch using the same nodes. +// given a tree that is a list, with all left children empty, +// restructure to make a balanced tree bitree_uwi_t * bitree_uwi_rebalance(bitree_uwi_t * tree, int count); +// restructure a binary tree so that all its left children are null +bitree_uwi_t* +bitree_uwi_flatten(bitree_uwi_t * tree); + // use uwi_t_cmp to find a matching node in a binary search tree of uwi_t // empty tree is returned if no match is found. bitree_uwi_t* @@ -179,24 +183,4 @@ bitree_uwi_print(bitree_uwi_t *tree); int bitree_uwi_height(bitree_uwi_t *tree); -// an empty binary tree is balanced. -// a non-empty binary tree is balanced iff the difference in height between -// the left and right subtrees is less or equal to 1. -bool -bitree_uwi_is_balanced(bitree_uwi_t *tree); - -// an empty binary tree is in order -// an non-empty binary tree is in order iff -// its left subtree is in order and all of its elements are < the root element -// its right subtree is in order and all of its elements are > the root element -bool -bitree_uwi_is_inorder(bitree_uwi_t *tree); - - -void -bitree_uwi_leftmostleaf_to_root(bitree_uwi_t **tree); - -bitree_uwi_t* -bitree_uwi_remove_leftmostleaf(bitree_uwi_t **tree); - #endif /* __BINARYTREE_UWI_H__ */ diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 2ba39c52f1..2bb617abd5 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -291,7 +291,7 @@ int dwarf_reg_states_callback(void *token, unw_word_t start_ip, unw_word_t end_ip) { struct builder *b = token; - bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, size); + bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, sizeof(uwi_t) + size); bitree_uwi_set_rightsubtree(b->latest, u); uwi_t *uwi = bitree_uwi_rootval(u); uwi->interval.start = (uintptr_t)start_ip; From ed528186d156f2499f48f1ec4bd803e8b9b14be4 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 1 Jun 2017 16:32:42 -0500 Subject: [PATCH 52/85] Drop unused function. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 10 ---------- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 7 ------- 2 files changed, 17 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index c89cc6d652..906a906de5 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -266,13 +266,3 @@ bitree_uwi_tostring_indent(bitree_uwi_t *tree, char *indents, binarytree_tostring_indent((binarytree_t*)tree, uwi_t_tostr, uwibuff, indents, treestr); } - -// compute the height of the binary tree. -// the height of an empty tree is 0. -// the height of an non-empty tree is 1+ the larger of the height of the left subtree -// and the right subtree. -int -bitree_uwi_height(bitree_uwi_t *tree) -{ - return binarytree_height((binarytree_t*)tree); -} diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 5c6dba7020..e58f567d49 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -176,11 +176,4 @@ bitree_uwi_tostring_indent(bitree_uwi_t *tree, char *indents, char treestr[]); void bitree_uwi_print(bitree_uwi_t *tree); -// compute the height of the binary tree. -// the height of an empty tree is 0. -// the height of an non-empty tree is 1+ the larger of the height of the left subtree -// and the right subtree. -int -bitree_uwi_height(bitree_uwi_t *tree); - #endif /* __BINARYTREE_UWI_H__ */ From 88a127603dc6a21e77329b4a153ca47c568c321a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 1 Jun 2017 17:12:17 -0500 Subject: [PATCH 53/85] A fix to memory allocation size applied to libunw ought to have been applied to common instead. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 6 +++--- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 906a906de5..a575b1ddb2 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -54,7 +54,7 @@ bitree_uwi_alloc_from_lft() static void bitree_uwi_populate_lft( mem_alloc m_alloc, - size_t recipe_size) + size_t uwi_recipe_size) { mcs_node_t me; bool acquired = mcs_trylock(&GFT_lock, &me); @@ -71,7 +71,7 @@ bitree_uwi_populate_lft( } } if (!_lf_uwi_tree) - _lf_uwi_tree = (bitree_uwi_t *)binarytree_listalloc(recipe_size, NUM_NODES, m_alloc); + _lf_uwi_tree = (bitree_uwi_t *)binarytree_listalloc(uwi_recipe_size, NUM_NODES, m_alloc); } bitree_uwi_t* @@ -80,7 +80,7 @@ bitree_uwi_malloc( size_t recipe_size) { if (!_lf_uwi_tree) { - bitree_uwi_populate_lft(m_alloc, recipe_size); + bitree_uwi_populate_lft(m_alloc, sizeof(uwi_t) + recipe_size); } #if BTUWI_DEBUG diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 2bb617abd5..2ba39c52f1 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -291,7 +291,7 @@ int dwarf_reg_states_callback(void *token, unw_word_t start_ip, unw_word_t end_ip) { struct builder *b = token; - bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, sizeof(uwi_t) + size); + bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, size); bitree_uwi_set_rightsubtree(b->latest, u); uwi_t *uwi = bitree_uwi_rootval(u); uwi->interval.start = (uintptr_t)start_ip; From c88420ee3327b2a7f6252cbec649d4fd94b7dafc Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Thu, 1 Jun 2017 18:05:08 -0500 Subject: [PATCH 54/85] Fix interval count to consider the effect of coalescing intervals. --- .../hpcrun/unwind/x86-family/x86-build-intervals.c | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index 66445073a1..b2fea94e87 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -82,7 +82,7 @@ static void set_status(btuwi_status_t *status, char *fui, int errcode, btuwi_status_t x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc); -static void x86_coalesce_unwind_intervals(unwind_interval *ui); +static int x86_coalesce_unwind_intervals(unwind_interval *ui); /****************************************************************************** * interface operations @@ -186,12 +186,11 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) UWI_END_ADDR(iarg.current) = (uintptr_t)end; status.first_undecoded_ins = iarg.ins; - status.count = count; status.errcode = error_count; status.first = iarg.first; x86_fix_unwind_intervals(iarg.beg, len, &status); - x86_coalesce_unwind_intervals(status.first); + status.count = count - x86_coalesce_unwind_intervals(status.first); return status; } @@ -225,9 +224,10 @@ x86_ui_same_data(x86recipe_t *proto, x86recipe_t *cand) // building time. If more routine-level information items come up, the reduction side // effect of the coalesce routine can be expanded to accomodate. -static void +static int x86_coalesce_unwind_intervals(unwind_interval *ui) { + int num_freed = 0; TMSG(COALESCE,"coalescing interval list starting @ %p",ui); if (! ui) { TMSG(COALESCE," --interval list empty, so no work"); @@ -261,6 +261,7 @@ x86_coalesce_unwind_intervals(unwind_interval *ui) // disconnect ui's right subtree and free ui: bitree_uwi_set_rightsubtree(ui, NULL); bitree_uwi_free(ui); + ++num_freed; ui = current; TMSG(COALESCE,"Intervals match! Extended interval:"); @@ -277,7 +278,7 @@ x86_coalesce_unwind_intervals(unwind_interval *ui) // update first interval with collected info UWI_RECIPE(first)->has_tail_calls = routine_has_tail_calls; - return; + return num_freed; } //*************************** Debug stuff **************************** From a5ee7849df58ea28048488fc01d60135c392ab2c Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 2 Jun 2017 01:24:52 -0500 Subject: [PATCH 55/85] Tweak the hack that lets me avoid special-casing the saving of the first tree node, to save a little space. --- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 2ba39c52f1..b3eac94822 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -312,8 +312,8 @@ libunw_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) unw_cursor_t c; unw_init_local_signal(&c, &uc); unw_set_reg(&c, UNW_REG_IP, (intptr_t)beg_insn); - void *space[3]; // enough space for any binarytree - bitree_uwi_t *dummy = (bitree_uwi_t*)&space; + void *space[2]; // enough space for any binarytree + bitree_uwi_t *dummy = (bitree_uwi_t*)space; struct builder b = {m_alloc, dummy, 0}; unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); bitree_uwi_set_rightsubtree(b.latest, NULL); From c8ec9ded1bc3099f3afd0cf7ea575ead01fd2373 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 2 Jun 2017 16:12:07 -0500 Subject: [PATCH 56/85] Have a single call to hpc_set_real_siglongjmp. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 2 +- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 1 - src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c | 1 - src/tool/hpcrun/unwind/x86-family/x86-unwind.c | 1 - 4 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 1d688740a4..c7a52ea5ae 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -570,7 +570,7 @@ uw_cleanup(void) void uw_recipe_map_init(void) { - + hpcrun_set_real_siglongjmp(); #if UW_RECIPE_MAP_DEBUG fprintf(stderr, "uw_recipe_map_init: call a2r_map_init(my_alloc) ... \n"); #endif diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index b3eac94822..4f09a73b4f 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -133,7 +133,6 @@ void hpcrun_unw_init(void) { uw_recipe_map_init(); - hpcrun_set_real_siglongjmp(); } diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c index 89f7b04e61..778a6fba20 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c @@ -190,7 +190,6 @@ void hpcrun_unw_init(void) { uw_recipe_map_init(); - hpcrun_set_real_siglongjmp(); } int diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 0ec6d87e0c..a92b50eba9 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -179,7 +179,6 @@ hpcrun_unw_init(void) { x86_family_decoder_init(); uw_recipe_map_init(); - hpcrun_set_real_siglongjmp(); } From 1d594d7c93fb73a9c8e0d5056bef0ad70bc57820 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 2 Jun 2017 18:09:37 -0500 Subject: [PATCH 57/85] Consolidate some memory management functions. Add/drop header files to account for moved hpcrun_set_real_siglongjmp. --- .../hpcrun/unwind/common/binarytree_uwi.c | 65 ++++++------------- .../hpcrun/unwind/common/binarytree_uwi.h | 3 - src/tool/hpcrun/unwind/common/uw_recipe_map.c | 1 + .../unwind/generic-libunwind/libunw-unwind.c | 10 +-- src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c | 1 - .../hpcrun/unwind/x86-family/x86-unwind.c | 1 - 6 files changed, 26 insertions(+), 55 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index a575b1ddb2..f9188a71b3 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -42,59 +42,34 @@ bitree_uwi_init() } // constructors -static bitree_uwi_t * -bitree_uwi_alloc_from_lft() -{ - bitree_uwi_t *top = _lf_uwi_tree; - _lf_uwi_tree = bitree_uwi_rightsubtree(top); - bitree_uwi_set_rightsubtree(top, NULL); - return top; -} - -static void -bitree_uwi_populate_lft( - mem_alloc m_alloc, - size_t uwi_recipe_size) -{ - mcs_node_t me; - bool acquired = mcs_trylock(&GFT_lock, &me); - if (acquired) { - // the global free list is locked, so use it - if (GF_uwi_tree) { - _lf_uwi_tree = GF_uwi_tree; - GF_uwi_tree = bitree_uwi_leftsubtree(_lf_uwi_tree); - mcs_unlock(&GFT_lock, &me); - bitree_uwi_set_leftsubtree(_lf_uwi_tree, NULL); - } - else { - mcs_unlock(&GFT_lock, &me); - } - } - if (!_lf_uwi_tree) - _lf_uwi_tree = (bitree_uwi_t *)binarytree_listalloc(uwi_recipe_size, NUM_NODES, m_alloc); -} - bitree_uwi_t* bitree_uwi_malloc( mem_alloc m_alloc, size_t recipe_size) { if (!_lf_uwi_tree) { - bitree_uwi_populate_lft(m_alloc, sizeof(uwi_t) + recipe_size); + mcs_node_t me; + if (mcs_trylock(&GFT_lock, &me)) { + // the global free list is locked, so use it + _lf_uwi_tree = GF_uwi_tree; + if (_lf_uwi_tree) + GF_uwi_tree = bitree_uwi_leftsubtree(_lf_uwi_tree); + mcs_unlock(&GFT_lock, &me); + if (_lf_uwi_tree) + bitree_uwi_set_leftsubtree(_lf_uwi_tree, NULL); + } + if (!_lf_uwi_tree) + _lf_uwi_tree = + (bitree_uwi_t *)binarytree_listalloc(sizeof(uwi_t) + recipe_size, + NUM_NODES, m_alloc); } -#if BTUWI_DEBUG - assert(_lf_uwi_tree != NULL); -#endif - - return bitree_uwi_alloc_from_lft(); -} - -// destructor -void -bitree_uwi_del(bitree_uwi_t **tree, mem_free m_free) -{ - binarytree_del((binarytree_t**) tree, m_free); + bitree_uwi_t *top = _lf_uwi_tree; + if (top) { + _lf_uwi_tree = bitree_uwi_rightsubtree(top); + bitree_uwi_set_rightsubtree(top, NULL); + } + return top; } /* diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index e58f567d49..9f717182b1 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -90,9 +90,6 @@ bitree_uwi_init(); bitree_uwi_t* bitree_uwi_malloc(mem_alloc m_alloc, size_t recipe_size); -// destructor -void bitree_uwi_del(bitree_uwi_t **tree, mem_free m_free); - /* * If tree != NULL return tree to global free tree, * otherwise do nothing. diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index c7a52ea5ae..72506f50c4 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -79,6 +79,7 @@ // local include files //--------------------------------------------------------------------- #include +#include #include "uw_recipe_map.h" #include "unwind-interval.h" #include diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 4f09a73b4f..5472dc639c 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -96,7 +96,6 @@ #include #include -#include #include #include #include @@ -284,10 +283,11 @@ struct builder int count; }; -int dwarf_reg_states_callback(void *token, - void *rs, - size_t size, - unw_word_t start_ip, unw_word_t end_ip) +int +dwarf_reg_states_callback(void *token, + void *rs, + size_t size, + unw_word_t start_ip, unw_word_t end_ip) { struct builder *b = token; bitree_uwi_t *u = bitree_uwi_malloc(b->m_alloc, size); diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c index 778a6fba20..16e32d99ad 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c @@ -66,7 +66,6 @@ //*************************** User Include Files **************************** -#include #include #include diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index a92b50eba9..f3ffcdf485 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -103,7 +103,6 @@ #include #include -#include "main.h" //**************************************************************************** From b93e378adb5be98d98365c679c9ae3db25ffc5a9 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 5 Jun 2017 15:56:00 -0500 Subject: [PATCH 58/85] Drop unused routines. --- src/lib/prof-lean/binarytree.c | 58 ------------------- src/lib/prof-lean/binarytree.h | 14 ----- .../hpcrun/unwind/common/binarytree_uwi.c | 29 +++++----- 3 files changed, 16 insertions(+), 85 deletions(-) diff --git a/src/lib/prof-lean/binarytree.c b/src/lib/prof-lean/binarytree.c index 0d1f59bffd..826be28310 100644 --- a/src/lib/prof-lean/binarytree.c +++ b/src/lib/prof-lean/binarytree.c @@ -103,25 +103,6 @@ typedef struct binarytree_s { // private operations //****************************************************************************** -// perform an in order traversal and collect nodes into a vector -static void -tree_to_vector_helper -(binarytree_t *nvec[], - binarytree_t *node, - int *count) -{ - if (node) { - // add nodes in left subtree to vector - tree_to_vector_helper(nvec, node->left, count); - - // add subtree root to vector - nvec[(*count)++] = node; - - // add nodes in right subtree to vector - tree_to_vector_helper(nvec, node->right, count); - } -} - static void subtree_tostr2(binarytree_t *subtree, val_tostr tostr, char valstr[], char* left_lead, char result[]) @@ -226,45 +207,6 @@ binarytree_count(binarytree_t *tree) binarytree_count(tree->left) + binarytree_count(tree->right) + 1: 0; } -void -binarytree_to_vector(binarytree_t *nvec[], binarytree_t *tree) -{ - int count = 0; - tree_to_vector_helper(nvec, tree, &count); -} - -// post-condition: 0 <= |depth(left subtree) - depth(right subtree)| <= 1 -binarytree_t * -vector_to_binarytree(binarytree_t *nvec[], int lo, int hi) -{ - // the midpoint of the subvector is the root of the subtree - int mid = ((hi - lo) >> 1) + lo; - binarytree_t *root = nvec[mid]; - - // build left subtree, if any, from nodes to the left of the midpoint - root->left = (mid != lo) ? vector_to_binarytree(nvec, lo, mid - 1) : NULL; - - // build right subtree, if any, from nodes to the right of the midpoint - root->right = (mid != hi) ? vector_to_binarytree(nvec, mid + 1, hi) : NULL; - - return root; -} - -binarytree_t * -binarytree_rebalance(binarytree_t * root, int count) -{ - if (!root) return root; - - int n = count < 0 ? binarytree_count(root) : count; - - // collect tree nodes in order into a vector - binarytree_t *vec[n]; - binarytree_to_vector(vec, root); - - // construct a balanced binary tree from an ordered vector of nodes - return vector_to_binarytree(vec, 0, n - 1); -} - binarytree_t * binarytree_list_to_tree(binarytree_t ** head, int count) { diff --git a/src/lib/prof-lean/binarytree.h b/src/lib/prof-lean/binarytree.h index 4eeab30e44..7dff7f723f 100644 --- a/src/lib/prof-lean/binarytree.h +++ b/src/lib/prof-lean/binarytree.h @@ -143,20 +143,6 @@ binarytree_set_rightsubtree( int binarytree_count(binarytree_t *node); -// linearize a binary tree in order traversal into a vector -void -binarytree_to_vector(binarytree_t *nvec[], binarytree_t *tree); - -// construct a balanced binary tree from a vector of nodes. -// post-condition: 0 <= |height(left subtree) - height(right subtree)| <= 1 -binarytree_t * -vector_to_binarytree(binarytree_t *nvec[], int l, int u); - -// perform bulk rebalancing by gathering nodes into a vector and -// rebuilding the tree from scratch using the same nodes. -binarytree_t * -binarytree_rebalance(binarytree_t *tree, int count); - // given a tree that is a list, with all left children empty, // restructure to make a balanced tree binarytree_t * diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index f9188a71b3..b191786901 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -25,8 +25,11 @@ #define NUM_NODES 10 #define BTUWI_DEBUG 0 -static bitree_uwi_t *GF_uwi_tree = NULL; // global free unwind interval tree -static mcs_lock_t GFT_lock; // lock for GF_uwi_tree +static struct { + bitree_uwi_t *tree; // global free unwind interval tree + mcs_lock_t lock; // lock for tree +} GF; + static __thread bitree_uwi_t *_lf_uwi_tree = NULL; // thread local free unwind interval tree /* @@ -36,9 +39,9 @@ void bitree_uwi_init() { #if BTUWI_DEBUG - printf("DXN_DBG: bitree_uwi_init mcs_init(&GFT_lock) \n"); + printf("DXN_DBG: bitree_uwi_init mcs_init(&GF.lock) \n"); #endif - mcs_init(&GFT_lock); + mcs_init(&GF.lock); } // constructors @@ -49,12 +52,12 @@ bitree_uwi_malloc( { if (!_lf_uwi_tree) { mcs_node_t me; - if (mcs_trylock(&GFT_lock, &me)) { + if (mcs_trylock(&GF.lock, &me)) { // the global free list is locked, so use it - _lf_uwi_tree = GF_uwi_tree; + _lf_uwi_tree = GF.tree; if (_lf_uwi_tree) - GF_uwi_tree = bitree_uwi_leftsubtree(_lf_uwi_tree); - mcs_unlock(&GFT_lock, &me); + GF.tree = bitree_uwi_leftsubtree(_lf_uwi_tree); + mcs_unlock(&GF.lock, &me); if (_lf_uwi_tree) bitree_uwi_set_leftsubtree(_lf_uwi_tree, NULL); } @@ -73,7 +76,7 @@ bitree_uwi_malloc( } /* - * link only non null tree to GF_uwi_tree + * link only non null tree to GF.tree */ void bitree_uwi_free(bitree_uwi_t *tree) { @@ -81,10 +84,10 @@ void bitree_uwi_free(bitree_uwi_t *tree) tree = bitree_uwi_flatten(tree); // link to the global free unwind interval tree: mcs_node_t me; - mcs_lock(&GFT_lock, &me); - bitree_uwi_set_leftsubtree(tree, GF_uwi_tree); - GF_uwi_tree = tree; - mcs_unlock(&GFT_lock, &me); + mcs_lock(&GF.lock, &me); + bitree_uwi_set_leftsubtree(tree, GF.tree); + GF.tree = tree; + mcs_unlock(&GF.lock, &me); } // return the value at the root From b88cee9a8f333143cc63241d0221ff28b7382ee4 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 16:35:49 -0500 Subject: [PATCH 59/85] Don't have a separate pointer field in ilmstat_btuwi_pair_t just for maintaining free lists. Use the otherwise idle (for free nodes) btuwi field, and add push/pop functions that limit the scope of pointer casting. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 32 ++++++++++++------- 1 file changed, 20 insertions(+), 12 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 72506f50c4..3a8d35c5e4 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -133,7 +133,6 @@ //****************************************************************************** typedef struct ilmstat_btuwi_pair_s { - struct ilmstat_btuwi_pair_s *next; ildmod_stat_t *ilmstat; bitree_uwi_t *btuwi; } ilmstat_btuwi_pair_t; @@ -190,7 +189,6 @@ ilmstat__btuwi_pair_init(ilmstat_btuwi_pair_t *node, ilmstat->interval.start = start; ilmstat->interval.end = end; node->btuwi = tree; - node->next = NULL; return node; } @@ -203,6 +201,21 @@ ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, return ilmstat__btuwi_pair_init(node, treestat, ldmod, start, end, tree); } +static inline void +push_free_pair(ilmstat_btuwi_pair_t **list, ilmstat_btuwi_pair_t *pair) +{ + pair->btuwi = (bitree_uwi_t *)*list; + *list = pair; +} + +static inline ilmstat_btuwi_pair_t * +pop_free_pair(ilmstat_btuwi_pair_t **list) +{ + ilmstat_btuwi_pair_t *head = *list; + *list = (ilmstat_btuwi_pair_t *)head->btuwi; + return head; +} + static ilmstat_btuwi_pair_t* ilmstat_btuwi_pair_malloc( uintptr_t start, @@ -226,10 +239,8 @@ ilmstat_btuwi_pair_malloc( // transfer a bunch of nodes the global free list to the local free list int n = 0; while (GF_ilmstat_btuwi && n < NUM_NODES) { - ilmstat_btuwi_pair_t *head = GF_ilmstat_btuwi; - GF_ilmstat_btuwi = GF_ilmstat_btuwi->next; - head->next = _lf_ilmstat_btuwi; - _lf_ilmstat_btuwi = head; + ilmstat_btuwi_pair_t *head = pop_free_pair(&GF_ilmstat_btuwi); + push_free_pair(&_lf_ilmstat_btuwi, head); n++; } } @@ -240,8 +251,7 @@ ilmstat_btuwi_pair_malloc( for (int i = 0; i < NUM_NODES; i++) { ilmstat_btuwi_pair_t *node = ilmstat_btuwi_pair_build(0, 0, NULL, DEFERRED, NULL, m_alloc); - node->next = _lf_ilmstat_btuwi; - _lf_ilmstat_btuwi = node; + push_free_pair(&_lf_ilmstat_btuwi, node); } } } @@ -255,8 +265,7 @@ ilmstat_btuwi_pair_malloc( * set its fields using the appropriate parameters * return the head node. */ - ilmstat_btuwi_pair_t *ans = _lf_ilmstat_btuwi; - _lf_ilmstat_btuwi = _lf_ilmstat_btuwi->next; + ilmstat_btuwi_pair_t *ans = pop_free_pair(&_lf_ilmstat_btuwi); return ilmstat__btuwi_pair_init(ans, treestat, ldmod, start, end, tree); } @@ -276,8 +285,7 @@ ilmstat_btuwi_pair_free(ilmstat_btuwi_pair_t* pair) // add pair to the front of the global free list of ilmstat_btuwi_pair_t*: mcs_node_t me; mcs_lock(&GFL_lock, &me); - pair->next = GF_ilmstat_btuwi; - GF_ilmstat_btuwi = pair; + push_free_pair(&GF_ilmstat_btuwi, pair); mcs_unlock(&GFL_lock, &me); } From d0486a852a7ecd86013a6db7fe0fa490b0f5ac6d Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 17:24:23 -0500 Subject: [PATCH 60/85] Use 'lm' for load module everywhere, instead of mixing lm, ldmod, etc. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 4 ---- src/tool/hpcrun/unwind/common/ildmod_stat.h | 2 +- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 16 ++++++++-------- 3 files changed, 9 insertions(+), 13 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index b191786901..328d389e8f 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -23,7 +23,6 @@ #include "binarytree_uwi.h" #define NUM_NODES 10 -#define BTUWI_DEBUG 0 static struct { bitree_uwi_t *tree; // global free unwind interval tree @@ -38,9 +37,6 @@ static __thread bitree_uwi_t *_lf_uwi_tree = NULL; // thread local free unwind void bitree_uwi_init() { -#if BTUWI_DEBUG - printf("DXN_DBG: bitree_uwi_init mcs_init(&GF.lock) \n"); -#endif mcs_init(&GF.lock); } diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.h b/src/tool/hpcrun/unwind/common/ildmod_stat.h index cffd9e6db5..8ddeb6f254 100644 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.h +++ b/src/tool/hpcrun/unwind/common/ildmod_stat.h @@ -29,7 +29,7 @@ typedef enum { // {interval, load_module, tree status} typedef struct ildmod_stat_s { interval_t interval; - load_module_t *loadmod; + load_module_t *lm; _Atomic(tree_stat_t) stat; } ildmod_stat_t; diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 3a8d35c5e4..b348915cbf 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -178,14 +178,14 @@ static __thread ilmstat_btuwi_pair_t *current_btuwi = NULL; static inline ilmstat_btuwi_pair_t * ilmstat__btuwi_pair_init(ilmstat_btuwi_pair_t *node, tree_stat_t treestat, - load_module_t *ldmod, + load_module_t *lm, uintptr_t start, uintptr_t end, bitree_uwi_t *tree) { ildmod_stat_t *ilmstat = node->ilmstat; atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); - ilmstat->loadmod = ldmod; + ilmstat->lm = lm; ilmstat->interval.start = start; ilmstat->interval.end = end; node->btuwi = tree; @@ -193,12 +193,12 @@ ilmstat__btuwi_pair_init(ilmstat_btuwi_pair_t *node, } static inline ilmstat_btuwi_pair_t* -ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *ldmod, +ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *lm, tree_stat_t treestat, bitree_uwi_t *tree, mem_alloc m_alloc) { ilmstat_btuwi_pair_t* node = m_alloc(sizeof(*node)); node->ilmstat = m_alloc(sizeof(*node->ilmstat)); - return ilmstat__btuwi_pair_init(node, treestat, ldmod, start, end, tree); + return ilmstat__btuwi_pair_init(node, treestat, lm, start, end, tree); } static inline void @@ -220,7 +220,7 @@ static ilmstat_btuwi_pair_t* ilmstat_btuwi_pair_malloc( uintptr_t start, uintptr_t end, - load_module_t *ldmod, + load_module_t *lm, tree_stat_t treestat, bitree_uwi_t *tree, mem_alloc m_alloc) @@ -266,7 +266,7 @@ ilmstat_btuwi_pair_malloc( * return the head node. */ ilmstat_btuwi_pair_t *ans = pop_free_pair(&_lf_ilmstat_btuwi); - return ilmstat__btuwi_pair_init(ans, treestat, ldmod, start, end, tree); + return ilmstat__btuwi_pair_init(ans, treestat, lm, start, end, tree); } //****************************************************************************** @@ -340,7 +340,7 @@ ildmod_stat_tostr(void* ilms, char str[]) char intervalstr[MAX_INTERVAL_STR]; interval_t_tostr(&ildmod_stat->interval, intervalstr); char ldmodstr[LDMOD_NAME_LEN]; - load_module_tostr(ildmod_stat->loadmod, ldmodstr); + load_module_tostr(ildmod_stat->lm, ldmodstr); char statstr[MAX_STAT_STR]; treestat_tostr(atomic_load_explicit(&ildmod_stat->stat, memory_order_relaxed), statstr); sprintf(str, "(%s %s %s)", intervalstr, ldmodstr, statstr); @@ -704,7 +704,7 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) bitree_uwi_t *btuwi = ilm_btui->btuwi; unwr_info->btuwi = bitree_uwi_inrange(btuwi, (uintptr_t)addr); unwr_info->treestat = READY; - unwr_info->lm = ilmstat->loadmod; + unwr_info->lm = ilmstat->lm; unwr_info->interval = ilmstat->interval; return true; From 9195284ed03f34299f9fe6e12285729a090f5e13 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 17:29:52 -0500 Subject: [PATCH 61/85] Drop ildmod_stat.h, and merge it info unwindr_info.h. --- src/tool/hpcrun/unwind/common/ildmod_stat.h | 36 ------------------- src/tool/hpcrun/unwind/common/unwindr_info.h | 19 ++++++++-- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 1 - 3 files changed, 17 insertions(+), 39 deletions(-) delete mode 100644 src/tool/hpcrun/unwind/common/ildmod_stat.h diff --git a/src/tool/hpcrun/unwind/common/ildmod_stat.h b/src/tool/hpcrun/unwind/common/ildmod_stat.h deleted file mode 100644 index 8ddeb6f254..0000000000 --- a/src/tool/hpcrun/unwind/common/ildmod_stat.h +++ /dev/null @@ -1,36 +0,0 @@ -/* - * ildmod_stat.h - * - * Pair of interval_ldmod_pair_t and tree_stat_t. - * (([s, e), lm), stat) - * - * Author: dxnguyen - */ - -#ifndef __ILDMOD_STAT_H__ -#define __ILDMOD_STAT_H__ - -//****************************************************************************** -// local include files -//****************************************************************************** - -#include -#include "interval_t.h" - -//****************************************************************************** -// type -//****************************************************************************** - -// Tree status -typedef enum { - NEVER, DEFERRED, FORTHCOMING, READY -} tree_stat_t; - -// {interval, load_module, tree status} -typedef struct ildmod_stat_s { - interval_t interval; - load_module_t *lm; - _Atomic(tree_stat_t) stat; -} ildmod_stat_t; - -#endif /* __ILDMOD_STAT_H__ */ diff --git a/src/tool/hpcrun/unwind/common/unwindr_info.h b/src/tool/hpcrun/unwind/common/unwindr_info.h index 8e1ad29523..7a86d2b37b 100644 --- a/src/tool/hpcrun/unwind/common/unwindr_info.h +++ b/src/tool/hpcrun/unwind/common/unwindr_info.h @@ -53,10 +53,25 @@ //*************************** User Include Files **************************** -#include "ildmod_stat.h" #include "binarytree_uwi.h" +#include +#include "interval_t.h" -//******************************* Types ************************************* +//****************************************************************************** +// type +//****************************************************************************** + +// Tree status +typedef enum { + NEVER, DEFERRED, FORTHCOMING, READY +} tree_stat_t; + +// {interval, load_module, tree status} +typedef struct ildmod_stat_s { + interval_t interval; + load_module_t *lm; + _Atomic(tree_stat_t) stat; +} ildmod_stat_t; typedef struct unwindr_info_s { interval_t interval; diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index b348915cbf..c3e0f9419e 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -86,7 +86,6 @@ #include #include #include -#include "ildmod_stat.h" #include "binarytree_uwi.h" #include "segv_handler.h" #include From 5122e908bfa3c4a525dac2ff71d673f1e9b7000d Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 17:34:02 -0500 Subject: [PATCH 62/85] Only uw_recipe_map.c needs to see the ilmstat_btuwi_pair_t struct. --- src/tool/hpcrun/unwind/common/unwindr_info.h | 7 ------- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 7 +++++++ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/unwindr_info.h b/src/tool/hpcrun/unwind/common/unwindr_info.h index 7a86d2b37b..aaada5c74e 100644 --- a/src/tool/hpcrun/unwind/common/unwindr_info.h +++ b/src/tool/hpcrun/unwind/common/unwindr_info.h @@ -66,13 +66,6 @@ typedef enum { NEVER, DEFERRED, FORTHCOMING, READY } tree_stat_t; -// {interval, load_module, tree status} -typedef struct ildmod_stat_s { - interval_t interval; - load_module_t *lm; - _Atomic(tree_stat_t) stat; -} ildmod_stat_t; - typedef struct unwindr_info_s { interval_t interval; load_module_t *lm; diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index c3e0f9419e..64f3bbdc14 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -131,6 +131,13 @@ // type //****************************************************************************** +// {interval, load_module, tree status} +typedef struct ildmod_stat_s { + interval_t interval; + load_module_t *lm; + _Atomic(tree_stat_t) stat; +} ildmod_stat_t; + typedef struct ilmstat_btuwi_pair_s { ildmod_stat_t *ilmstat; bitree_uwi_t *btuwi; From 16d706359187f88f51d7ddc56c80f07b4569c492 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 18:03:38 -0500 Subject: [PATCH 63/85] Eliminate ildmod_stat_t struct. Merge it into the ildmod_btuwi_pair struct. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 82 ++++++++----------- 1 file changed, 32 insertions(+), 50 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 64f3bbdc14..ef8d43d8d4 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -131,15 +131,10 @@ // type //****************************************************************************** -// {interval, load_module, tree status} -typedef struct ildmod_stat_s { +typedef struct ilmstat_btuwi_pair_s { interval_t interval; load_module_t *lm; _Atomic(tree_stat_t) stat; -} ildmod_stat_t; - -typedef struct ilmstat_btuwi_pair_s { - ildmod_stat_t *ilmstat; bitree_uwi_t *btuwi; } ilmstat_btuwi_pair_t; @@ -156,8 +151,8 @@ ilmstat_btuwi_pair_cmp(void *lhs, void *rhs) ilmstat_btuwi_pair_t *l = (ilmstat_btuwi_pair_t*)lhs; ilmstat_btuwi_pair_t *r = (ilmstat_btuwi_pair_t*)rhs; return interval_t_cmp( - &l->ilmstat->interval, - &r->ilmstat->interval); + &l->interval, + &r->interval); } /* @@ -168,7 +163,7 @@ extern int ilmstat_btuwi_pair_inrange(void *itp, void *address) { ilmstat_btuwi_pair_t *p = (ilmstat_btuwi_pair_t*)itp; - return interval_t_inrange(&p->ilmstat->interval, address); + return interval_t_inrange(&p->interval, address); } static ilmstat_btuwi_pair_t *GF_ilmstat_btuwi = NULL; // global free list of ilmstat_btuwi_pair_t* @@ -189,11 +184,10 @@ ilmstat__btuwi_pair_init(ilmstat_btuwi_pair_t *node, uintptr_t end, bitree_uwi_t *tree) { - ildmod_stat_t *ilmstat = node->ilmstat; - atomic_store_explicit(&ilmstat->stat, treestat, memory_order_relaxed); - ilmstat->lm = lm; - ilmstat->interval.start = start; - ilmstat->interval.end = end; + atomic_store_explicit(&node->stat, treestat, memory_order_relaxed); + node->lm = lm; + node->interval.start = start; + node->interval.end = end; node->btuwi = tree; return node; } @@ -203,7 +197,6 @@ ilmstat_btuwi_pair_build(uintptr_t start, uintptr_t end, load_module_t *lm, tree_stat_t treestat, bitree_uwi_t *tree, mem_alloc m_alloc) { ilmstat_btuwi_pair_t* node = m_alloc(sizeof(*node)); - node->ilmstat = m_alloc(sizeof(*node->ilmstat)); return ilmstat__btuwi_pair_init(node, treestat, lm, start, end, tree); } @@ -342,13 +335,13 @@ treestat_tostr(tree_stat_t stat, char str[]) static void ildmod_stat_tostr(void* ilms, char str[]) { - ildmod_stat_t* ildmod_stat = (ildmod_stat_t*)ilms; + ilmstat_btuwi_pair_t *pair = ilms; char intervalstr[MAX_INTERVAL_STR]; - interval_t_tostr(&ildmod_stat->interval, intervalstr); + interval_t_tostr(&pair->interval, intervalstr); char ldmodstr[LDMOD_NAME_LEN]; - load_module_tostr(ildmod_stat->lm, ldmodstr); + load_module_tostr(pair->lm, ldmodstr); char statstr[MAX_STAT_STR]; - treestat_tostr(atomic_load_explicit(&ildmod_stat->stat, memory_order_relaxed), statstr); + treestat_tostr(atomic_load_explicit(&pair->stat, memory_order_relaxed), statstr); sprintf(str, "(%s %s %s)", intervalstr, ldmodstr, statstr); } @@ -361,11 +354,10 @@ static void ilmstat_btuwi_pair_tostr_indent(void* itp, char* indents, char str[]) { ilmstat_btuwi_pair_t* it_pair = (ilmstat_btuwi_pair_t*)itp; - ildmod_stat_t *ilms = it_pair->ilmstat; bitree_uwi_t *tree = it_pair->btuwi; char firststr[MAX_ILDMODSTAT_STR]; char secondstr[MAX_TREE_STR]; - ildmod_stat_tostr(ilms, firststr); + ildmod_stat_tostr(it_pair, firststr); bitree_uwi_tostring_indent(tree, indents, secondstr); snprintf(str, strlen(firststr) + strlen(secondstr) + 6, "%s%s%s%s%s", "(", firststr, ", ", secondstr, ")"); @@ -458,16 +450,11 @@ uw_recipe_map_unpoison(uintptr_t start, uintptr_t end) #if UW_RECIPE_MAP_DEBUG assert(ilmstat_btuwi != NULL); // start should be in range of some poisoned interval - - ildmod_stat_t* ilmstat = ilmstat_btuwi->ilmstat; - assert(ilmstat != NULL); - assert(atomic_load_explicit(&ilmstat->stat, memory_order_relaxed) == NEVER); // should be a poisoned node -#else - ildmod_stat_t* ilmstat = ilmstat_btuwi->ilmstat; + assert(atomic_load_explicit(&ilmstat_btuwi->stat, memory_order_relaxed) == NEVER); // should be a poisoned node #endif - uintptr_t s0 = ilmstat->interval.start; - uintptr_t e0 = ilmstat->interval.end; + uintptr_t s0 = ilmstat_btuwi->interval.start; + uintptr_t e0 = ilmstat_btuwi->interval.end; uw_recipe_map_cmp_del_bulk_unsynch(ilmstat_btuwi, ilmstat_btuwi); uw_recipe_map_poison(s0, start); uw_recipe_map_poison(end, e0); @@ -480,11 +467,10 @@ uw_recipe_map_repoison(uintptr_t start, uintptr_t end) if (start > 0) { ilmstat_btuwi_pair_t* ileft = uw_recipe_map_inrange_find(start - 1); if (ileft) { - ildmod_stat_t* ilmstat = ileft->ilmstat; - if ((ilmstat->interval.end == start) && - (NEVER == atomic_load_explicit(&ilmstat->stat, memory_order_acquire))) { + if ((ileft->interval.end == start) && + (NEVER == atomic_load_explicit(&ileft->stat, memory_order_acquire))) { // poisoned interval adjacent on the left - start = ilmstat->interval.start; + start = ileft->interval.start; uw_recipe_map_cmp_del_bulk_unsynch(ileft, ileft); } } @@ -492,11 +478,10 @@ uw_recipe_map_repoison(uintptr_t start, uintptr_t end) if (end < UINTPTR_MAX) { ilmstat_btuwi_pair_t* iright = uw_recipe_map_inrange_find(end+1); if (iright) { - ildmod_stat_t* ilmstat = iright->ilmstat; - if ((ilmstat->interval.start == end) && - (NEVER == atomic_load_explicit(&ilmstat->stat, memory_order_acquire))) { + if ((iright->interval.start == end) && + (NEVER == atomic_load_explicit(&iright->stat, memory_order_acquire))) { // poisoned interval adjacent on the right - end = ilmstat->interval.end; + end = iright->interval.end; uw_recipe_map_cmp_del_bulk_unsynch(iright, iright); } } @@ -572,10 +557,8 @@ uw_recipe_map_notify_init() static void uw_cleanup(void) { - if (current_btuwi) { - ildmod_stat_t *ilmstat = current_btuwi->ilmstat; - atomic_store_explicit(&ilmstat->stat, NEVER, memory_order_release); - } + if (current_btuwi) + atomic_store_explicit(¤t_btuwi->stat, NEVER, memory_order_release); } //--------------------------------------------------------------------- @@ -674,31 +657,30 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) assert(ilm_btui != NULL); #endif - ildmod_stat_t *ilmstat = ilm_btui->ilmstat; tree_stat_t oldstat = DEFERRED; - if (atomic_compare_exchange_strong_explicit(&ilmstat->stat, &oldstat, FORTHCOMING, + if (atomic_compare_exchange_strong_explicit(&ilm_btui->stat, &oldstat, FORTHCOMING, memory_order_release, memory_order_relaxed)) { // it is my responsibility to build the tree of intervals for the function - void *fcn_start = (void*)ilmstat->interval.start; - void *fcn_end = (void*)ilmstat->interval.end; + void *fcn_start = (void*)ilm_btui->interval.start; + void *fcn_end = (void*)ilm_btui->interval.end; // potentially crash in this statement. need to save the state current_btuwi = ilm_btui; btuwi_status_t btuwi_stat = build_intervals(fcn_start, fcn_end - fcn_start, my_alloc); if (btuwi_stat.first == NULL) { - atomic_store_explicit(&ilmstat->stat, NEVER, memory_order_release); + atomic_store_explicit(&ilm_btui->stat, NEVER, memory_order_release); TMSG(UW_RECIPE_MAP, "BAD build_intervals failed: fcn range %p to %p", fcn_start, fcn_end); return false; } ilm_btui->btuwi = bitree_uwi_rebalance(btuwi_stat.first, btuwi_stat.count); current_btuwi = NULL; - atomic_store_explicit(&ilmstat->stat, READY, memory_order_release); + atomic_store_explicit(&ilm_btui->stat, READY, memory_order_release); } else { while (FORTHCOMING == oldstat) - oldstat = atomic_load_explicit(&ilmstat->stat, memory_order_acquire); + oldstat = atomic_load_explicit(&ilm_btui->stat, memory_order_acquire); if (oldstat == NEVER) { // addr is in the range of some poisoned load module return false; @@ -710,8 +692,8 @@ uw_recipe_map_lookup(void *addr, unwindr_info_t *unwr_info) bitree_uwi_t *btuwi = ilm_btui->btuwi; unwr_info->btuwi = bitree_uwi_inrange(btuwi, (uintptr_t)addr); unwr_info->treestat = READY; - unwr_info->lm = ilmstat->lm; - unwr_info->interval = ilmstat->interval; + unwr_info->lm = ilm_btui->lm; + unwr_info->interval = ilm_btui->interval; return true; } From 656a8b63204b8aa70b04c5cd5fcbc598a6279296 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 18:06:03 -0500 Subject: [PATCH 64/85] Drop unneeded clearing of field. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index ef8d43d8d4..d9bd27cef9 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -276,10 +276,7 @@ static void ilmstat_btuwi_pair_free(ilmstat_btuwi_pair_t* pair) { if (!pair) return; - - bitree_uwi_t *btuwi = pair->btuwi; - pair->btuwi = NULL; - bitree_uwi_free(btuwi); + bitree_uwi_free(pair->btuwi); // add pair to the front of the global free list of ilmstat_btuwi_pair_t*: mcs_node_t me; From b445bc41cac14b86c7d415b0b9e9a5036ebcd8de Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 18:14:17 -0500 Subject: [PATCH 65/85] Don't bother initializing ilmstat_btuwi fields for node going on the free list. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index d9bd27cef9..76c9e9fd42 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -248,8 +248,7 @@ ilmstat_btuwi_pair_malloc( if (!_lf_ilmstat_btuwi) { /* add a bunch of nodes to _lf_ilmstat_btuwi */ for (int i = 0; i < NUM_NODES; i++) { - ilmstat_btuwi_pair_t *node = - ilmstat_btuwi_pair_build(0, 0, NULL, DEFERRED, NULL, m_alloc); + ilmstat_btuwi_pair_t *node = m_alloc(sizeof(*node)); push_free_pair(&_lf_ilmstat_btuwi, node); } } From 90669d257b7cbdfd6305dff542009004c5b5111e Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 20:54:40 -0500 Subject: [PATCH 66/85] Delete authorship comments that no longer reflect who is responsible for the code. --- src/tool/hpcrun/unwind/common/binarytree_uwi.c | 6 ------ src/tool/hpcrun/unwind/common/binarytree_uwi.h | 8 -------- src/tool/hpcrun/unwind/common/interval_t.c | 6 ------ src/tool/hpcrun/unwind/common/interval_t.h | 12 ------------ src/tool/hpcrun/unwind/common/uw_recipe_map.c | 18 ------------------ 5 files changed, 50 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.c b/src/tool/hpcrun/unwind/common/binarytree_uwi.c index 328d389e8f..43d094d712 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.c +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.c @@ -1,9 +1,3 @@ -/* - * binarytree_uwi.c - * - * Author: dxnguyen - */ - //****************************************************************************** // global include files //****************************************************************************** diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 9f717182b1..120ceba001 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -1,11 +1,3 @@ -/* - * binarytree_uwi.h - * - * binary search tree of unwind intervals uwi_t as specified in uwi.h. - * - * Author: dxnguyen - */ - #ifndef __BINARYTREE_UWI_H__ #define __BINARYTREE_UWI_H__ diff --git a/src/tool/hpcrun/unwind/common/interval_t.c b/src/tool/hpcrun/unwind/common/interval_t.c index 58258dedb2..62840c866d 100644 --- a/src/tool/hpcrun/unwind/common/interval_t.c +++ b/src/tool/hpcrun/unwind/common/interval_t.c @@ -1,9 +1,3 @@ -/* - * interval_t.c - * - * Author: dxnguyen - */ - //****************************************************************************** // global include files //****************************************************************************** diff --git a/src/tool/hpcrun/unwind/common/interval_t.h b/src/tool/hpcrun/unwind/common/interval_t.h index 5ca7d84450..67b35bc796 100644 --- a/src/tool/hpcrun/unwind/common/interval_t.h +++ b/src/tool/hpcrun/unwind/common/interval_t.h @@ -1,15 +1,3 @@ -/* - * interval_t.h - * - * Structure representing a right-opened interval of the form [a, b), where - * a and b are pointers. - * - * Viewed as a concrete "subclass" of the generic_val class defined in - * generic_val.h. - * - * Author: dxnguyen - */ - #ifndef __PTRINTERVAL_T_H__ #define __PTRINTERVAL_T_H__ diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index 76c9e9fd42..bff9b6ad9a 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -93,12 +93,6 @@ // libmonitor functions #include -/* - * ilmstat_btuwi_pair.c - * - * Author: dxnguyen - */ - //****************************************************************************** // global include files //****************************************************************************** @@ -115,18 +109,6 @@ #define NUM_NODES 10 -/* - * A pair, whose key is a ildmod_stat_t* and whose value is a bitree_uwi_t. - * ildmod_stat_t (interval-load_module/stat) is a struct whose first component is - * an interval_ldmod_pair_t* and whose second component is a tree_stat_t (tree status) - * bitree_uwi_t (binary tree of unwind intervals) is binary search tree of unwind - * intervals uwi_t*. - * uwi_t is a pair whose key is an interval interval_t, and whose - * value is an unwind recipe, recipe_t, as specified in uw_recipe.h. - * - * Author: dxnguyen - */ - //****************************************************************************** // type //****************************************************************************** From 2d8e5d67c86df761d39765621280932340905b9d Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 6 Jun 2017 21:06:05 -0500 Subject: [PATCH 67/85] Make comparators static. --- src/tool/hpcrun/unwind/common/uw_recipe_map.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/uw_recipe_map.c b/src/tool/hpcrun/unwind/common/uw_recipe_map.c index bff9b6ad9a..1f449d6147 100644 --- a/src/tool/hpcrun/unwind/common/uw_recipe_map.c +++ b/src/tool/hpcrun/unwind/common/uw_recipe_map.c @@ -127,7 +127,7 @@ typedef struct ilmstat_btuwi_pair_s { /* * pre-condition: lhs, rhs are ilmstat_btuwi_pair_t* */ -int +static int ilmstat_btuwi_pair_cmp(void *lhs, void *rhs) { ilmstat_btuwi_pair_t *l = (ilmstat_btuwi_pair_t*)lhs; @@ -141,7 +141,7 @@ ilmstat_btuwi_pair_cmp(void *lhs, void *rhs) * pre-condition: itp is a ilmstat_btuwi_pair_t*, address is a uintptr_t * return interval_ldmod_pair_inrange(itp->first, address) */ -extern int +static int ilmstat_btuwi_pair_inrange(void *itp, void *address) { ilmstat_btuwi_pair_t *p = (ilmstat_btuwi_pair_t*)itp; From fbfdccf8f6fad5ca58d7f7ea9f1e056a81cdd134 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Wed, 7 Jun 2017 14:39:13 -0500 Subject: [PATCH 68/85] Apply struct change to ppc. --- src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c index 16e32d99ad..3198556567 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c @@ -128,7 +128,7 @@ hpcrun_check_fence(void* ip); static void compute_normalized_ips(hpcrun_unw_cursor_t* cursor) { - void *func_start_pc = (void*) cursor->unwr_info.start; + void *func_start_pc = (void*) cursor->unwr_info.interval.start; load_module_t* lm = cursor->unwr_info.lm; cursor->pc_norm = hpcrun_normalize_ip(cursor->pc_unnorm, lm); From 4d755aa1a52ef16532f66969add48da66fd17cfb Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 9 Jun 2017 16:51:06 -0500 Subject: [PATCH 69/85] Drop unused fields from libunw cursor. Reorder the remaining fields to more closely match the fields in the native cursor. --- .../hpcrun/unwind/generic-libunwind/libunw-unwind.c | 4 ---- .../generic-libunwind/unw-datatypes-specific.h | 13 ++++--------- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 5472dc639c..7173e64c20 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -196,8 +196,6 @@ hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* cursor, void* context) cursor->sp = NULL; cursor->bp = NULL; cursor->pc_unnorm = (void *) pc; - cursor->intvl = &(cursor->real_intvl); - cursor->real_intvl.lm = NULL; compute_normalized_ips(cursor); @@ -263,8 +261,6 @@ hpcrun_unw_step(hpcrun_unw_cursor_t* cursor) cursor->sp = NULL; cursor->bp = NULL; cursor->pc_unnorm = pc; - cursor->intvl = &(cursor->real_intvl); - cursor->real_intvl.lm = NULL; compute_normalized_ips(cursor); diff --git a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h index de85d97a7f..e821748805 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h @@ -20,21 +20,16 @@ typedef struct { typedef struct hpcrun_unw_cursor_t { - unw_cursor_t uc; + void* pc_unnorm; void* sp; void* bp; - void* pc_unnorm; - ip_normalized_t pc_norm; + fence_enum_t fence; // Details on which fence stopped an unwind + unw_cursor_t uc; // normalized ip for first instruction in enclosing function ip_normalized_t the_function; - fence_enum_t fence; // Details on which fence stopped an unwind - intvl_t* intvl; - load_module_t *lm; // should correspond to intvl at initialization - intvl_t real_intvl; // other unwinders get intervals from elsewhere, - // libunwind does not use intervals, so space for pointer - // allocated internally in cursor + ip_normalized_t pc_norm; } hpcrun_unw_cursor_t; #endif // UNW_DATATYPES_SPECIFIC_H From f732c789ff00d7c81fe4c1e86912db18a968fded Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 9 Jun 2017 17:21:47 -0500 Subject: [PATCH 70/85] Drop 2 more unused libunw cursor fields. --- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 4 ---- .../hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h | 2 -- 2 files changed, 6 deletions(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 7173e64c20..97a752ce6f 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -193,8 +193,6 @@ hpcrun_unw_init_cursor(hpcrun_unw_cursor_t* cursor, void* context) pc = 0; } - cursor->sp = NULL; - cursor->bp = NULL; cursor->pc_unnorm = (void *) pc; compute_normalized_ips(cursor); @@ -258,8 +256,6 @@ hpcrun_unw_step(hpcrun_unw_cursor_t* cursor) unw_get_reg(unw_cursor, UNW_REG_IP, &tmp); pc = (void *) tmp; - cursor->sp = NULL; - cursor->bp = NULL; cursor->pc_unnorm = pc; compute_normalized_ips(cursor); diff --git a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h index e821748805..11e3ed3f7d 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h @@ -21,8 +21,6 @@ typedef struct { typedef struct hpcrun_unw_cursor_t { void* pc_unnorm; - void* sp; - void* bp; fence_enum_t fence; // Details on which fence stopped an unwind unw_cursor_t uc; From d65991d5e2241ee3c1ce67cbaf49cbef3c53b291 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 9 Jun 2017 17:24:02 -0500 Subject: [PATCH 71/85] Drop another unused libunw cursor member. --- .../hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h index 11e3ed3f7d..b21435c48d 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h @@ -22,7 +22,6 @@ typedef struct { typedef struct hpcrun_unw_cursor_t { void* pc_unnorm; - fence_enum_t fence; // Details on which fence stopped an unwind unw_cursor_t uc; // normalized ip for first instruction in enclosing function ip_normalized_t the_function; From c537d83d80c25a6a477eee8a3b3bce522d1b86f8 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 12 Jun 2017 18:32:48 -0500 Subject: [PATCH 72/85] Supply a missing function declaration. --- src/tool/hpcrun/unwind/x86-family/x86-unwind.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index f3ffcdf485..6f76ae1897 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -93,6 +93,7 @@ #include #include +#include #include #include "x86-unwind-interval.h" #include "x86-validate-retn-addr.h" From 71ecbc2560ad40b396d5b7fa7d0f05877256ea4d Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 20 Jun 2017 23:44:07 -0500 Subject: [PATCH 73/85] For cold path fixup, walk the interval list from start to current, not backwards, since there are no more backward pointers. --- src/tool/hpcrun/unwind/x86-family/x86-cold-path.c | 7 ++++--- src/tool/hpcrun/unwind/x86-family/x86-cold-path.h | 2 +- src/tool/hpcrun/unwind/x86-family/x86-process-inst.c | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c index 321f6df475..504d54c53f 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.c @@ -97,7 +97,7 @@ static bool confirm_cold_path_call(void *loc, interval_arg_t *iarg); //************************************************************************** void -hpcrun_cold_code_fixup(unwind_interval *current, unwind_interval *warm) +hpcrun_cold_code_fixup(unwind_interval *first, unwind_interval *current, unwind_interval *warm) { TMSG(COLD_CODE," --fixing up current intervals with the warm interval"); x86recipe_t *xr = UWI_RECIPE(warm); @@ -109,11 +109,12 @@ hpcrun_cold_code_fixup(unwind_interval *current, unwind_interval *warm) return; } TMSG(COLD_CODE," --updating sp_ra_pos with offset %d",ra_offset); - for(unwind_interval *intv = current; intv; intv = UWI_PREV(intv)) { + unwind_interval *intv = first; + do { xr = UWI_RECIPE(intv); xr->reg.sp_ra_pos += ra_offset; xr->reg.sp_bp_pos += bp_offset; - } + } while (intv != current && (intv = UWI_NEXT(intv))); } // The cold code detector is called when unconditional jump is encountered diff --git a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.h b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.h index 0cc9eb16d6..298f91002f 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-cold-path.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-cold-path.h @@ -52,6 +52,6 @@ #include "x86-interval-arg.h" extern bool hpcrun_is_cold_code(xed_decoded_inst_t *xptr, interval_arg_t *iarg); -extern void hpcrun_cold_code_fixup(unwind_interval *current, unwind_interval *warm); +extern void hpcrun_cold_code_fixup(unwind_interval *first, unwind_interval *current, unwind_interval *warm); #endif // X86_COLD_PATH_H diff --git a/src/tool/hpcrun/unwind/x86-family/x86-process-inst.c b/src/tool/hpcrun/unwind/x86-family/x86-process-inst.c index 5b0b7399ae..eaa039e2e6 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-process-inst.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-process-inst.c @@ -93,7 +93,7 @@ process_inst(xed_decoded_inst_t *xptr, interval_arg_t *iarg, mem_alloc m_alloc) dump_ui_stderr(ui); } // Fixup current intervals w.r.t. the warm code interval - hpcrun_cold_code_fixup(iarg->current, ui); + hpcrun_cold_code_fixup(iarg->first, iarg->current, ui); } break; From a90ffd09f949929487a39290dbb9af92ffd2f3b4 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Wed, 21 Jun 2017 02:00:43 -0500 Subject: [PATCH 74/85] Instead of marking a restored canonical in an x86 recipe, identify the latest restored canonical in interval_arg_t, and search forward from there when doing canonical updates instead of walking backward to the latest marked canonical. --- .../unwind/x86-family/x86-build-intervals.c | 1 + .../hpcrun/unwind/x86-family/x86-canonical.c | 3 +- .../unwind/x86-family/x86-interval-arg.h | 1 + .../hpcrun/unwind/x86-family/x86-return.c | 37 +++++++------------ .../unwind/x86-family/x86-unwind-interval.c | 12 +----- .../unwind/x86-family/x86-unwind-interval.h | 3 -- 6 files changed, 20 insertions(+), 37 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index b2fea94e87..b62a3422df 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -129,6 +129,7 @@ x86_build_intervals(void *ins, unsigned int len, int noisy, mem_alloc m_alloc) x86registers_t reg = {0, 0, BP_UNCHANGED, 0, 0}; iarg.current = new_ui(ins, RA_SP_RELATIVE, ®, m_alloc); iarg.first = iarg.current; + iarg.restored_canonical = iarg.current; // handle return is different if there are any bp frames diff --git a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c index debb5fabfa..b9a1ca971f 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-canonical.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-canonical.c @@ -124,7 +124,8 @@ reset_to_canonical_interval(xed_decoded_inst_t *xptr, unwind_interval **next, { reg.bp_status = bp_status; *next = new_ui(nextInsn(iarg, xptr), ra_status, ®, m_alloc); - set_ui_restored_canonical(*next, UWI_RECIPE(iarg->canonical_interval)->prev_canonical); + iarg->restored_canonical = *next; + set_ui_canonical(*next, UWI_RECIPE(iarg->canonical_interval)->prev_canonical); if (r1->reg.bp_status != BP_HOSED && bp_status == BP_HOSED) { set_ui_canonical(*next, iarg->canonical_interval); iarg->canonical_interval = *next; diff --git a/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h b/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h index efd15ad6e8..115054172d 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-interval-arg.h @@ -68,6 +68,7 @@ typedef struct interval_arg_t { bool bp_just_pushed; highwatermark_t highwatermark; bitree_uwi_t *canonical_interval; + unwind_interval *restored_canonical; bool bp_frames_found; void *rax_rbp_equivalent_at; void *return_addr; // A place to store void * return values. diff --git a/src/tool/hpcrun/unwind/x86-family/x86-return.c b/src/tool/hpcrun/unwind/x86-family/x86-return.c index c83e29dd4c..60795f67d3 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-return.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-return.c @@ -71,42 +71,33 @@ process_return(xed_decoded_inst_t *xptr, bool irdebug, interval_arg_t *iarg, if (UWI_RECIPE(iarg->current)->ra_status == RA_SP_RELATIVE) { int offset = UWI_RECIPE(iarg->current)->reg.sp_ra_pos; if (offset != 0) { - unwind_interval *u = iarg->current; - for (;;) { + unwind_interval *u = iarg->restored_canonical; + do { // fix offset x86recipe_t *xr = UWI_RECIPE(u); xr->reg.sp_ra_pos -= offset; xr->reg.sp_bp_pos -= offset; - - if (xr->restored_canonical == 1) { - break; - } - u = UWI_PREV(u); - if (! u) { - break; - } - } + } while (u != iarg->current && (u = UWI_NEXT(u))); } if (UWI_RECIPE(iarg->current)->reg.bp_status == BP_HOSED) { // invariant: when we reach a return, if the BP was overwritten, it // should have been restored. this must be incorrect. let's reset // the bp status for all intervals leading up to this one since // the last canonical restore. - unwind_interval *u = iarg->current; - for (;;) { + unwind_interval *start = iarg->restored_canonical; + unwind_interval *u = start; + do { x86recipe_t *xr = UWI_RECIPE(u); if (xr->reg.bp_status != BP_HOSED) { - break; - } + start = NULL; + } else if (start == NULL) + start = u; + } while (u != iarg->current && (u = UWI_NEXT(u))); + u = start; + do { + x86recipe_t *xr = UWI_RECIPE(u); xr->reg.bp_status = BP_UNCHANGED; - if (xr->restored_canonical == 1) { - break; - } - u = UWI_PREV(u); - if (! u) { - break; - } - } + } while (u != iarg->current && (u = UWI_NEXT(u))); } } if (UWI_RECIPE(iarg->current)->reg.bp_status == BP_SAVED) { diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index f69f5efdfb..8cac5206a8 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -107,14 +107,6 @@ set_ui_canonical(unwind_interval *u, unwind_interval *value) UWI_RECIPE(u)->prev_canonical = value; } -void -set_ui_restored_canonical(unwind_interval *u, unwind_interval *value) -{ - UWI_RECIPE(u)->prev_canonical = value; - UWI_RECIPE(u)->restored_canonical = 1; -} - - unwind_interval * fluke_ui(char *loc, unsigned int pos, mem_alloc m_alloc) { @@ -147,7 +139,7 @@ _dump_ui_str(unwind_interval *u, char *buf, size_t len) x86recipe_t *xr = UWI_RECIPE(u); x86registers_t reg = xr->reg; snprintf(buf, len, "UNW: start=%p end =%p ra_status=%s sp_ra_pos=%d sp_bp_pos=%d bp_status=%s " - "bp_ra_pos = %d bp_bp_pos=%d next=%p prev=%p prev_canonical=%p rest_canon=%d\n" + "bp_ra_pos = %d bp_bp_pos=%d next=%p prev=%p prev_canonical=%p\n" "has_tail_calls = %d", (void *) UWI_START_ADDR(u), (void *) UWI_END_ADDR(u), ra_status_string(xr->ra_status), @@ -155,7 +147,7 @@ _dump_ui_str(unwind_interval *u, char *buf, size_t len) bp_status_string(reg.bp_status), reg.bp_ra_pos, reg.bp_bp_pos, UWI_NEXT(u), UWI_PREV(u), - xr->prev_canonical, xr->restored_canonical, + xr->prev_canonical, UWI_RECIPE(u)->has_tail_calls); } diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h index e214afdcfa..efb8ecf4a8 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.h @@ -112,7 +112,6 @@ typedef struct x86recipe_s { x86registers_t reg; bitree_uwi_t* prev_canonical; - int restored_canonical; bool has_tail_calls; } x86recipe_t; @@ -130,8 +129,6 @@ extern "C" { void set_ui_canonical(unwind_interval *u, unwind_interval *value); - void set_ui_restored_canonical(unwind_interval *u, unwind_interval *value); - unwind_interval * new_ui(char *startaddr, ra_loc ra_status, const x86registers_t *reg, mem_alloc m_alloc); From 6f7cb083bd8b286824ebfb758ba0b15aa388b052 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Wed, 21 Jun 2017 16:20:50 -0500 Subject: [PATCH 75/85] Delete the remnants of UWI_PREV. --- src/tool/hpcrun/unwind/common/binarytree_uwi.h | 1 - src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/binarytree_uwi.h b/src/tool/hpcrun/unwind/common/binarytree_uwi.h index 120ceba001..490cd37620 100644 --- a/src/tool/hpcrun/unwind/common/binarytree_uwi.h +++ b/src/tool/hpcrun/unwind/common/binarytree_uwi.h @@ -40,7 +40,6 @@ typedef struct unwind_interval_t unwind_interval; ******************************************************************************/ #define UWI_NEXT(btuwi) (bitree_uwi_rightsubtree(btuwi)) -#define UWI_PREV(btuwi) (bitree_uwi_leftsubtree(btuwi)) #define UWI_START_ADDR(btuwi) (bitree_uwi_interval(btuwi))->start #define UWI_END_ADDR(btuwi) (bitree_uwi_interval(btuwi))->end #define MAX_RECIPE_STR 256 diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index 8cac5206a8..900de23cc9 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -139,14 +139,14 @@ _dump_ui_str(unwind_interval *u, char *buf, size_t len) x86recipe_t *xr = UWI_RECIPE(u); x86registers_t reg = xr->reg; snprintf(buf, len, "UNW: start=%p end =%p ra_status=%s sp_ra_pos=%d sp_bp_pos=%d bp_status=%s " - "bp_ra_pos = %d bp_bp_pos=%d next=%p prev=%p prev_canonical=%p\n" + "bp_ra_pos = %d bp_bp_pos=%d next=%p prev_canonical=%p\n" "has_tail_calls = %d", (void *) UWI_START_ADDR(u), (void *) UWI_END_ADDR(u), ra_status_string(xr->ra_status), reg.sp_ra_pos, reg.sp_bp_pos, bp_status_string(reg.bp_status), reg.bp_ra_pos, reg.bp_bp_pos, - UWI_NEXT(u), UWI_PREV(u), + UWI_NEXT(u), xr->prev_canonical, UWI_RECIPE(u)->has_tail_calls); } From 98aae03b1e9ed82ee056f2fb4d5b6d7fc9ead3f9 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 27 Jun 2017 16:49:35 -0500 Subject: [PATCH 76/85] Fix merge glitches. --- src/tool/hpcrun/unwind/x86-family/x86-and.c | 3 ++- src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-and.c b/src/tool/hpcrun/unwind/x86-family/x86-and.c index 4023eb2a5d..170db57bc8 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-and.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-and.c @@ -66,7 +66,8 @@ process_and(xed_decoded_inst_t *xptr, const xed_inst_t *xi, if (op0_name == XED_OPERAND_REG0) { xed_reg_enum_t reg0 = xed_decoded_inst_get_reg(xptr, op0_name); if (x86_isReg_SP(reg0)) { - if (UWI_RECIPE(iarg->current)->reg.bp_status != BP_UNCHANGED) { + x86recipe_t *xr = UWI_RECIPE(iarg->current); + if (xr->reg.bp_status != BP_UNCHANGED) { //---------------------------------------------------------------------- // we are adjusting the stack pointer via 'and' instruction //---------------------------------------------------------------------- diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index 8fa1bd72dd..488dd76a46 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -237,7 +237,7 @@ x86_coalesce_unwind_intervals(unwind_interval *ui) TMSG(COALESCE,"coalescing interval list starting @ %p",ui); if (! ui) { TMSG(COALESCE," --interval list empty, so no work"); - return; + return num_freed; } unwind_interval *first = ui; From 94c12b13b9eaf7579642588cf75fdea9e363e550 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 7 Jul 2017 02:29:35 -0500 Subject: [PATCH 77/85] Rerun autoreconf to solve a problem of missing dependencies. --- Makefile.in | 10 +- doc/Makefile.in | 6 +- doc/man/Makefile.in | 6 +- doc/manual/Makefile.in | 6 +- doc/www/Makefile.in | 6 +- lib/Makefile.in | 6 +- src/Makefile.in | 6 +- src/lib/Makefile.in | 6 +- src/lib/analysis/Makefile.in | 95 +- src/lib/banal/Makefile.in | 81 +- src/lib/binutils/Makefile.in | 95 +- src/lib/isa/Makefile.in | 81 +- src/lib/prof-lean/Makefile.in | 154 +- src/lib/prof/Makefile.in | 137 +- src/lib/profxml/Makefile.in | 74 +- src/lib/stubs-gcc_s/Makefile.in | 45 +- src/lib/support-lean/Makefile.in | 46 +- src/lib/support/Makefile.in | 246 +- src/lib/xml/Makefile.in | 39 +- src/tool/Makefile.in | 6 +- src/tool/hpcfnbounds/Makefile.in | 153 +- src/tool/hpclump/Makefile.in | 58 +- src/tool/hpcprof-flat/Makefile.in | 70 +- src/tool/hpcprof-mpi/Makefile.in | 70 +- src/tool/hpcprof/Makefile.in | 57 +- src/tool/hpcproftt/Makefile.in | 57 +- src/tool/hpcrun-flat/Makefile.in | 130 +- src/tool/hpcrun/Makefile.in | 2999 ++++++++++++++--- src/tool/hpcrun/utilities/bgq-cnk/Makefile.in | 33 +- src/tool/hpcserver/Makefile.in | 253 +- src/tool/hpcserver/mpi/Makefile.in | 326 +- src/tool/hpcstruct/Makefile.in | 57 +- src/tool/misc/Makefile.in | 6 +- src/tool/xprof/Makefile.in | 188 +- 34 files changed, 4576 insertions(+), 1032 deletions(-) diff --git a/Makefile.in b/Makefile.in index 67a6bca838..8cb0a8f9c9 100644 --- a/Makefile.in +++ b/Makefile.in @@ -159,8 +159,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ @@ -499,15 +497,15 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ - echo ' cd $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps'; \ - $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign --ignore-deps \ + echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ + $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps Makefile + $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/Makefile.in b/doc/Makefile.in index 167742fbbc..d67079bc4e 100644 --- a/doc/Makefile.in +++ b/doc/Makefile.in @@ -121,8 +121,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -448,9 +446,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps doc/Makefile + $(AUTOMAKE) --foreign doc/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/man/Makefile.in b/doc/man/Makefile.in index 1cbb891b22..a71b65bae5 100644 --- a/doc/man/Makefile.in +++ b/doc/man/Makefile.in @@ -123,8 +123,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -458,9 +456,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/man/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/man/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps doc/man/Makefile + $(AUTOMAKE) --foreign doc/man/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/manual/Makefile.in b/doc/manual/Makefile.in index 68fd8b572e..d2272ce23c 100644 --- a/doc/manual/Makefile.in +++ b/doc/manual/Makefile.in @@ -123,8 +123,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -418,9 +416,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/manual/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/manual/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps doc/manual/Makefile + $(AUTOMAKE) --foreign doc/manual/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/doc/www/Makefile.in b/doc/www/Makefile.in index 3497c4fd65..b819887432 100644 --- a/doc/www/Makefile.in +++ b/doc/www/Makefile.in @@ -123,8 +123,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -482,9 +480,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps doc/www/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/www/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps doc/www/Makefile + $(AUTOMAKE) --foreign doc/www/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/lib/Makefile.in b/lib/Makefile.in index 2ae667729f..29dc29f731 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -122,8 +122,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -443,9 +441,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps lib/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps lib/Makefile + $(AUTOMAKE) --foreign lib/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/Makefile.in b/src/Makefile.in index d54aab9fa2..e4e1d8e713 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -121,8 +121,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -442,9 +440,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/Makefile + $(AUTOMAKE) --foreign src/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index fb99cfb8fa..15dce5f3e5 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -132,8 +132,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -451,9 +449,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/Makefile + $(AUTOMAKE) --foreign src/lib/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/lib/analysis/Makefile.in b/src/lib/analysis/Makefile.in index 64c5b94424..c40b065195 100644 --- a/src/lib/analysis/Makefile.in +++ b/src/lib/analysis/Makefile.in @@ -169,8 +169,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -233,7 +234,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -557,9 +558,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/analysis/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/analysis/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/analysis/Makefile + $(AUTOMAKE) --foreign src/lib/analysis/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -599,41 +600,99 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Args.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-CallPath.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Raw.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-TextUtil.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCanalysis_la-Util.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCanalysis_la-CallPath.lo: CallPath.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath.lo `test -f 'CallPath.cpp' || echo '$(srcdir)/'`CallPath.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-CallPath.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-CallPath.Tpo -c -o libHPCanalysis_la-CallPath.lo `test -f 'CallPath.cpp' || echo '$(srcdir)/'`CallPath.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-CallPath.Tpo $(DEPDIR)/libHPCanalysis_la-CallPath.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CallPath.cpp' object='libHPCanalysis_la-CallPath.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath.lo `test -f 'CallPath.cpp' || echo '$(srcdir)/'`CallPath.cpp libHPCanalysis_la-CallPath-MetricComponentsFact.lo: CallPath-MetricComponentsFact.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath-MetricComponentsFact.lo `test -f 'CallPath-MetricComponentsFact.cpp' || echo '$(srcdir)/'`CallPath-MetricComponentsFact.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-CallPath-MetricComponentsFact.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Tpo -c -o libHPCanalysis_la-CallPath-MetricComponentsFact.lo `test -f 'CallPath-MetricComponentsFact.cpp' || echo '$(srcdir)/'`CallPath-MetricComponentsFact.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Tpo $(DEPDIR)/libHPCanalysis_la-CallPath-MetricComponentsFact.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CallPath-MetricComponentsFact.cpp' object='libHPCanalysis_la-CallPath-MetricComponentsFact.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-CallPath-MetricComponentsFact.lo `test -f 'CallPath-MetricComponentsFact.cpp' || echo '$(srcdir)/'`CallPath-MetricComponentsFact.cpp libHPCanalysis_la-Flat-SrcCorrelation.lo: Flat-SrcCorrelation.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-SrcCorrelation.lo `test -f 'Flat-SrcCorrelation.cpp' || echo '$(srcdir)/'`Flat-SrcCorrelation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Flat-SrcCorrelation.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Tpo -c -o libHPCanalysis_la-Flat-SrcCorrelation.lo `test -f 'Flat-SrcCorrelation.cpp' || echo '$(srcdir)/'`Flat-SrcCorrelation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Tpo $(DEPDIR)/libHPCanalysis_la-Flat-SrcCorrelation.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Flat-SrcCorrelation.cpp' object='libHPCanalysis_la-Flat-SrcCorrelation.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-SrcCorrelation.lo `test -f 'Flat-SrcCorrelation.cpp' || echo '$(srcdir)/'`Flat-SrcCorrelation.cpp libHPCanalysis_la-Flat-ObjCorrelation.lo: Flat-ObjCorrelation.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-ObjCorrelation.lo `test -f 'Flat-ObjCorrelation.cpp' || echo '$(srcdir)/'`Flat-ObjCorrelation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Flat-ObjCorrelation.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Tpo -c -o libHPCanalysis_la-Flat-ObjCorrelation.lo `test -f 'Flat-ObjCorrelation.cpp' || echo '$(srcdir)/'`Flat-ObjCorrelation.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Tpo $(DEPDIR)/libHPCanalysis_la-Flat-ObjCorrelation.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Flat-ObjCorrelation.cpp' object='libHPCanalysis_la-Flat-ObjCorrelation.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Flat-ObjCorrelation.lo `test -f 'Flat-ObjCorrelation.cpp' || echo '$(srcdir)/'`Flat-ObjCorrelation.cpp libHPCanalysis_la-Raw.lo: Raw.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Raw.lo `test -f 'Raw.cpp' || echo '$(srcdir)/'`Raw.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Raw.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Raw.Tpo -c -o libHPCanalysis_la-Raw.lo `test -f 'Raw.cpp' || echo '$(srcdir)/'`Raw.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Raw.Tpo $(DEPDIR)/libHPCanalysis_la-Raw.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Raw.cpp' object='libHPCanalysis_la-Raw.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Raw.lo `test -f 'Raw.cpp' || echo '$(srcdir)/'`Raw.cpp libHPCanalysis_la-Args.lo: Args.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Args.lo `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Args.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Args.Tpo -c -o libHPCanalysis_la-Args.lo `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Args.Tpo $(DEPDIR)/libHPCanalysis_la-Args.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='libHPCanalysis_la-Args.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Args.lo `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp libHPCanalysis_la-ArgsHPCProf.lo: ArgsHPCProf.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-ArgsHPCProf.lo `test -f 'ArgsHPCProf.cpp' || echo '$(srcdir)/'`ArgsHPCProf.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-ArgsHPCProf.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Tpo -c -o libHPCanalysis_la-ArgsHPCProf.lo `test -f 'ArgsHPCProf.cpp' || echo '$(srcdir)/'`ArgsHPCProf.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Tpo $(DEPDIR)/libHPCanalysis_la-ArgsHPCProf.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ArgsHPCProf.cpp' object='libHPCanalysis_la-ArgsHPCProf.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-ArgsHPCProf.lo `test -f 'ArgsHPCProf.cpp' || echo '$(srcdir)/'`ArgsHPCProf.cpp libHPCanalysis_la-Util.lo: Util.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Util.lo `test -f 'Util.cpp' || echo '$(srcdir)/'`Util.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-Util.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-Util.Tpo -c -o libHPCanalysis_la-Util.lo `test -f 'Util.cpp' || echo '$(srcdir)/'`Util.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-Util.Tpo $(DEPDIR)/libHPCanalysis_la-Util.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Util.cpp' object='libHPCanalysis_la-Util.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-Util.lo `test -f 'Util.cpp' || echo '$(srcdir)/'`Util.cpp libHPCanalysis_la-TextUtil.lo: TextUtil.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-TextUtil.lo `test -f 'TextUtil.cpp' || echo '$(srcdir)/'`TextUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCanalysis_la-TextUtil.lo -MD -MP -MF $(DEPDIR)/libHPCanalysis_la-TextUtil.Tpo -c -o libHPCanalysis_la-TextUtil.lo `test -f 'TextUtil.cpp' || echo '$(srcdir)/'`TextUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCanalysis_la-TextUtil.Tpo $(DEPDIR)/libHPCanalysis_la-TextUtil.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TextUtil.cpp' object='libHPCanalysis_la-TextUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCanalysis_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCanalysis_la-TextUtil.lo `test -f 'TextUtil.cpp' || echo '$(srcdir)/'`TextUtil.cpp mostlyclean-libtool: -rm -f *.lo @@ -764,6 +823,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -809,6 +869,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/banal/Makefile.in b/src/lib/banal/Makefile.in index f890c36e20..47ddb02e2b 100644 --- a/src/lib/banal/Makefile.in +++ b/src/lib/banal/Makefile.in @@ -188,8 +188,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -253,7 +254,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -575,9 +576,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/banal/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/banal/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/banal/Makefile + $(AUTOMAKE) --foreign src/lib/banal/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -620,35 +621,83 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Linemap.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-OAInterface.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Struct-Inline.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-Struct.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_la-StructSimple.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbanal_simple_la-StructSimple.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCbanal_la-Linemap.lo: Linemap.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Linemap.lo `test -f 'Linemap.cpp' || echo '$(srcdir)/'`Linemap.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Linemap.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Linemap.Tpo -c -o libHPCbanal_la-Linemap.lo `test -f 'Linemap.cpp' || echo '$(srcdir)/'`Linemap.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Linemap.Tpo $(DEPDIR)/libHPCbanal_la-Linemap.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Linemap.cpp' object='libHPCbanal_la-Linemap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Linemap.lo `test -f 'Linemap.cpp' || echo '$(srcdir)/'`Linemap.cpp libHPCbanal_la-Struct.lo: Struct.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct.lo `test -f 'Struct.cpp' || echo '$(srcdir)/'`Struct.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Struct.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Struct.Tpo -c -o libHPCbanal_la-Struct.lo `test -f 'Struct.cpp' || echo '$(srcdir)/'`Struct.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Struct.Tpo $(DEPDIR)/libHPCbanal_la-Struct.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct.cpp' object='libHPCbanal_la-Struct.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct.lo `test -f 'Struct.cpp' || echo '$(srcdir)/'`Struct.cpp libHPCbanal_la-StructSimple.lo: StructSimple.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-StructSimple.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-StructSimple.Tpo -c -o libHPCbanal_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-StructSimple.Tpo $(DEPDIR)/libHPCbanal_la-StructSimple.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StructSimple.cpp' object='libHPCbanal_la-StructSimple.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp libHPCbanal_la-Struct-LocationMgr.lo: Struct-LocationMgr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-LocationMgr.lo `test -f 'Struct-LocationMgr.cpp' || echo '$(srcdir)/'`Struct-LocationMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Struct-LocationMgr.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Tpo -c -o libHPCbanal_la-Struct-LocationMgr.lo `test -f 'Struct-LocationMgr.cpp' || echo '$(srcdir)/'`Struct-LocationMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Tpo $(DEPDIR)/libHPCbanal_la-Struct-LocationMgr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-LocationMgr.cpp' object='libHPCbanal_la-Struct-LocationMgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-LocationMgr.lo `test -f 'Struct-LocationMgr.cpp' || echo '$(srcdir)/'`Struct-LocationMgr.cpp libHPCbanal_la-Struct-Inline.lo: Struct-Inline.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-Inline.lo `test -f 'Struct-Inline.cpp' || echo '$(srcdir)/'`Struct-Inline.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-Struct-Inline.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-Struct-Inline.Tpo -c -o libHPCbanal_la-Struct-Inline.lo `test -f 'Struct-Inline.cpp' || echo '$(srcdir)/'`Struct-Inline.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-Struct-Inline.Tpo $(DEPDIR)/libHPCbanal_la-Struct-Inline.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-Inline.cpp' object='libHPCbanal_la-Struct-Inline.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-Struct-Inline.lo `test -f 'Struct-Inline.cpp' || echo '$(srcdir)/'`Struct-Inline.cpp libHPCbanal_la-OAInterface.lo: OAInterface.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-OAInterface.lo `test -f 'OAInterface.cpp' || echo '$(srcdir)/'`OAInterface.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_la-OAInterface.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_la-OAInterface.Tpo -c -o libHPCbanal_la-OAInterface.lo `test -f 'OAInterface.cpp' || echo '$(srcdir)/'`OAInterface.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_la-OAInterface.Tpo $(DEPDIR)/libHPCbanal_la-OAInterface.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='OAInterface.cpp' object='libHPCbanal_la-OAInterface.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_la-OAInterface.lo `test -f 'OAInterface.cpp' || echo '$(srcdir)/'`OAInterface.cpp libHPCbanal_simple_la-StructSimple.lo: StructSimple.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_simple_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_simple_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_simple_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbanal_simple_la-StructSimple.lo -MD -MP -MF $(DEPDIR)/libHPCbanal_simple_la-StructSimple.Tpo -c -o libHPCbanal_simple_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbanal_simple_la-StructSimple.Tpo $(DEPDIR)/libHPCbanal_simple_la-StructSimple.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StructSimple.cpp' object='libHPCbanal_simple_la-StructSimple.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbanal_simple_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbanal_simple_la-StructSimple.lo `test -f 'StructSimple.cpp' || echo '$(srcdir)/'`StructSimple.cpp mostlyclean-libtool: -rm -f *.lo @@ -779,6 +828,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -824,6 +874,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/binutils/Makefile.in b/src/lib/binutils/Makefile.in index f6958999ad..d9b480cac8 100644 --- a/src/lib/binutils/Makefile.in +++ b/src/lib/binutils/Makefile.in @@ -167,8 +167,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -231,7 +232,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -551,9 +552,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/binutils/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/binutils/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/binutils/Makefile + $(AUTOMAKE) --foreign src/lib/binutils/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -593,41 +594,99 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-BinUtils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Dbg-LM.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Demangler.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Insn.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-LM.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Proc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-Seg.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCbinutils_la-VMAInterval.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCbinutils_la-Demangler.lo: Demangler.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Demangler.lo `test -f 'Demangler.cpp' || echo '$(srcdir)/'`Demangler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Demangler.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Demangler.Tpo -c -o libHPCbinutils_la-Demangler.lo `test -f 'Demangler.cpp' || echo '$(srcdir)/'`Demangler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Demangler.Tpo $(DEPDIR)/libHPCbinutils_la-Demangler.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Demangler.cpp' object='libHPCbinutils_la-Demangler.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Demangler.lo `test -f 'Demangler.cpp' || echo '$(srcdir)/'`Demangler.cpp libHPCbinutils_la-LM.lo: LM.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-LM.lo `test -f 'LM.cpp' || echo '$(srcdir)/'`LM.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-LM.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-LM.Tpo -c -o libHPCbinutils_la-LM.lo `test -f 'LM.cpp' || echo '$(srcdir)/'`LM.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-LM.Tpo $(DEPDIR)/libHPCbinutils_la-LM.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LM.cpp' object='libHPCbinutils_la-LM.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-LM.lo `test -f 'LM.cpp' || echo '$(srcdir)/'`LM.cpp libHPCbinutils_la-Seg.lo: Seg.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Seg.lo `test -f 'Seg.cpp' || echo '$(srcdir)/'`Seg.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Seg.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Seg.Tpo -c -o libHPCbinutils_la-Seg.lo `test -f 'Seg.cpp' || echo '$(srcdir)/'`Seg.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Seg.Tpo $(DEPDIR)/libHPCbinutils_la-Seg.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Seg.cpp' object='libHPCbinutils_la-Seg.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Seg.lo `test -f 'Seg.cpp' || echo '$(srcdir)/'`Seg.cpp libHPCbinutils_la-Proc.lo: Proc.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Proc.lo `test -f 'Proc.cpp' || echo '$(srcdir)/'`Proc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Proc.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Proc.Tpo -c -o libHPCbinutils_la-Proc.lo `test -f 'Proc.cpp' || echo '$(srcdir)/'`Proc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Proc.Tpo $(DEPDIR)/libHPCbinutils_la-Proc.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Proc.cpp' object='libHPCbinutils_la-Proc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Proc.lo `test -f 'Proc.cpp' || echo '$(srcdir)/'`Proc.cpp libHPCbinutils_la-Insn.lo: Insn.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Insn.lo `test -f 'Insn.cpp' || echo '$(srcdir)/'`Insn.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Insn.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Insn.Tpo -c -o libHPCbinutils_la-Insn.lo `test -f 'Insn.cpp' || echo '$(srcdir)/'`Insn.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Insn.Tpo $(DEPDIR)/libHPCbinutils_la-Insn.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Insn.cpp' object='libHPCbinutils_la-Insn.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Insn.lo `test -f 'Insn.cpp' || echo '$(srcdir)/'`Insn.cpp libHPCbinutils_la-Dbg-LM.lo: Dbg-LM.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-LM.lo `test -f 'Dbg-LM.cpp' || echo '$(srcdir)/'`Dbg-LM.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Dbg-LM.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Dbg-LM.Tpo -c -o libHPCbinutils_la-Dbg-LM.lo `test -f 'Dbg-LM.cpp' || echo '$(srcdir)/'`Dbg-LM.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Dbg-LM.Tpo $(DEPDIR)/libHPCbinutils_la-Dbg-LM.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Dbg-LM.cpp' object='libHPCbinutils_la-Dbg-LM.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-LM.lo `test -f 'Dbg-LM.cpp' || echo '$(srcdir)/'`Dbg-LM.cpp libHPCbinutils_la-Dbg-Proc.lo: Dbg-Proc.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-Proc.lo `test -f 'Dbg-Proc.cpp' || echo '$(srcdir)/'`Dbg-Proc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-Dbg-Proc.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Tpo -c -o libHPCbinutils_la-Dbg-Proc.lo `test -f 'Dbg-Proc.cpp' || echo '$(srcdir)/'`Dbg-Proc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Tpo $(DEPDIR)/libHPCbinutils_la-Dbg-Proc.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Dbg-Proc.cpp' object='libHPCbinutils_la-Dbg-Proc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-Dbg-Proc.lo `test -f 'Dbg-Proc.cpp' || echo '$(srcdir)/'`Dbg-Proc.cpp libHPCbinutils_la-BinUtils.lo: BinUtils.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-BinUtils.lo `test -f 'BinUtils.cpp' || echo '$(srcdir)/'`BinUtils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-BinUtils.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-BinUtils.Tpo -c -o libHPCbinutils_la-BinUtils.lo `test -f 'BinUtils.cpp' || echo '$(srcdir)/'`BinUtils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-BinUtils.Tpo $(DEPDIR)/libHPCbinutils_la-BinUtils.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BinUtils.cpp' object='libHPCbinutils_la-BinUtils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-BinUtils.lo `test -f 'BinUtils.cpp' || echo '$(srcdir)/'`BinUtils.cpp libHPCbinutils_la-VMAInterval.lo: VMAInterval.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-VMAInterval.lo `test -f 'VMAInterval.cpp' || echo '$(srcdir)/'`VMAInterval.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCbinutils_la-VMAInterval.lo -MD -MP -MF $(DEPDIR)/libHPCbinutils_la-VMAInterval.Tpo -c -o libHPCbinutils_la-VMAInterval.lo `test -f 'VMAInterval.cpp' || echo '$(srcdir)/'`VMAInterval.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCbinutils_la-VMAInterval.Tpo $(DEPDIR)/libHPCbinutils_la-VMAInterval.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='VMAInterval.cpp' object='libHPCbinutils_la-VMAInterval.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCbinutils_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCbinutils_la-VMAInterval.lo `test -f 'VMAInterval.cpp' || echo '$(srcdir)/'`VMAInterval.cpp mostlyclean-libtool: -rm -f *.lo @@ -758,6 +817,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -803,6 +863,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/isa/Makefile.in b/src/lib/isa/Makefile.in index 050ffab706..0848f79089 100644 --- a/src/lib/isa/Makefile.in +++ b/src/lib/isa/Makefile.in @@ -177,8 +177,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -241,7 +242,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -553,9 +554,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/isa/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/isa/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/isa/Makefile + $(AUTOMAKE) --foreign src/lib/isa/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -595,35 +596,83 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-IA64ISA.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-ISA.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-PowerISA.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISA.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISABinutils.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISAXed.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCisa_la-ISA.lo: ISA.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-ISA.lo `test -f 'ISA.cpp' || echo '$(srcdir)/'`ISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-ISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-ISA.Tpo -c -o libHPCisa_la-ISA.lo `test -f 'ISA.cpp' || echo '$(srcdir)/'`ISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-ISA.Tpo $(DEPDIR)/libHPCisa_la-ISA.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ISA.cpp' object='libHPCisa_la-ISA.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-ISA.lo `test -f 'ISA.cpp' || echo '$(srcdir)/'`ISA.cpp libHPCisa_la-PowerISA.lo: PowerISA.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-PowerISA.lo `test -f 'PowerISA.cpp' || echo '$(srcdir)/'`PowerISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-PowerISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-PowerISA.Tpo -c -o libHPCisa_la-PowerISA.lo `test -f 'PowerISA.cpp' || echo '$(srcdir)/'`PowerISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-PowerISA.Tpo $(DEPDIR)/libHPCisa_la-PowerISA.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PowerISA.cpp' object='libHPCisa_la-PowerISA.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-PowerISA.lo `test -f 'PowerISA.cpp' || echo '$(srcdir)/'`PowerISA.cpp libHPCisa_la-x86ISA.lo: x86ISA.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISA.lo `test -f 'x86ISA.cpp' || echo '$(srcdir)/'`x86ISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISA.Tpo -c -o libHPCisa_la-x86ISA.lo `test -f 'x86ISA.cpp' || echo '$(srcdir)/'`x86ISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISA.Tpo $(DEPDIR)/libHPCisa_la-x86ISA.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISA.cpp' object='libHPCisa_la-x86ISA.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISA.lo `test -f 'x86ISA.cpp' || echo '$(srcdir)/'`x86ISA.cpp libHPCisa_la-x86ISABinutils.lo: x86ISABinutils.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISABinutils.lo `test -f 'x86ISABinutils.cpp' || echo '$(srcdir)/'`x86ISABinutils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISABinutils.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISABinutils.Tpo -c -o libHPCisa_la-x86ISABinutils.lo `test -f 'x86ISABinutils.cpp' || echo '$(srcdir)/'`x86ISABinutils.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISABinutils.Tpo $(DEPDIR)/libHPCisa_la-x86ISABinutils.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISABinutils.cpp' object='libHPCisa_la-x86ISABinutils.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISABinutils.lo `test -f 'x86ISABinutils.cpp' || echo '$(srcdir)/'`x86ISABinutils.cpp libHPCisa_la-IA64ISA.lo: IA64ISA.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-IA64ISA.lo `test -f 'IA64ISA.cpp' || echo '$(srcdir)/'`IA64ISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-IA64ISA.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-IA64ISA.Tpo -c -o libHPCisa_la-IA64ISA.lo `test -f 'IA64ISA.cpp' || echo '$(srcdir)/'`IA64ISA.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-IA64ISA.Tpo $(DEPDIR)/libHPCisa_la-IA64ISA.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IA64ISA.cpp' object='libHPCisa_la-IA64ISA.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-IA64ISA.lo `test -f 'IA64ISA.cpp' || echo '$(srcdir)/'`IA64ISA.cpp libHPCisa_la-x86ISAXed.lo: x86ISAXed.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed.lo `test -f 'x86ISAXed.cpp' || echo '$(srcdir)/'`x86ISAXed.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISAXed.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISAXed.Tpo -c -o libHPCisa_la-x86ISAXed.lo `test -f 'x86ISAXed.cpp' || echo '$(srcdir)/'`x86ISAXed.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISAXed.Tpo $(DEPDIR)/libHPCisa_la-x86ISAXed.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISAXed.cpp' object='libHPCisa_la-x86ISAXed.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed.lo `test -f 'x86ISAXed.cpp' || echo '$(srcdir)/'`x86ISAXed.cpp libHPCisa_la-x86ISAXed_dummy.lo: x86ISAXed_dummy.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed_dummy.lo `test -f 'x86ISAXed_dummy.cpp' || echo '$(srcdir)/'`x86ISAXed_dummy.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCisa_la-x86ISAXed_dummy.lo -MD -MP -MF $(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Tpo -c -o libHPCisa_la-x86ISAXed_dummy.lo `test -f 'x86ISAXed_dummy.cpp' || echo '$(srcdir)/'`x86ISAXed_dummy.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Tpo $(DEPDIR)/libHPCisa_la-x86ISAXed_dummy.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86ISAXed_dummy.cpp' object='libHPCisa_la-x86ISAXed_dummy.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCisa_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCisa_la-x86ISAXed_dummy.lo `test -f 'x86ISAXed_dummy.cpp' || echo '$(srcdir)/'`x86ISAXed_dummy.cpp mostlyclean-libtool: -rm -f *.lo @@ -754,6 +803,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -799,6 +849,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/prof-lean/Makefile.in b/src/lib/prof-lean/Makefile.in index 1147d32d6a..93768cf557 100644 --- a/src/lib/prof-lean/Makefile.in +++ b/src/lib/prof-lean/Makefile.in @@ -177,8 +177,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -223,7 +224,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -558,9 +559,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/prof-lean/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/prof-lean/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/prof-lean/Makefile + $(AUTOMAKE) --foreign src/lib/prof-lean/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -593,7 +594,11 @@ clean-noinstLTLIBRARIES: lush/$(am__dirstamp): @$(MKDIR_P) lush @: > lush/$(am__dirstamp) -lush/libHPCprof_lean_la-lush-support.lo: lush/$(am__dirstamp) +lush/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) lush/$(DEPDIR) + @: > lush/$(DEPDIR)/$(am__dirstamp) +lush/libHPCprof_lean_la-lush-support.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) libHPCprof-lean.la: $(libHPCprof_lean_la_OBJECTS) $(libHPCprof_lean_la_DEPENDENCIES) $(EXTRA_libHPCprof_lean_la_DEPENDENCIES) $(AM_V_CCLD)$(libHPCprof_lean_la_LINK) $(libHPCprof_lean_la_OBJECTS) $(libHPCprof_lean_la_LIBADD) $(LIBS) @@ -606,62 +611,158 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-BalancedTree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-binarytree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-cskiplist.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-generic_pair.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcfmt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcio.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-mcs-lock.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-placeholders.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-randomizer.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-spinlock.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-urand.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_lean_la-usec_time.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Plo@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libHPCprof_lean_la-hpcrun-fmt.lo: hpcrun-fmt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcrun-fmt.lo `test -f 'hpcrun-fmt.c' || echo '$(srcdir)/'`hpcrun-fmt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcrun-fmt.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Tpo -c -o libHPCprof_lean_la-hpcrun-fmt.lo `test -f 'hpcrun-fmt.c' || echo '$(srcdir)/'`hpcrun-fmt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcrun-fmt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun-fmt.c' object='libHPCprof_lean_la-hpcrun-fmt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcrun-fmt.lo `test -f 'hpcrun-fmt.c' || echo '$(srcdir)/'`hpcrun-fmt.c libHPCprof_lean_la-hpcfmt.lo: hpcfmt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcfmt.lo `test -f 'hpcfmt.c' || echo '$(srcdir)/'`hpcfmt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcfmt.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcfmt.Tpo -c -o libHPCprof_lean_la-hpcfmt.lo `test -f 'hpcfmt.c' || echo '$(srcdir)/'`hpcfmt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcfmt.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcfmt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcfmt.c' object='libHPCprof_lean_la-hpcfmt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcfmt.lo `test -f 'hpcfmt.c' || echo '$(srcdir)/'`hpcfmt.c libHPCprof_lean_la-hpcio.lo: hpcio.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio.lo `test -f 'hpcio.c' || echo '$(srcdir)/'`hpcio.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcio.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcio.Tpo -c -o libHPCprof_lean_la-hpcio.lo `test -f 'hpcio.c' || echo '$(srcdir)/'`hpcio.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcio.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcio.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcio.c' object='libHPCprof_lean_la-hpcio.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio.lo `test -f 'hpcio.c' || echo '$(srcdir)/'`hpcio.c libHPCprof_lean_la-hpcio-buffer.lo: hpcio-buffer.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio-buffer.lo `test -f 'hpcio-buffer.c' || echo '$(srcdir)/'`hpcio-buffer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-hpcio-buffer.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Tpo -c -o libHPCprof_lean_la-hpcio-buffer.lo `test -f 'hpcio-buffer.c' || echo '$(srcdir)/'`hpcio-buffer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Tpo $(DEPDIR)/libHPCprof_lean_la-hpcio-buffer.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcio-buffer.c' object='libHPCprof_lean_la-hpcio-buffer.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-hpcio-buffer.lo `test -f 'hpcio-buffer.c' || echo '$(srcdir)/'`hpcio-buffer.c libHPCprof_lean_la-mcs-lock.lo: mcs-lock.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-mcs-lock.lo `test -f 'mcs-lock.c' || echo '$(srcdir)/'`mcs-lock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-mcs-lock.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-mcs-lock.Tpo -c -o libHPCprof_lean_la-mcs-lock.lo `test -f 'mcs-lock.c' || echo '$(srcdir)/'`mcs-lock.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-mcs-lock.Tpo $(DEPDIR)/libHPCprof_lean_la-mcs-lock.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='mcs-lock.c' object='libHPCprof_lean_la-mcs-lock.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-mcs-lock.lo `test -f 'mcs-lock.c' || echo '$(srcdir)/'`mcs-lock.c libHPCprof_lean_la-pfq-rwlock.lo: pfq-rwlock.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-pfq-rwlock.lo `test -f 'pfq-rwlock.c' || echo '$(srcdir)/'`pfq-rwlock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-pfq-rwlock.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Tpo -c -o libHPCprof_lean_la-pfq-rwlock.lo `test -f 'pfq-rwlock.c' || echo '$(srcdir)/'`pfq-rwlock.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Tpo $(DEPDIR)/libHPCprof_lean_la-pfq-rwlock.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pfq-rwlock.c' object='libHPCprof_lean_la-pfq-rwlock.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-pfq-rwlock.lo `test -f 'pfq-rwlock.c' || echo '$(srcdir)/'`pfq-rwlock.c libHPCprof_lean_la-spinlock.lo: spinlock.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-spinlock.lo `test -f 'spinlock.c' || echo '$(srcdir)/'`spinlock.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-spinlock.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-spinlock.Tpo -c -o libHPCprof_lean_la-spinlock.lo `test -f 'spinlock.c' || echo '$(srcdir)/'`spinlock.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-spinlock.Tpo $(DEPDIR)/libHPCprof_lean_la-spinlock.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='spinlock.c' object='libHPCprof_lean_la-spinlock.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-spinlock.lo `test -f 'spinlock.c' || echo '$(srcdir)/'`spinlock.c libHPCprof_lean_la-urand.lo: urand.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-urand.lo `test -f 'urand.c' || echo '$(srcdir)/'`urand.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-urand.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-urand.Tpo -c -o libHPCprof_lean_la-urand.lo `test -f 'urand.c' || echo '$(srcdir)/'`urand.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-urand.Tpo $(DEPDIR)/libHPCprof_lean_la-urand.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='urand.c' object='libHPCprof_lean_la-urand.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-urand.lo `test -f 'urand.c' || echo '$(srcdir)/'`urand.c libHPCprof_lean_la-usec_time.lo: usec_time.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-usec_time.lo `test -f 'usec_time.c' || echo '$(srcdir)/'`usec_time.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-usec_time.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-usec_time.Tpo -c -o libHPCprof_lean_la-usec_time.lo `test -f 'usec_time.c' || echo '$(srcdir)/'`usec_time.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-usec_time.Tpo $(DEPDIR)/libHPCprof_lean_la-usec_time.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='usec_time.c' object='libHPCprof_lean_la-usec_time.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-usec_time.lo `test -f 'usec_time.c' || echo '$(srcdir)/'`usec_time.c libHPCprof_lean_la-BalancedTree.lo: BalancedTree.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-BalancedTree.lo `test -f 'BalancedTree.c' || echo '$(srcdir)/'`BalancedTree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-BalancedTree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-BalancedTree.Tpo -c -o libHPCprof_lean_la-BalancedTree.lo `test -f 'BalancedTree.c' || echo '$(srcdir)/'`BalancedTree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-BalancedTree.Tpo $(DEPDIR)/libHPCprof_lean_la-BalancedTree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='BalancedTree.c' object='libHPCprof_lean_la-BalancedTree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-BalancedTree.lo `test -f 'BalancedTree.c' || echo '$(srcdir)/'`BalancedTree.c libHPCprof_lean_la-placeholders.lo: placeholders.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-placeholders.lo `test -f 'placeholders.c' || echo '$(srcdir)/'`placeholders.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-placeholders.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-placeholders.Tpo -c -o libHPCprof_lean_la-placeholders.lo `test -f 'placeholders.c' || echo '$(srcdir)/'`placeholders.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-placeholders.Tpo $(DEPDIR)/libHPCprof_lean_la-placeholders.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='placeholders.c' object='libHPCprof_lean_la-placeholders.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-placeholders.lo `test -f 'placeholders.c' || echo '$(srcdir)/'`placeholders.c lush/libHPCprof_lean_la-lush-support.lo: lush/lush-support.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o lush/libHPCprof_lean_la-lush-support.lo `test -f 'lush/lush-support.c' || echo '$(srcdir)/'`lush/lush-support.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT lush/libHPCprof_lean_la-lush-support.lo -MD -MP -MF lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Tpo -c -o lush/libHPCprof_lean_la-lush-support.lo `test -f 'lush/lush-support.c' || echo '$(srcdir)/'`lush/lush-support.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Tpo lush/$(DEPDIR)/libHPCprof_lean_la-lush-support.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support.c' object='lush/libHPCprof_lean_la-lush-support.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o lush/libHPCprof_lean_la-lush-support.lo `test -f 'lush/lush-support.c' || echo '$(srcdir)/'`lush/lush-support.c libHPCprof_lean_la-binarytree.lo: binarytree.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-binarytree.lo `test -f 'binarytree.c' || echo '$(srcdir)/'`binarytree.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-binarytree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-binarytree.Tpo -c -o libHPCprof_lean_la-binarytree.lo `test -f 'binarytree.c' || echo '$(srcdir)/'`binarytree.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-binarytree.Tpo $(DEPDIR)/libHPCprof_lean_la-binarytree.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='binarytree.c' object='libHPCprof_lean_la-binarytree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-binarytree.lo `test -f 'binarytree.c' || echo '$(srcdir)/'`binarytree.c libHPCprof_lean_la-cskiplist.lo: cskiplist.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-cskiplist.lo `test -f 'cskiplist.c' || echo '$(srcdir)/'`cskiplist.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-cskiplist.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-cskiplist.Tpo -c -o libHPCprof_lean_la-cskiplist.lo `test -f 'cskiplist.c' || echo '$(srcdir)/'`cskiplist.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-cskiplist.Tpo $(DEPDIR)/libHPCprof_lean_la-cskiplist.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cskiplist.c' object='libHPCprof_lean_la-cskiplist.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-cskiplist.lo `test -f 'cskiplist.c' || echo '$(srcdir)/'`cskiplist.c libHPCprof_lean_la-generic_pair.lo: generic_pair.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-generic_pair.lo `test -f 'generic_pair.c' || echo '$(srcdir)/'`generic_pair.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-generic_pair.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-generic_pair.Tpo -c -o libHPCprof_lean_la-generic_pair.lo `test -f 'generic_pair.c' || echo '$(srcdir)/'`generic_pair.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-generic_pair.Tpo $(DEPDIR)/libHPCprof_lean_la-generic_pair.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='generic_pair.c' object='libHPCprof_lean_la-generic_pair.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-generic_pair.lo `test -f 'generic_pair.c' || echo '$(srcdir)/'`generic_pair.c libHPCprof_lean_la-randomizer.lo: randomizer.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-randomizer.lo `test -f 'randomizer.c' || echo '$(srcdir)/'`randomizer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -MT libHPCprof_lean_la-randomizer.lo -MD -MP -MF $(DEPDIR)/libHPCprof_lean_la-randomizer.Tpo -c -o libHPCprof_lean_la-randomizer.lo `test -f 'randomizer.c' || echo '$(srcdir)/'`randomizer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_lean_la-randomizer.Tpo $(DEPDIR)/libHPCprof_lean_la-randomizer.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='randomizer.c' object='libHPCprof_lean_la-randomizer.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCprof_lean_la-randomizer.lo `test -f 'randomizer.c' || echo '$(srcdir)/'`randomizer.c mostlyclean-libtool: -rm -f *.lo @@ -783,6 +884,7 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f lush/$(DEPDIR)/$(am__dirstamp) -rm -f lush/$(am__dirstamp) maintainer-clean-generic: @@ -794,6 +896,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) lush/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -839,6 +942,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) lush/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/prof/Makefile.in b/src/lib/prof/Makefile.in index 03f026aa21..c59f2f18d6 100644 --- a/src/lib/prof/Makefile.in +++ b/src/lib/prof/Makefile.in @@ -173,8 +173,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -237,7 +238,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -568,9 +569,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/prof/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/prof/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/prof/Makefile + $(AUTOMAKE) --foreign src/lib/prof/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -610,59 +611,147 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CCT-Merge.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CCT-Tree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-CallPath-Profile.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Flat-ProfileData.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-LoadMap.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-ADesc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-AExpr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-IData.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Metric-Mgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-NameMappings.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Struct-Tree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCprof_la-Metric-Mgr.lo: Metric-Mgr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-Mgr.lo `test -f 'Metric-Mgr.cpp' || echo '$(srcdir)/'`Metric-Mgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-Mgr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-Mgr.Tpo -c -o libHPCprof_la-Metric-Mgr.lo `test -f 'Metric-Mgr.cpp' || echo '$(srcdir)/'`Metric-Mgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-Mgr.Tpo $(DEPDIR)/libHPCprof_la-Metric-Mgr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-Mgr.cpp' object='libHPCprof_la-Metric-Mgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-Mgr.lo `test -f 'Metric-Mgr.cpp' || echo '$(srcdir)/'`Metric-Mgr.cpp libHPCprof_la-Metric-ADesc.lo: Metric-ADesc.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-ADesc.lo `test -f 'Metric-ADesc.cpp' || echo '$(srcdir)/'`Metric-ADesc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-ADesc.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-ADesc.Tpo -c -o libHPCprof_la-Metric-ADesc.lo `test -f 'Metric-ADesc.cpp' || echo '$(srcdir)/'`Metric-ADesc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-ADesc.Tpo $(DEPDIR)/libHPCprof_la-Metric-ADesc.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-ADesc.cpp' object='libHPCprof_la-Metric-ADesc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-ADesc.lo `test -f 'Metric-ADesc.cpp' || echo '$(srcdir)/'`Metric-ADesc.cpp libHPCprof_la-Metric-IData.lo: Metric-IData.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IData.lo `test -f 'Metric-IData.cpp' || echo '$(srcdir)/'`Metric-IData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-IData.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-IData.Tpo -c -o libHPCprof_la-Metric-IData.lo `test -f 'Metric-IData.cpp' || echo '$(srcdir)/'`Metric-IData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-IData.Tpo $(DEPDIR)/libHPCprof_la-Metric-IData.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-IData.cpp' object='libHPCprof_la-Metric-IData.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IData.lo `test -f 'Metric-IData.cpp' || echo '$(srcdir)/'`Metric-IData.cpp libHPCprof_la-Metric-AExpr.lo: Metric-AExpr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExpr.lo `test -f 'Metric-AExpr.cpp' || echo '$(srcdir)/'`Metric-AExpr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-AExpr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-AExpr.Tpo -c -o libHPCprof_la-Metric-AExpr.lo `test -f 'Metric-AExpr.cpp' || echo '$(srcdir)/'`Metric-AExpr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-AExpr.Tpo $(DEPDIR)/libHPCprof_la-Metric-AExpr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-AExpr.cpp' object='libHPCprof_la-Metric-AExpr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExpr.lo `test -f 'Metric-AExpr.cpp' || echo '$(srcdir)/'`Metric-AExpr.cpp libHPCprof_la-Metric-AExprIncr.lo: Metric-AExprIncr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExprIncr.lo `test -f 'Metric-AExprIncr.cpp' || echo '$(srcdir)/'`Metric-AExprIncr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-AExprIncr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Tpo -c -o libHPCprof_la-Metric-AExprIncr.lo `test -f 'Metric-AExprIncr.cpp' || echo '$(srcdir)/'`Metric-AExprIncr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Tpo $(DEPDIR)/libHPCprof_la-Metric-AExprIncr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-AExprIncr.cpp' object='libHPCprof_la-Metric-AExprIncr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-AExprIncr.lo `test -f 'Metric-AExprIncr.cpp' || echo '$(srcdir)/'`Metric-AExprIncr.cpp libHPCprof_la-Metric-IDBExpr.lo: Metric-IDBExpr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IDBExpr.lo `test -f 'Metric-IDBExpr.cpp' || echo '$(srcdir)/'`Metric-IDBExpr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Metric-IDBExpr.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Tpo -c -o libHPCprof_la-Metric-IDBExpr.lo `test -f 'Metric-IDBExpr.cpp' || echo '$(srcdir)/'`Metric-IDBExpr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Tpo $(DEPDIR)/libHPCprof_la-Metric-IDBExpr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Metric-IDBExpr.cpp' object='libHPCprof_la-Metric-IDBExpr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Metric-IDBExpr.lo `test -f 'Metric-IDBExpr.cpp' || echo '$(srcdir)/'`Metric-IDBExpr.cpp libHPCprof_la-LoadMap.lo: LoadMap.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-LoadMap.lo `test -f 'LoadMap.cpp' || echo '$(srcdir)/'`LoadMap.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-LoadMap.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-LoadMap.Tpo -c -o libHPCprof_la-LoadMap.lo `test -f 'LoadMap.cpp' || echo '$(srcdir)/'`LoadMap.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-LoadMap.Tpo $(DEPDIR)/libHPCprof_la-LoadMap.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LoadMap.cpp' object='libHPCprof_la-LoadMap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-LoadMap.lo `test -f 'LoadMap.cpp' || echo '$(srcdir)/'`LoadMap.cpp libHPCprof_la-Struct-Tree.lo: Struct-Tree.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-Tree.lo `test -f 'Struct-Tree.cpp' || echo '$(srcdir)/'`Struct-Tree.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Struct-Tree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Struct-Tree.Tpo -c -o libHPCprof_la-Struct-Tree.lo `test -f 'Struct-Tree.cpp' || echo '$(srcdir)/'`Struct-Tree.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Struct-Tree.Tpo $(DEPDIR)/libHPCprof_la-Struct-Tree.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-Tree.cpp' object='libHPCprof_la-Struct-Tree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-Tree.lo `test -f 'Struct-Tree.cpp' || echo '$(srcdir)/'`Struct-Tree.cpp libHPCprof_la-Struct-TreeIterator.lo: Struct-TreeIterator.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-TreeIterator.lo `test -f 'Struct-TreeIterator.cpp' || echo '$(srcdir)/'`Struct-TreeIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Struct-TreeIterator.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Tpo -c -o libHPCprof_la-Struct-TreeIterator.lo `test -f 'Struct-TreeIterator.cpp' || echo '$(srcdir)/'`Struct-TreeIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Tpo $(DEPDIR)/libHPCprof_la-Struct-TreeIterator.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Struct-TreeIterator.cpp' object='libHPCprof_la-Struct-TreeIterator.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Struct-TreeIterator.lo `test -f 'Struct-TreeIterator.cpp' || echo '$(srcdir)/'`Struct-TreeIterator.cpp libHPCprof_la-CCT-Tree.lo: CCT-Tree.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Tree.lo `test -f 'CCT-Tree.cpp' || echo '$(srcdir)/'`CCT-Tree.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CCT-Tree.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CCT-Tree.Tpo -c -o libHPCprof_la-CCT-Tree.lo `test -f 'CCT-Tree.cpp' || echo '$(srcdir)/'`CCT-Tree.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CCT-Tree.Tpo $(DEPDIR)/libHPCprof_la-CCT-Tree.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CCT-Tree.cpp' object='libHPCprof_la-CCT-Tree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Tree.lo `test -f 'CCT-Tree.cpp' || echo '$(srcdir)/'`CCT-Tree.cpp libHPCprof_la-CCT-TreeIterator.lo: CCT-TreeIterator.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-TreeIterator.lo `test -f 'CCT-TreeIterator.cpp' || echo '$(srcdir)/'`CCT-TreeIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CCT-TreeIterator.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Tpo -c -o libHPCprof_la-CCT-TreeIterator.lo `test -f 'CCT-TreeIterator.cpp' || echo '$(srcdir)/'`CCT-TreeIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Tpo $(DEPDIR)/libHPCprof_la-CCT-TreeIterator.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CCT-TreeIterator.cpp' object='libHPCprof_la-CCT-TreeIterator.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-TreeIterator.lo `test -f 'CCT-TreeIterator.cpp' || echo '$(srcdir)/'`CCT-TreeIterator.cpp libHPCprof_la-CCT-Merge.lo: CCT-Merge.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Merge.lo `test -f 'CCT-Merge.cpp' || echo '$(srcdir)/'`CCT-Merge.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CCT-Merge.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CCT-Merge.Tpo -c -o libHPCprof_la-CCT-Merge.lo `test -f 'CCT-Merge.cpp' || echo '$(srcdir)/'`CCT-Merge.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CCT-Merge.Tpo $(DEPDIR)/libHPCprof_la-CCT-Merge.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CCT-Merge.cpp' object='libHPCprof_la-CCT-Merge.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CCT-Merge.lo `test -f 'CCT-Merge.cpp' || echo '$(srcdir)/'`CCT-Merge.cpp libHPCprof_la-Flat-ProfileData.lo: Flat-ProfileData.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Flat-ProfileData.lo `test -f 'Flat-ProfileData.cpp' || echo '$(srcdir)/'`Flat-ProfileData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-Flat-ProfileData.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-Flat-ProfileData.Tpo -c -o libHPCprof_la-Flat-ProfileData.lo `test -f 'Flat-ProfileData.cpp' || echo '$(srcdir)/'`Flat-ProfileData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-Flat-ProfileData.Tpo $(DEPDIR)/libHPCprof_la-Flat-ProfileData.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Flat-ProfileData.cpp' object='libHPCprof_la-Flat-ProfileData.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-Flat-ProfileData.lo `test -f 'Flat-ProfileData.cpp' || echo '$(srcdir)/'`Flat-ProfileData.cpp libHPCprof_la-CallPath-Profile.lo: CallPath-Profile.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CallPath-Profile.lo `test -f 'CallPath-Profile.cpp' || echo '$(srcdir)/'`CallPath-Profile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-CallPath-Profile.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-CallPath-Profile.Tpo -c -o libHPCprof_la-CallPath-Profile.lo `test -f 'CallPath-Profile.cpp' || echo '$(srcdir)/'`CallPath-Profile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-CallPath-Profile.Tpo $(DEPDIR)/libHPCprof_la-CallPath-Profile.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CallPath-Profile.cpp' object='libHPCprof_la-CallPath-Profile.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-CallPath-Profile.lo `test -f 'CallPath-Profile.cpp' || echo '$(srcdir)/'`CallPath-Profile.cpp libHPCprof_la-NameMappings.lo: NameMappings.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-NameMappings.lo `test -f 'NameMappings.cpp' || echo '$(srcdir)/'`NameMappings.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprof_la-NameMappings.lo -MD -MP -MF $(DEPDIR)/libHPCprof_la-NameMappings.Tpo -c -o libHPCprof_la-NameMappings.lo `test -f 'NameMappings.cpp' || echo '$(srcdir)/'`NameMappings.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprof_la-NameMappings.Tpo $(DEPDIR)/libHPCprof_la-NameMappings.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='NameMappings.cpp' object='libHPCprof_la-NameMappings.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprof_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprof_la-NameMappings.lo `test -f 'NameMappings.cpp' || echo '$(srcdir)/'`NameMappings.cpp mostlyclean-libtool: -rm -f *.lo @@ -793,6 +882,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -838,6 +928,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/profxml/Makefile.in b/src/lib/profxml/Makefile.in index c320aaaaa7..aad98c3bbd 100644 --- a/src/lib/profxml/Makefile.in +++ b/src/lib/profxml/Makefile.in @@ -168,8 +168,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -232,7 +233,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -552,9 +553,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/profxml/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/profxml/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/profxml/Makefile + $(AUTOMAKE) --foreign src/lib/profxml/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -594,32 +595,75 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-PGMReader.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-XercesSAX2.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCprofxml_la-XercesUtil.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCprofxml_la-XercesUtil.lo: XercesUtil.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesUtil.lo `test -f 'XercesUtil.cpp' || echo '$(srcdir)/'`XercesUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-XercesUtil.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-XercesUtil.Tpo -c -o libHPCprofxml_la-XercesUtil.lo `test -f 'XercesUtil.cpp' || echo '$(srcdir)/'`XercesUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-XercesUtil.Tpo $(DEPDIR)/libHPCprofxml_la-XercesUtil.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XercesUtil.cpp' object='libHPCprofxml_la-XercesUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesUtil.lo `test -f 'XercesUtil.cpp' || echo '$(srcdir)/'`XercesUtil.cpp libHPCprofxml_la-XercesSAX2.lo: XercesSAX2.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesSAX2.lo `test -f 'XercesSAX2.cpp' || echo '$(srcdir)/'`XercesSAX2.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-XercesSAX2.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-XercesSAX2.Tpo -c -o libHPCprofxml_la-XercesSAX2.lo `test -f 'XercesSAX2.cpp' || echo '$(srcdir)/'`XercesSAX2.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-XercesSAX2.Tpo $(DEPDIR)/libHPCprofxml_la-XercesSAX2.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XercesSAX2.cpp' object='libHPCprofxml_la-XercesSAX2.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesSAX2.lo `test -f 'XercesSAX2.cpp' || echo '$(srcdir)/'`XercesSAX2.cpp libHPCprofxml_la-XercesErrorHandler.lo: XercesErrorHandler.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesErrorHandler.lo `test -f 'XercesErrorHandler.cpp' || echo '$(srcdir)/'`XercesErrorHandler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-XercesErrorHandler.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Tpo -c -o libHPCprofxml_la-XercesErrorHandler.lo `test -f 'XercesErrorHandler.cpp' || echo '$(srcdir)/'`XercesErrorHandler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Tpo $(DEPDIR)/libHPCprofxml_la-XercesErrorHandler.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='XercesErrorHandler.cpp' object='libHPCprofxml_la-XercesErrorHandler.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-XercesErrorHandler.lo `test -f 'XercesErrorHandler.cpp' || echo '$(srcdir)/'`XercesErrorHandler.cpp libHPCprofxml_la-PGMReader.lo: PGMReader.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMReader.lo `test -f 'PGMReader.cpp' || echo '$(srcdir)/'`PGMReader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-PGMReader.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-PGMReader.Tpo -c -o libHPCprofxml_la-PGMReader.lo `test -f 'PGMReader.cpp' || echo '$(srcdir)/'`PGMReader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-PGMReader.Tpo $(DEPDIR)/libHPCprofxml_la-PGMReader.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PGMReader.cpp' object='libHPCprofxml_la-PGMReader.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMReader.lo `test -f 'PGMReader.cpp' || echo '$(srcdir)/'`PGMReader.cpp libHPCprofxml_la-PGMDocHandler.lo: PGMDocHandler.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMDocHandler.lo `test -f 'PGMDocHandler.cpp' || echo '$(srcdir)/'`PGMDocHandler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-PGMDocHandler.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Tpo -c -o libHPCprofxml_la-PGMDocHandler.lo `test -f 'PGMDocHandler.cpp' || echo '$(srcdir)/'`PGMDocHandler.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Tpo $(DEPDIR)/libHPCprofxml_la-PGMDocHandler.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PGMDocHandler.cpp' object='libHPCprofxml_la-PGMDocHandler.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-PGMDocHandler.lo `test -f 'PGMDocHandler.cpp' || echo '$(srcdir)/'`PGMDocHandler.cpp libHPCprofxml_la-MathMLExprParser.lo: MathMLExprParser.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-MathMLExprParser.lo `test -f 'MathMLExprParser.cpp' || echo '$(srcdir)/'`MathMLExprParser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCprofxml_la-MathMLExprParser.lo -MD -MP -MF $(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Tpo -c -o libHPCprofxml_la-MathMLExprParser.lo `test -f 'MathMLExprParser.cpp' || echo '$(srcdir)/'`MathMLExprParser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Tpo $(DEPDIR)/libHPCprofxml_la-MathMLExprParser.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MathMLExprParser.cpp' object='libHPCprofxml_la-MathMLExprParser.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCprofxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCprofxml_la-MathMLExprParser.lo `test -f 'MathMLExprParser.cpp' || echo '$(srcdir)/'`MathMLExprParser.cpp mostlyclean-libtool: -rm -f *.lo @@ -750,6 +794,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -795,6 +840,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/stubs-gcc_s/Makefile.in b/src/lib/stubs-gcc_s/Makefile.in index 922f9bb605..4554d6bdad 100644 --- a/src/lib/stubs-gcc_s/Makefile.in +++ b/src/lib/stubs-gcc_s/Makefile.in @@ -160,8 +160,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent @@ -210,7 +211,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -521,9 +522,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/stubs-gcc_s/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/stubs-gcc_s/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/stubs-gcc_s/Makefile + $(AUTOMAKE) --foreign src/lib/stubs-gcc_s/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -557,20 +558,42 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgcc_s_a-empty.Po@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libgcc_s_a-empty.o: empty.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.o `test -f 'empty.c' || echo '$(srcdir)/'`empty.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -MT libgcc_s_a-empty.o -MD -MP -MF $(DEPDIR)/libgcc_s_a-empty.Tpo -c -o libgcc_s_a-empty.o `test -f 'empty.c' || echo '$(srcdir)/'`empty.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgcc_s_a-empty.Tpo $(DEPDIR)/libgcc_s_a-empty.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='empty.c' object='libgcc_s_a-empty.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.o `test -f 'empty.c' || echo '$(srcdir)/'`empty.c libgcc_s_a-empty.obj: empty.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.obj `if test -f 'empty.c'; then $(CYGPATH_W) 'empty.c'; else $(CYGPATH_W) '$(srcdir)/empty.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -MT libgcc_s_a-empty.obj -MD -MP -MF $(DEPDIR)/libgcc_s_a-empty.Tpo -c -o libgcc_s_a-empty.obj `if test -f 'empty.c'; then $(CYGPATH_W) 'empty.c'; else $(CYGPATH_W) '$(srcdir)/empty.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libgcc_s_a-empty.Tpo $(DEPDIR)/libgcc_s_a-empty.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='empty.c' object='libgcc_s_a-empty.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libgcc_s_a_CFLAGS) $(CFLAGS) -c -o libgcc_s_a-empty.obj `if test -f 'empty.c'; then $(CYGPATH_W) 'empty.c'; else $(CYGPATH_W) '$(srcdir)/empty.c'; fi` mostlyclean-libtool: -rm -f *.lo @@ -701,6 +724,7 @@ clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -746,6 +770,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/support-lean/Makefile.in b/src/lib/support-lean/Makefile.in index b85be20ed3..777aad1b24 100644 --- a/src/lib/support-lean/Makefile.in +++ b/src/lib/support-lean/Makefile.in @@ -164,8 +164,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -210,7 +211,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -519,9 +520,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/support-lean/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/support-lean/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/support-lean/Makefile + $(AUTOMAKE) --foreign src/lib/support-lean/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -561,20 +562,43 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_lean_la-OSUtil.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_lean_la-timer.Plo@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libHPCsupport_lean_la-timer.lo: timer.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-timer.lo `test -f 'timer.c' || echo '$(srcdir)/'`timer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_lean_la-timer.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_lean_la-timer.Tpo -c -o libHPCsupport_lean_la-timer.lo `test -f 'timer.c' || echo '$(srcdir)/'`timer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_lean_la-timer.Tpo $(DEPDIR)/libHPCsupport_lean_la-timer.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='timer.c' object='libHPCsupport_lean_la-timer.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-timer.lo `test -f 'timer.c' || echo '$(srcdir)/'`timer.c libHPCsupport_lean_la-OSUtil.lo: OSUtil.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-OSUtil.lo `test -f 'OSUtil.c' || echo '$(srcdir)/'`OSUtil.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_lean_la-OSUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_lean_la-OSUtil.Tpo -c -o libHPCsupport_lean_la-OSUtil.lo `test -f 'OSUtil.c' || echo '$(srcdir)/'`OSUtil.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_lean_la-OSUtil.Tpo $(DEPDIR)/libHPCsupport_lean_la-OSUtil.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='OSUtil.c' object='libHPCsupport_lean_la-OSUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_lean_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_lean_la-OSUtil.lo `test -f 'OSUtil.c' || echo '$(srcdir)/'`OSUtil.c mostlyclean-libtool: -rm -f *.lo @@ -705,6 +729,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -750,6 +775,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/support/Makefile.in b/src/lib/support/Makefile.in index 6fde89d534..9e95f15753 100644 --- a/src/lib/support/Makefile.in +++ b/src/lib/support/Makefile.in @@ -180,8 +180,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -244,7 +245,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -588,9 +589,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/support/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/support/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/support/Makefile + $(AUTOMAKE) --foreign src/lib/support/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -630,107 +631,272 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-CStrUtil.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-CmdLineParser.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Exception.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-FileNameMap.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-FileUtil.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-HashTable.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-IOUtil.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-IteratorStack.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Logic.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-NaN.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-PathFindMgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-PointerStack.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-ProcNameMgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-QuickSort.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-RealPathMgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-SrcFile.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-StackableIterator.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-StrUtil.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Trace.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-Unique.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-WordSet.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-diagnostics.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-findinstall.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-pathfind.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCsupport_la-realpath.Plo@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libHPCsupport_la-NaN.lo: NaN.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-NaN.lo `test -f 'NaN.c' || echo '$(srcdir)/'`NaN.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_la-NaN.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-NaN.Tpo -c -o libHPCsupport_la-NaN.lo `test -f 'NaN.c' || echo '$(srcdir)/'`NaN.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-NaN.Tpo $(DEPDIR)/libHPCsupport_la-NaN.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='NaN.c' object='libHPCsupport_la-NaN.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-NaN.lo `test -f 'NaN.c' || echo '$(srcdir)/'`NaN.c libHPCsupport_la-findinstall.lo: findinstall.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-findinstall.lo `test -f 'findinstall.c' || echo '$(srcdir)/'`findinstall.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_la-findinstall.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-findinstall.Tpo -c -o libHPCsupport_la-findinstall.lo `test -f 'findinstall.c' || echo '$(srcdir)/'`findinstall.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-findinstall.Tpo $(DEPDIR)/libHPCsupport_la-findinstall.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='findinstall.c' object='libHPCsupport_la-findinstall.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-findinstall.lo `test -f 'findinstall.c' || echo '$(srcdir)/'`findinstall.c libHPCsupport_la-realpath.lo: realpath.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-realpath.lo `test -f 'realpath.c' || echo '$(srcdir)/'`realpath.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -MT libHPCsupport_la-realpath.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-realpath.Tpo -c -o libHPCsupport_la-realpath.lo `test -f 'realpath.c' || echo '$(srcdir)/'`realpath.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-realpath.Tpo $(DEPDIR)/libHPCsupport_la-realpath.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='realpath.c' object='libHPCsupport_la-realpath.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CFLAGS) $(CFLAGS) -c -o libHPCsupport_la-realpath.lo `test -f 'realpath.c' || echo '$(srcdir)/'`realpath.c .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCsupport_la-CmdLineParser.lo: CmdLineParser.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CmdLineParser.lo `test -f 'CmdLineParser.cpp' || echo '$(srcdir)/'`CmdLineParser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-CmdLineParser.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-CmdLineParser.Tpo -c -o libHPCsupport_la-CmdLineParser.lo `test -f 'CmdLineParser.cpp' || echo '$(srcdir)/'`CmdLineParser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-CmdLineParser.Tpo $(DEPDIR)/libHPCsupport_la-CmdLineParser.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CmdLineParser.cpp' object='libHPCsupport_la-CmdLineParser.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CmdLineParser.lo `test -f 'CmdLineParser.cpp' || echo '$(srcdir)/'`CmdLineParser.cpp libHPCsupport_la-diagnostics.lo: diagnostics.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-diagnostics.lo `test -f 'diagnostics.cpp' || echo '$(srcdir)/'`diagnostics.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-diagnostics.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-diagnostics.Tpo -c -o libHPCsupport_la-diagnostics.lo `test -f 'diagnostics.cpp' || echo '$(srcdir)/'`diagnostics.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-diagnostics.Tpo $(DEPDIR)/libHPCsupport_la-diagnostics.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='diagnostics.cpp' object='libHPCsupport_la-diagnostics.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-diagnostics.lo `test -f 'diagnostics.cpp' || echo '$(srcdir)/'`diagnostics.cpp libHPCsupport_la-Exception.lo: Exception.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Exception.lo `test -f 'Exception.cpp' || echo '$(srcdir)/'`Exception.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Exception.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Exception.Tpo -c -o libHPCsupport_la-Exception.lo `test -f 'Exception.cpp' || echo '$(srcdir)/'`Exception.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Exception.Tpo $(DEPDIR)/libHPCsupport_la-Exception.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Exception.cpp' object='libHPCsupport_la-Exception.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Exception.lo `test -f 'Exception.cpp' || echo '$(srcdir)/'`Exception.cpp libHPCsupport_la-Trace.lo: Trace.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Trace.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Trace.Tpo -c -o libHPCsupport_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Trace.Tpo $(DEPDIR)/libHPCsupport_la-Trace.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Trace.cpp' object='libHPCsupport_la-Trace.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Trace.lo `test -f 'Trace.cpp' || echo '$(srcdir)/'`Trace.cpp libHPCsupport_la-Logic.lo: Logic.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Logic.lo `test -f 'Logic.cpp' || echo '$(srcdir)/'`Logic.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Logic.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Logic.Tpo -c -o libHPCsupport_la-Logic.lo `test -f 'Logic.cpp' || echo '$(srcdir)/'`Logic.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Logic.Tpo $(DEPDIR)/libHPCsupport_la-Logic.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Logic.cpp' object='libHPCsupport_la-Logic.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Logic.lo `test -f 'Logic.cpp' || echo '$(srcdir)/'`Logic.cpp libHPCsupport_la-CStrUtil.lo: CStrUtil.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CStrUtil.lo `test -f 'CStrUtil.cpp' || echo '$(srcdir)/'`CStrUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-CStrUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-CStrUtil.Tpo -c -o libHPCsupport_la-CStrUtil.lo `test -f 'CStrUtil.cpp' || echo '$(srcdir)/'`CStrUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-CStrUtil.Tpo $(DEPDIR)/libHPCsupport_la-CStrUtil.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CStrUtil.cpp' object='libHPCsupport_la-CStrUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-CStrUtil.lo `test -f 'CStrUtil.cpp' || echo '$(srcdir)/'`CStrUtil.cpp libHPCsupport_la-StrUtil.lo: StrUtil.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StrUtil.lo `test -f 'StrUtil.cpp' || echo '$(srcdir)/'`StrUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-StrUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-StrUtil.Tpo -c -o libHPCsupport_la-StrUtil.lo `test -f 'StrUtil.cpp' || echo '$(srcdir)/'`StrUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-StrUtil.Tpo $(DEPDIR)/libHPCsupport_la-StrUtil.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StrUtil.cpp' object='libHPCsupport_la-StrUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StrUtil.lo `test -f 'StrUtil.cpp' || echo '$(srcdir)/'`StrUtil.cpp libHPCsupport_la-IOUtil.lo: IOUtil.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IOUtil.lo `test -f 'IOUtil.cpp' || echo '$(srcdir)/'`IOUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-IOUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-IOUtil.Tpo -c -o libHPCsupport_la-IOUtil.lo `test -f 'IOUtil.cpp' || echo '$(srcdir)/'`IOUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-IOUtil.Tpo $(DEPDIR)/libHPCsupport_la-IOUtil.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IOUtil.cpp' object='libHPCsupport_la-IOUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IOUtil.lo `test -f 'IOUtil.cpp' || echo '$(srcdir)/'`IOUtil.cpp libHPCsupport_la-FileNameMap.lo: FileNameMap.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileNameMap.lo `test -f 'FileNameMap.cpp' || echo '$(srcdir)/'`FileNameMap.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-FileNameMap.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-FileNameMap.Tpo -c -o libHPCsupport_la-FileNameMap.lo `test -f 'FileNameMap.cpp' || echo '$(srcdir)/'`FileNameMap.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-FileNameMap.Tpo $(DEPDIR)/libHPCsupport_la-FileNameMap.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FileNameMap.cpp' object='libHPCsupport_la-FileNameMap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileNameMap.lo `test -f 'FileNameMap.cpp' || echo '$(srcdir)/'`FileNameMap.cpp libHPCsupport_la-FileUtil.lo: FileUtil.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileUtil.lo `test -f 'FileUtil.cpp' || echo '$(srcdir)/'`FileUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-FileUtil.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-FileUtil.Tpo -c -o libHPCsupport_la-FileUtil.lo `test -f 'FileUtil.cpp' || echo '$(srcdir)/'`FileUtil.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-FileUtil.Tpo $(DEPDIR)/libHPCsupport_la-FileUtil.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FileUtil.cpp' object='libHPCsupport_la-FileUtil.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-FileUtil.lo `test -f 'FileUtil.cpp' || echo '$(srcdir)/'`FileUtil.cpp libHPCsupport_la-SrcFile.lo: SrcFile.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-SrcFile.lo `test -f 'SrcFile.cpp' || echo '$(srcdir)/'`SrcFile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-SrcFile.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-SrcFile.Tpo -c -o libHPCsupport_la-SrcFile.lo `test -f 'SrcFile.cpp' || echo '$(srcdir)/'`SrcFile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-SrcFile.Tpo $(DEPDIR)/libHPCsupport_la-SrcFile.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SrcFile.cpp' object='libHPCsupport_la-SrcFile.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-SrcFile.lo `test -f 'SrcFile.cpp' || echo '$(srcdir)/'`SrcFile.cpp libHPCsupport_la-RealPathMgr.lo: RealPathMgr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-RealPathMgr.lo `test -f 'RealPathMgr.cpp' || echo '$(srcdir)/'`RealPathMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-RealPathMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-RealPathMgr.Tpo -c -o libHPCsupport_la-RealPathMgr.lo `test -f 'RealPathMgr.cpp' || echo '$(srcdir)/'`RealPathMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-RealPathMgr.Tpo $(DEPDIR)/libHPCsupport_la-RealPathMgr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='RealPathMgr.cpp' object='libHPCsupport_la-RealPathMgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-RealPathMgr.lo `test -f 'RealPathMgr.cpp' || echo '$(srcdir)/'`RealPathMgr.cpp libHPCsupport_la-PathReplacementMgr.lo: PathReplacementMgr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathReplacementMgr.lo `test -f 'PathReplacementMgr.cpp' || echo '$(srcdir)/'`PathReplacementMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-PathReplacementMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Tpo -c -o libHPCsupport_la-PathReplacementMgr.lo `test -f 'PathReplacementMgr.cpp' || echo '$(srcdir)/'`PathReplacementMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Tpo $(DEPDIR)/libHPCsupport_la-PathReplacementMgr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PathReplacementMgr.cpp' object='libHPCsupport_la-PathReplacementMgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathReplacementMgr.lo `test -f 'PathReplacementMgr.cpp' || echo '$(srcdir)/'`PathReplacementMgr.cpp libHPCsupport_la-pathfind.lo: pathfind.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-pathfind.lo `test -f 'pathfind.cpp' || echo '$(srcdir)/'`pathfind.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-pathfind.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-pathfind.Tpo -c -o libHPCsupport_la-pathfind.lo `test -f 'pathfind.cpp' || echo '$(srcdir)/'`pathfind.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-pathfind.Tpo $(DEPDIR)/libHPCsupport_la-pathfind.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='pathfind.cpp' object='libHPCsupport_la-pathfind.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-pathfind.lo `test -f 'pathfind.cpp' || echo '$(srcdir)/'`pathfind.cpp libHPCsupport_la-PathFindMgr.lo: PathFindMgr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathFindMgr.lo `test -f 'PathFindMgr.cpp' || echo '$(srcdir)/'`PathFindMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-PathFindMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-PathFindMgr.Tpo -c -o libHPCsupport_la-PathFindMgr.lo `test -f 'PathFindMgr.cpp' || echo '$(srcdir)/'`PathFindMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-PathFindMgr.Tpo $(DEPDIR)/libHPCsupport_la-PathFindMgr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PathFindMgr.cpp' object='libHPCsupport_la-PathFindMgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PathFindMgr.lo `test -f 'PathFindMgr.cpp' || echo '$(srcdir)/'`PathFindMgr.cpp libHPCsupport_la-ProcNameMgr.lo: ProcNameMgr.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-ProcNameMgr.lo `test -f 'ProcNameMgr.cpp' || echo '$(srcdir)/'`ProcNameMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-ProcNameMgr.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-ProcNameMgr.Tpo -c -o libHPCsupport_la-ProcNameMgr.lo `test -f 'ProcNameMgr.cpp' || echo '$(srcdir)/'`ProcNameMgr.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-ProcNameMgr.Tpo $(DEPDIR)/libHPCsupport_la-ProcNameMgr.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProcNameMgr.cpp' object='libHPCsupport_la-ProcNameMgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-ProcNameMgr.lo `test -f 'ProcNameMgr.cpp' || echo '$(srcdir)/'`ProcNameMgr.cpp libHPCsupport_la-NonUniformDegreeTree.lo: NonUniformDegreeTree.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-NonUniformDegreeTree.lo `test -f 'NonUniformDegreeTree.cpp' || echo '$(srcdir)/'`NonUniformDegreeTree.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-NonUniformDegreeTree.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Tpo -c -o libHPCsupport_la-NonUniformDegreeTree.lo `test -f 'NonUniformDegreeTree.cpp' || echo '$(srcdir)/'`NonUniformDegreeTree.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Tpo $(DEPDIR)/libHPCsupport_la-NonUniformDegreeTree.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='NonUniformDegreeTree.cpp' object='libHPCsupport_la-NonUniformDegreeTree.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-NonUniformDegreeTree.lo `test -f 'NonUniformDegreeTree.cpp' || echo '$(srcdir)/'`NonUniformDegreeTree.cpp libHPCsupport_la-IteratorStack.lo: IteratorStack.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IteratorStack.lo `test -f 'IteratorStack.cpp' || echo '$(srcdir)/'`IteratorStack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-IteratorStack.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-IteratorStack.Tpo -c -o libHPCsupport_la-IteratorStack.lo `test -f 'IteratorStack.cpp' || echo '$(srcdir)/'`IteratorStack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-IteratorStack.Tpo $(DEPDIR)/libHPCsupport_la-IteratorStack.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='IteratorStack.cpp' object='libHPCsupport_la-IteratorStack.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-IteratorStack.lo `test -f 'IteratorStack.cpp' || echo '$(srcdir)/'`IteratorStack.cpp libHPCsupport_la-StackableIterator.lo: StackableIterator.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StackableIterator.lo `test -f 'StackableIterator.cpp' || echo '$(srcdir)/'`StackableIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-StackableIterator.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-StackableIterator.Tpo -c -o libHPCsupport_la-StackableIterator.lo `test -f 'StackableIterator.cpp' || echo '$(srcdir)/'`StackableIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-StackableIterator.Tpo $(DEPDIR)/libHPCsupport_la-StackableIterator.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='StackableIterator.cpp' object='libHPCsupport_la-StackableIterator.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-StackableIterator.lo `test -f 'StackableIterator.cpp' || echo '$(srcdir)/'`StackableIterator.cpp libHPCsupport_la-WordSet.lo: WordSet.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-WordSet.lo `test -f 'WordSet.cpp' || echo '$(srcdir)/'`WordSet.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-WordSet.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-WordSet.Tpo -c -o libHPCsupport_la-WordSet.lo `test -f 'WordSet.cpp' || echo '$(srcdir)/'`WordSet.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-WordSet.Tpo $(DEPDIR)/libHPCsupport_la-WordSet.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='WordSet.cpp' object='libHPCsupport_la-WordSet.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-WordSet.lo `test -f 'WordSet.cpp' || echo '$(srcdir)/'`WordSet.cpp libHPCsupport_la-HashTable.lo: HashTable.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTable.lo `test -f 'HashTable.cpp' || echo '$(srcdir)/'`HashTable.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-HashTable.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-HashTable.Tpo -c -o libHPCsupport_la-HashTable.lo `test -f 'HashTable.cpp' || echo '$(srcdir)/'`HashTable.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-HashTable.Tpo $(DEPDIR)/libHPCsupport_la-HashTable.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='HashTable.cpp' object='libHPCsupport_la-HashTable.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTable.lo `test -f 'HashTable.cpp' || echo '$(srcdir)/'`HashTable.cpp libHPCsupport_la-HashTableSortedIterator.lo: HashTableSortedIterator.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTableSortedIterator.lo `test -f 'HashTableSortedIterator.cpp' || echo '$(srcdir)/'`HashTableSortedIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-HashTableSortedIterator.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Tpo -c -o libHPCsupport_la-HashTableSortedIterator.lo `test -f 'HashTableSortedIterator.cpp' || echo '$(srcdir)/'`HashTableSortedIterator.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Tpo $(DEPDIR)/libHPCsupport_la-HashTableSortedIterator.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='HashTableSortedIterator.cpp' object='libHPCsupport_la-HashTableSortedIterator.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-HashTableSortedIterator.lo `test -f 'HashTableSortedIterator.cpp' || echo '$(srcdir)/'`HashTableSortedIterator.cpp libHPCsupport_la-PointerStack.lo: PointerStack.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PointerStack.lo `test -f 'PointerStack.cpp' || echo '$(srcdir)/'`PointerStack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-PointerStack.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-PointerStack.Tpo -c -o libHPCsupport_la-PointerStack.lo `test -f 'PointerStack.cpp' || echo '$(srcdir)/'`PointerStack.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-PointerStack.Tpo $(DEPDIR)/libHPCsupport_la-PointerStack.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PointerStack.cpp' object='libHPCsupport_la-PointerStack.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-PointerStack.lo `test -f 'PointerStack.cpp' || echo '$(srcdir)/'`PointerStack.cpp libHPCsupport_la-QuickSort.lo: QuickSort.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-QuickSort.lo `test -f 'QuickSort.cpp' || echo '$(srcdir)/'`QuickSort.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-QuickSort.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-QuickSort.Tpo -c -o libHPCsupport_la-QuickSort.lo `test -f 'QuickSort.cpp' || echo '$(srcdir)/'`QuickSort.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-QuickSort.Tpo $(DEPDIR)/libHPCsupport_la-QuickSort.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='QuickSort.cpp' object='libHPCsupport_la-QuickSort.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-QuickSort.lo `test -f 'QuickSort.cpp' || echo '$(srcdir)/'`QuickSort.cpp libHPCsupport_la-Unique.lo: Unique.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Unique.lo `test -f 'Unique.cpp' || echo '$(srcdir)/'`Unique.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCsupport_la-Unique.lo -MD -MP -MF $(DEPDIR)/libHPCsupport_la-Unique.Tpo -c -o libHPCsupport_la-Unique.lo `test -f 'Unique.cpp' || echo '$(srcdir)/'`Unique.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCsupport_la-Unique.Tpo $(DEPDIR)/libHPCsupport_la-Unique.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Unique.cpp' object='libHPCsupport_la-Unique.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCsupport_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCsupport_la-Unique.lo `test -f 'Unique.cpp' || echo '$(srcdir)/'`Unique.cpp mostlyclean-libtool: -rm -f *.lo @@ -861,6 +1027,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -906,6 +1073,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/lib/xml/Makefile.in b/src/lib/xml/Makefile.in index 4bf3d622c3..b77ddc41c9 100644 --- a/src/lib/xml/Makefile.in +++ b/src/lib/xml/Makefile.in @@ -164,8 +164,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -229,7 +230,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -546,9 +547,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/lib/xml/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/xml/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/lib/xml/Makefile + $(AUTOMAKE) --foreign src/lib/xml/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -588,17 +589,35 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libHPCxml_la-xml.Plo@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< libHPCxml_la-xml.lo: xml.cpp - $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCxml_la-xml.lo `test -f 'xml.cpp' || echo '$(srcdir)/'`xml.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCxml_la_CXXFLAGS) $(CXXFLAGS) -MT libHPCxml_la-xml.lo -MD -MP -MF $(DEPDIR)/libHPCxml_la-xml.Tpo -c -o libHPCxml_la-xml.lo `test -f 'xml.cpp' || echo '$(srcdir)/'`xml.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libHPCxml_la-xml.Tpo $(DEPDIR)/libHPCxml_la-xml.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='xml.cpp' object='libHPCxml_la-xml.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libHPCxml_la_CXXFLAGS) $(CXXFLAGS) -c -o libHPCxml_la-xml.lo `test -f 'xml.cpp' || echo '$(srcdir)/'`xml.cpp mostlyclean-libtool: -rm -f *.lo @@ -732,6 +751,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -777,6 +797,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/Makefile.in b/src/tool/Makefile.in index 64f26740f1..452bf4ffe3 100644 --- a/src/tool/Makefile.in +++ b/src/tool/Makefile.in @@ -138,8 +138,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ @@ -463,9 +461,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/Makefile + $(AUTOMAKE) --foreign src/tool/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/tool/hpcfnbounds/Makefile.in b/src/tool/hpcfnbounds/Makefile.in index 008aefc4cf..7f77645e1c 100644 --- a/src/tool/hpcfnbounds/Makefile.in +++ b/src/tool/hpcfnbounds/Makefile.in @@ -215,8 +215,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -280,6 +281,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcfnbounds.in \ + $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -596,9 +598,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcfnbounds/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcfnbounds/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcfnbounds/Makefile + $(AUTOMAKE) --foreign src/tool/hpcfnbounds/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -714,71 +716,168 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-amd-xop.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-code-ranges.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-function-entries.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-intervals.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-main.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-server.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Po@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< hpcfnbounds_bin-amd-xop.o: amd-xop.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.o `test -f 'amd-xop.c' || echo '$(srcdir)/'`amd-xop.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hpcfnbounds_bin-amd-xop.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo -c -o hpcfnbounds_bin-amd-xop.o `test -f 'amd-xop.c' || echo '$(srcdir)/'`amd-xop.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo $(DEPDIR)/hpcfnbounds_bin-amd-xop.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='amd-xop.c' object='hpcfnbounds_bin-amd-xop.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.o `test -f 'amd-xop.c' || echo '$(srcdir)/'`amd-xop.c hpcfnbounds_bin-amd-xop.obj: amd-xop.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.obj `if test -f 'amd-xop.c'; then $(CYGPATH_W) 'amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/amd-xop.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hpcfnbounds_bin-amd-xop.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo -c -o hpcfnbounds_bin-amd-xop.obj `if test -f 'amd-xop.c'; then $(CYGPATH_W) 'amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/amd-xop.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-amd-xop.Tpo $(DEPDIR)/hpcfnbounds_bin-amd-xop.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='amd-xop.c' object='hpcfnbounds_bin-amd-xop.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hpcfnbounds_bin-amd-xop.obj `if test -f 'amd-xop.c'; then $(CYGPATH_W) 'amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/amd-xop.c'; fi` .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcfnbounds_bin-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-main.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-main.Tpo -c -o hpcfnbounds_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-main.Tpo $(DEPDIR)/hpcfnbounds_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcfnbounds_bin-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcfnbounds_bin-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-main.Tpo -c -o hpcfnbounds_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-main.Tpo $(DEPDIR)/hpcfnbounds_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcfnbounds_bin-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcfnbounds_bin-code-ranges.o: code-ranges.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.o `test -f 'code-ranges.cpp' || echo '$(srcdir)/'`code-ranges.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-code-ranges.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo -c -o hpcfnbounds_bin-code-ranges.o `test -f 'code-ranges.cpp' || echo '$(srcdir)/'`code-ranges.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-code-ranges.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='code-ranges.cpp' object='hpcfnbounds_bin-code-ranges.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.o `test -f 'code-ranges.cpp' || echo '$(srcdir)/'`code-ranges.cpp hpcfnbounds_bin-code-ranges.obj: code-ranges.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.obj `if test -f 'code-ranges.cpp'; then $(CYGPATH_W) 'code-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/code-ranges.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-code-ranges.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo -c -o hpcfnbounds_bin-code-ranges.obj `if test -f 'code-ranges.cpp'; then $(CYGPATH_W) 'code-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/code-ranges.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-code-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-code-ranges.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='code-ranges.cpp' object='hpcfnbounds_bin-code-ranges.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-code-ranges.obj `if test -f 'code-ranges.cpp'; then $(CYGPATH_W) 'code-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/code-ranges.cpp'; fi` hpcfnbounds_bin-function-entries.o: function-entries.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.o `test -f 'function-entries.cpp' || echo '$(srcdir)/'`function-entries.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-function-entries.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo -c -o hpcfnbounds_bin-function-entries.o `test -f 'function-entries.cpp' || echo '$(srcdir)/'`function-entries.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo $(DEPDIR)/hpcfnbounds_bin-function-entries.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='function-entries.cpp' object='hpcfnbounds_bin-function-entries.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.o `test -f 'function-entries.cpp' || echo '$(srcdir)/'`function-entries.cpp hpcfnbounds_bin-function-entries.obj: function-entries.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.obj `if test -f 'function-entries.cpp'; then $(CYGPATH_W) 'function-entries.cpp'; else $(CYGPATH_W) '$(srcdir)/function-entries.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-function-entries.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo -c -o hpcfnbounds_bin-function-entries.obj `if test -f 'function-entries.cpp'; then $(CYGPATH_W) 'function-entries.cpp'; else $(CYGPATH_W) '$(srcdir)/function-entries.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-function-entries.Tpo $(DEPDIR)/hpcfnbounds_bin-function-entries.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='function-entries.cpp' object='hpcfnbounds_bin-function-entries.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-function-entries.obj `if test -f 'function-entries.cpp'; then $(CYGPATH_W) 'function-entries.cpp'; else $(CYGPATH_W) '$(srcdir)/function-entries.cpp'; fi` hpcfnbounds_bin-intervals.o: intervals.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.o `test -f 'intervals.cpp' || echo '$(srcdir)/'`intervals.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-intervals.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo -c -o hpcfnbounds_bin-intervals.o `test -f 'intervals.cpp' || echo '$(srcdir)/'`intervals.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo $(DEPDIR)/hpcfnbounds_bin-intervals.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='intervals.cpp' object='hpcfnbounds_bin-intervals.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.o `test -f 'intervals.cpp' || echo '$(srcdir)/'`intervals.cpp hpcfnbounds_bin-intervals.obj: intervals.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.obj `if test -f 'intervals.cpp'; then $(CYGPATH_W) 'intervals.cpp'; else $(CYGPATH_W) '$(srcdir)/intervals.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-intervals.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo -c -o hpcfnbounds_bin-intervals.obj `if test -f 'intervals.cpp'; then $(CYGPATH_W) 'intervals.cpp'; else $(CYGPATH_W) '$(srcdir)/intervals.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-intervals.Tpo $(DEPDIR)/hpcfnbounds_bin-intervals.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='intervals.cpp' object='hpcfnbounds_bin-intervals.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-intervals.obj `if test -f 'intervals.cpp'; then $(CYGPATH_W) 'intervals.cpp'; else $(CYGPATH_W) '$(srcdir)/intervals.cpp'; fi` hpcfnbounds_bin-server.o: server.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.o `test -f 'server.cpp' || echo '$(srcdir)/'`server.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-server.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-server.Tpo -c -o hpcfnbounds_bin-server.o `test -f 'server.cpp' || echo '$(srcdir)/'`server.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-server.Tpo $(DEPDIR)/hpcfnbounds_bin-server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='server.cpp' object='hpcfnbounds_bin-server.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.o `test -f 'server.cpp' || echo '$(srcdir)/'`server.cpp hpcfnbounds_bin-server.obj: server.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.obj `if test -f 'server.cpp'; then $(CYGPATH_W) 'server.cpp'; else $(CYGPATH_W) '$(srcdir)/server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-server.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-server.Tpo -c -o hpcfnbounds_bin-server.obj `if test -f 'server.cpp'; then $(CYGPATH_W) 'server.cpp'; else $(CYGPATH_W) '$(srcdir)/server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-server.Tpo $(DEPDIR)/hpcfnbounds_bin-server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='server.cpp' object='hpcfnbounds_bin-server.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-server.obj `if test -f 'server.cpp'; then $(CYGPATH_W) 'server.cpp'; else $(CYGPATH_W) '$(srcdir)/server.cpp'; fi` hpcfnbounds_bin-x86-process-ranges.o: x86-process-ranges.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.o `test -f 'x86-process-ranges.cpp' || echo '$(srcdir)/'`x86-process-ranges.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-x86-process-ranges.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo -c -o hpcfnbounds_bin-x86-process-ranges.o `test -f 'x86-process-ranges.cpp' || echo '$(srcdir)/'`x86-process-ranges.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86-process-ranges.cpp' object='hpcfnbounds_bin-x86-process-ranges.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.o `test -f 'x86-process-ranges.cpp' || echo '$(srcdir)/'`x86-process-ranges.cpp hpcfnbounds_bin-x86-process-ranges.obj: x86-process-ranges.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.obj `if test -f 'x86-process-ranges.cpp'; then $(CYGPATH_W) 'x86-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/x86-process-ranges.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-x86-process-ranges.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo -c -o hpcfnbounds_bin-x86-process-ranges.obj `if test -f 'x86-process-ranges.cpp'; then $(CYGPATH_W) 'x86-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/x86-process-ranges.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-x86-process-ranges.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='x86-process-ranges.cpp' object='hpcfnbounds_bin-x86-process-ranges.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-x86-process-ranges.obj `if test -f 'x86-process-ranges.cpp'; then $(CYGPATH_W) 'x86-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/x86-process-ranges.cpp'; fi` hpcfnbounds_bin-generic-process-ranges.o: generic-process-ranges.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.o `test -f 'generic-process-ranges.cpp' || echo '$(srcdir)/'`generic-process-ranges.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-generic-process-ranges.o -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo -c -o hpcfnbounds_bin-generic-process-ranges.o `test -f 'generic-process-ranges.cpp' || echo '$(srcdir)/'`generic-process-ranges.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='generic-process-ranges.cpp' object='hpcfnbounds_bin-generic-process-ranges.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.o `test -f 'generic-process-ranges.cpp' || echo '$(srcdir)/'`generic-process-ranges.cpp hpcfnbounds_bin-generic-process-ranges.obj: generic-process-ranges.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.obj `if test -f 'generic-process-ranges.cpp'; then $(CYGPATH_W) 'generic-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/generic-process-ranges.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcfnbounds_bin-generic-process-ranges.obj -MD -MP -MF $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo -c -o hpcfnbounds_bin-generic-process-ranges.obj `if test -f 'generic-process-ranges.cpp'; then $(CYGPATH_W) 'generic-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/generic-process-ranges.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Tpo $(DEPDIR)/hpcfnbounds_bin-generic-process-ranges.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='generic-process-ranges.cpp' object='hpcfnbounds_bin-generic-process-ranges.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(hpcfnbounds_bin_CPPFLAGS) $(CPPFLAGS) $(hpcfnbounds_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcfnbounds_bin-generic-process-ranges.obj `if test -f 'generic-process-ranges.cpp'; then $(CYGPATH_W) 'generic-process-ranges.cpp'; else $(CYGPATH_W) '$(srcdir)/generic-process-ranges.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -912,6 +1011,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -957,6 +1057,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpclump/Makefile.in b/src/tool/hpclump/Makefile.in index 7cdfb49cbb..23aafe5a8c 100644 --- a/src/tool/hpclump/Makefile.in +++ b/src/tool/hpclump/Makefile.in @@ -165,8 +165,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -229,7 +230,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -555,9 +556,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpclump/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpclump/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpclump/Makefile + $(AUTOMAKE) --foreign src/tool/hpclump/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -636,26 +637,57 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpclump-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpclump-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpclump-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-main.o -MD -MP -MF $(DEPDIR)/hpclump-main.Tpo -c -o hpclump-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-main.Tpo $(DEPDIR)/hpclump-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpclump-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpclump-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-main.obj -MD -MP -MF $(DEPDIR)/hpclump-main.Tpo -c -o hpclump-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-main.Tpo $(DEPDIR)/hpclump-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpclump-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpclump-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-Args.o -MD -MP -MF $(DEPDIR)/hpclump-Args.Tpo -c -o hpclump-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-Args.Tpo $(DEPDIR)/hpclump-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpclump-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpclump-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -MT hpclump-Args.obj -MD -MP -MF $(DEPDIR)/hpclump-Args.Tpo -c -o hpclump-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpclump-Args.Tpo $(DEPDIR)/hpclump-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpclump-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpclump_CXXFLAGS) $(CXXFLAGS) -c -o hpclump-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -789,6 +821,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -834,6 +867,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcprof-flat/Makefile.in b/src/tool/hpcprof-flat/Makefile.in index 800a312dd8..9df244ee6d 100644 --- a/src/tool/hpcprof-flat/Makefile.in +++ b/src/tool/hpcprof-flat/Makefile.in @@ -199,8 +199,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -264,6 +265,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcprof-flat.in \ + $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -599,9 +601,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-flat/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcprof-flat/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-flat/Makefile + $(AUTOMAKE) --foreign src/tool/hpcprof-flat/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -717,32 +719,72 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_flat_bin-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_flat_bin-ConfigParser.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_flat_bin-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcprof_flat_bin-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-main.o -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-main.Tpo -c -o hpcprof_flat_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-main.Tpo $(DEPDIR)/hpcprof_flat_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_flat_bin-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcprof_flat_bin-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-main.Tpo -c -o hpcprof_flat_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-main.Tpo $(DEPDIR)/hpcprof_flat_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_flat_bin-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcprof_flat_bin-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-Args.Tpo -c -o hpcprof_flat_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-Args.Tpo $(DEPDIR)/hpcprof_flat_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_flat_bin-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcprof_flat_bin-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-Args.Tpo -c -o hpcprof_flat_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-Args.Tpo $(DEPDIR)/hpcprof_flat_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_flat_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` hpcprof_flat_bin-ConfigParser.o: ConfigParser.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.o `test -f 'ConfigParser.cpp' || echo '$(srcdir)/'`ConfigParser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-ConfigParser.o -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo -c -o hpcprof_flat_bin-ConfigParser.o `test -f 'ConfigParser.cpp' || echo '$(srcdir)/'`ConfigParser.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ConfigParser.cpp' object='hpcprof_flat_bin-ConfigParser.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.o `test -f 'ConfigParser.cpp' || echo '$(srcdir)/'`ConfigParser.cpp hpcprof_flat_bin-ConfigParser.obj: ConfigParser.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.obj `if test -f 'ConfigParser.cpp'; then $(CYGPATH_W) 'ConfigParser.cpp'; else $(CYGPATH_W) '$(srcdir)/ConfigParser.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_flat_bin-ConfigParser.obj -MD -MP -MF $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo -c -o hpcprof_flat_bin-ConfigParser.obj `if test -f 'ConfigParser.cpp'; then $(CYGPATH_W) 'ConfigParser.cpp'; else $(CYGPATH_W) '$(srcdir)/ConfigParser.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Tpo $(DEPDIR)/hpcprof_flat_bin-ConfigParser.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ConfigParser.cpp' object='hpcprof_flat_bin-ConfigParser.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_flat_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_flat_bin-ConfigParser.obj `if test -f 'ConfigParser.cpp'; then $(CYGPATH_W) 'ConfigParser.cpp'; else $(CYGPATH_W) '$(srcdir)/ConfigParser.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -876,6 +918,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -922,6 +965,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcprof-mpi/Makefile.in b/src/tool/hpcprof-mpi/Makefile.in index 512d215d43..fb1719868c 100644 --- a/src/tool/hpcprof-mpi/Makefile.in +++ b/src/tool/hpcprof-mpi/Makefile.in @@ -199,8 +199,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -264,6 +265,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcprof-mpi.in \ + $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -600,9 +602,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-mpi/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcprof-mpi/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof-mpi/Makefile + $(AUTOMAKE) --foreign src/tool/hpcprof-mpi/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -718,32 +720,72 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_mpi_bin-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_mpi_bin-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcprof_mpi_bin-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-main.o -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-main.Tpo -c -o hpcprof_mpi_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-main.Tpo $(DEPDIR)/hpcprof_mpi_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_mpi_bin-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcprof_mpi_bin-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-main.Tpo -c -o hpcprof_mpi_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-main.Tpo $(DEPDIR)/hpcprof_mpi_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_mpi_bin-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcprof_mpi_bin-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo -c -o hpcprof_mpi_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo $(DEPDIR)/hpcprof_mpi_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_mpi_bin-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcprof_mpi_bin-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo -c -o hpcprof_mpi_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-Args.Tpo $(DEPDIR)/hpcprof_mpi_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_mpi_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` hpcprof_mpi_bin-ParallelAnalysis.o: ParallelAnalysis.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.o `test -f 'ParallelAnalysis.cpp' || echo '$(srcdir)/'`ParallelAnalysis.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-ParallelAnalysis.o -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo -c -o hpcprof_mpi_bin-ParallelAnalysis.o `test -f 'ParallelAnalysis.cpp' || echo '$(srcdir)/'`ParallelAnalysis.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ParallelAnalysis.cpp' object='hpcprof_mpi_bin-ParallelAnalysis.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.o `test -f 'ParallelAnalysis.cpp' || echo '$(srcdir)/'`ParallelAnalysis.cpp hpcprof_mpi_bin-ParallelAnalysis.obj: ParallelAnalysis.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.obj `if test -f 'ParallelAnalysis.cpp'; then $(CYGPATH_W) 'ParallelAnalysis.cpp'; else $(CYGPATH_W) '$(srcdir)/ParallelAnalysis.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_mpi_bin-ParallelAnalysis.obj -MD -MP -MF $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo -c -o hpcprof_mpi_bin-ParallelAnalysis.obj `if test -f 'ParallelAnalysis.cpp'; then $(CYGPATH_W) 'ParallelAnalysis.cpp'; else $(CYGPATH_W) '$(srcdir)/ParallelAnalysis.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Tpo $(DEPDIR)/hpcprof_mpi_bin-ParallelAnalysis.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ParallelAnalysis.cpp' object='hpcprof_mpi_bin-ParallelAnalysis.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_mpi_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_mpi_bin-ParallelAnalysis.obj `if test -f 'ParallelAnalysis.cpp'; then $(CYGPATH_W) 'ParallelAnalysis.cpp'; else $(CYGPATH_W) '$(srcdir)/ParallelAnalysis.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -877,6 +919,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -923,6 +966,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcprof/Makefile.in b/src/tool/hpcprof/Makefile.in index 2e6d797d8b..3116f8f968 100644 --- a/src/tool/hpcprof/Makefile.in +++ b/src/tool/hpcprof/Makefile.in @@ -196,8 +196,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -261,6 +262,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcprof.in \ + $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -595,9 +597,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcprof/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcprof/Makefile + $(AUTOMAKE) --foreign src/tool/hpcprof/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -713,26 +715,57 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_bin-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcprof_bin-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcprof_bin-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-main.o -MD -MP -MF $(DEPDIR)/hpcprof_bin-main.Tpo -c -o hpcprof_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-main.Tpo $(DEPDIR)/hpcprof_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_bin-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcprof_bin-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcprof_bin-main.Tpo -c -o hpcprof_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-main.Tpo $(DEPDIR)/hpcprof_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcprof_bin-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcprof_bin-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcprof_bin-Args.Tpo -c -o hpcprof_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-Args.Tpo $(DEPDIR)/hpcprof_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_bin-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcprof_bin-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcprof_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcprof_bin-Args.Tpo -c -o hpcprof_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcprof_bin-Args.Tpo $(DEPDIR)/hpcprof_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcprof_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcprof_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcprof_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -866,6 +899,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -912,6 +946,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcproftt/Makefile.in b/src/tool/hpcproftt/Makefile.in index f5ec00928b..4811c0a3c1 100644 --- a/src/tool/hpcproftt/Makefile.in +++ b/src/tool/hpcproftt/Makefile.in @@ -198,8 +198,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -263,6 +264,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcproftt.in \ + $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -597,9 +599,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcproftt/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcproftt/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcproftt/Makefile + $(AUTOMAKE) --foreign src/tool/hpcproftt/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -715,26 +717,57 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcproftt_bin-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcproftt_bin-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcproftt_bin-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-main.o -MD -MP -MF $(DEPDIR)/hpcproftt_bin-main.Tpo -c -o hpcproftt_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-main.Tpo $(DEPDIR)/hpcproftt_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcproftt_bin-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcproftt_bin-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcproftt_bin-main.Tpo -c -o hpcproftt_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-main.Tpo $(DEPDIR)/hpcproftt_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcproftt_bin-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcproftt_bin-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcproftt_bin-Args.Tpo -c -o hpcproftt_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-Args.Tpo $(DEPDIR)/hpcproftt_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcproftt_bin-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcproftt_bin-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcproftt_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcproftt_bin-Args.Tpo -c -o hpcproftt_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcproftt_bin-Args.Tpo $(DEPDIR)/hpcproftt_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcproftt_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcproftt_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcproftt_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -868,6 +901,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -914,6 +948,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcrun-flat/Makefile.in b/src/tool/hpcrun-flat/Makefile.in index 553a0fdbc5..43928dedf9 100644 --- a/src/tool/hpcrun-flat/Makefile.in +++ b/src/tool/hpcrun-flat/Makefile.in @@ -204,8 +204,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -268,7 +269,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -666,9 +667,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun-flat/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcrun-flat/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun-flat/Makefile + $(AUTOMAKE) --foreign src/tool/hpcrun-flat/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -785,59 +786,140 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-dlpapi.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-hpcpapi.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcrun_flat-hpcrun.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-hpcpapi.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-monitor.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-monitor_preload.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_flat_la-rtmap.Plo@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< libhpcrun_flat_la-monitor_preload.lo: monitor_preload.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor_preload.lo `test -f 'monitor_preload.c' || echo '$(srcdir)/'`monitor_preload.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-monitor_preload.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-monitor_preload.Tpo -c -o libhpcrun_flat_la-monitor_preload.lo `test -f 'monitor_preload.c' || echo '$(srcdir)/'`monitor_preload.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-monitor_preload.Tpo $(DEPDIR)/libhpcrun_flat_la-monitor_preload.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor_preload.c' object='libhpcrun_flat_la-monitor_preload.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor_preload.lo `test -f 'monitor_preload.c' || echo '$(srcdir)/'`monitor_preload.c libhpcrun_flat_la-monitor.lo: monitor.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor.lo `test -f 'monitor.c' || echo '$(srcdir)/'`monitor.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-monitor.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-monitor.Tpo -c -o libhpcrun_flat_la-monitor.lo `test -f 'monitor.c' || echo '$(srcdir)/'`monitor.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-monitor.Tpo $(DEPDIR)/libhpcrun_flat_la-monitor.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor.c' object='libhpcrun_flat_la-monitor.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-monitor.lo `test -f 'monitor.c' || echo '$(srcdir)/'`monitor.c libhpcrun_flat_la-hpcpapi.lo: hpcpapi.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-hpcpapi.lo `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-hpcpapi.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-hpcpapi.Tpo -c -o libhpcrun_flat_la-hpcpapi.lo `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-hpcpapi.Tpo $(DEPDIR)/libhpcrun_flat_la-hpcpapi.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcpapi.c' object='libhpcrun_flat_la-hpcpapi.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-hpcpapi.lo `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c libhpcrun_flat_la-rtmap.lo: rtmap.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-rtmap.lo `test -f 'rtmap.c' || echo '$(srcdir)/'`rtmap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -MT libhpcrun_flat_la-rtmap.lo -MD -MP -MF $(DEPDIR)/libhpcrun_flat_la-rtmap.Tpo -c -o libhpcrun_flat_la-rtmap.lo `test -f 'rtmap.c' || echo '$(srcdir)/'`rtmap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_flat_la-rtmap.Tpo $(DEPDIR)/libhpcrun_flat_la-rtmap.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rtmap.c' object='libhpcrun_flat_la-rtmap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_flat_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_flat_la-rtmap.lo `test -f 'rtmap.c' || echo '$(srcdir)/'`rtmap.c hpcrun_flat-hpcpapi.o: hpcpapi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.o `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-hpcpapi.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo -c -o hpcrun_flat-hpcpapi.o `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo $(DEPDIR)/hpcrun_flat-hpcpapi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcpapi.c' object='hpcrun_flat-hpcpapi.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.o `test -f 'hpcpapi.c' || echo '$(srcdir)/'`hpcpapi.c hpcrun_flat-hpcpapi.obj: hpcpapi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.obj `if test -f 'hpcpapi.c'; then $(CYGPATH_W) 'hpcpapi.c'; else $(CYGPATH_W) '$(srcdir)/hpcpapi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-hpcpapi.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo -c -o hpcrun_flat-hpcpapi.obj `if test -f 'hpcpapi.c'; then $(CYGPATH_W) 'hpcpapi.c'; else $(CYGPATH_W) '$(srcdir)/hpcpapi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcpapi.Tpo $(DEPDIR)/hpcrun_flat-hpcpapi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcpapi.c' object='hpcrun_flat-hpcpapi.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-hpcpapi.obj `if test -f 'hpcpapi.c'; then $(CYGPATH_W) 'hpcpapi.c'; else $(CYGPATH_W) '$(srcdir)/hpcpapi.c'; fi` hpcrun_flat-dlpapi.o: dlpapi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.o `test -f 'dlpapi.c' || echo '$(srcdir)/'`dlpapi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-dlpapi.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-dlpapi.Tpo -c -o hpcrun_flat-dlpapi.o `test -f 'dlpapi.c' || echo '$(srcdir)/'`dlpapi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-dlpapi.Tpo $(DEPDIR)/hpcrun_flat-dlpapi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dlpapi.c' object='hpcrun_flat-dlpapi.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.o `test -f 'dlpapi.c' || echo '$(srcdir)/'`dlpapi.c hpcrun_flat-dlpapi.obj: dlpapi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.obj `if test -f 'dlpapi.c'; then $(CYGPATH_W) 'dlpapi.c'; else $(CYGPATH_W) '$(srcdir)/dlpapi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -MT hpcrun_flat-dlpapi.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-dlpapi.Tpo -c -o hpcrun_flat-dlpapi.obj `if test -f 'dlpapi.c'; then $(CYGPATH_W) 'dlpapi.c'; else $(CYGPATH_W) '$(srcdir)/dlpapi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-dlpapi.Tpo $(DEPDIR)/hpcrun_flat-dlpapi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='dlpapi.c' object='hpcrun_flat-dlpapi.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CFLAGS) $(CFLAGS) -c -o hpcrun_flat-dlpapi.obj `if test -f 'dlpapi.c'; then $(CYGPATH_W) 'dlpapi.c'; else $(CYGPATH_W) '$(srcdir)/dlpapi.c'; fi` .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcrun_flat-hpcrun.o: hpcrun.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.o `test -f 'hpcrun.cpp' || echo '$(srcdir)/'`hpcrun.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-hpcrun.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcrun.Tpo -c -o hpcrun_flat-hpcrun.o `test -f 'hpcrun.cpp' || echo '$(srcdir)/'`hpcrun.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcrun.Tpo $(DEPDIR)/hpcrun_flat-hpcrun.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='hpcrun.cpp' object='hpcrun_flat-hpcrun.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.o `test -f 'hpcrun.cpp' || echo '$(srcdir)/'`hpcrun.cpp hpcrun_flat-hpcrun.obj: hpcrun.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.obj `if test -f 'hpcrun.cpp'; then $(CYGPATH_W) 'hpcrun.cpp'; else $(CYGPATH_W) '$(srcdir)/hpcrun.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-hpcrun.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-hpcrun.Tpo -c -o hpcrun_flat-hpcrun.obj `if test -f 'hpcrun.cpp'; then $(CYGPATH_W) 'hpcrun.cpp'; else $(CYGPATH_W) '$(srcdir)/hpcrun.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-hpcrun.Tpo $(DEPDIR)/hpcrun_flat-hpcrun.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='hpcrun.cpp' object='hpcrun_flat-hpcrun.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-hpcrun.obj `if test -f 'hpcrun.cpp'; then $(CYGPATH_W) 'hpcrun.cpp'; else $(CYGPATH_W) '$(srcdir)/hpcrun.cpp'; fi` hpcrun_flat-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-Args.o -MD -MP -MF $(DEPDIR)/hpcrun_flat-Args.Tpo -c -o hpcrun_flat-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-Args.Tpo $(DEPDIR)/hpcrun_flat-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcrun_flat-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcrun_flat-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -MT hpcrun_flat-Args.obj -MD -MP -MF $(DEPDIR)/hpcrun_flat-Args.Tpo -c -o hpcrun_flat-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcrun_flat-Args.Tpo $(DEPDIR)/hpcrun_flat-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcrun_flat-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcrun_flat_CXXFLAGS) $(CXXFLAGS) -c -o hpcrun_flat-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -971,6 +1053,7 @@ clean-am: clean-binPROGRAMS clean-generic clean-libtool \ clean-pkglibLTLIBRARIES mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -1017,6 +1100,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcrun/Makefile.in b/src/tool/hpcrun/Makefile.in index 38bf3fb0cb..3aa57474d8 100644 --- a/src/tool/hpcrun/Makefile.in +++ b/src/tool/hpcrun/Makefile.in @@ -887,8 +887,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CPPASCOMPILE = $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CCASFLAGS) $(CCASFLAGS) LTCPPASCOMPILE = $(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) \ @@ -994,7 +995,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags DIST_SUBDIRS = utilities/bgq-cnk -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -1805,9 +1806,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcrun/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcrun/Makefile + $(AUTOMAKE) --foreign src/tool/hpcrun/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -1860,36 +1861,44 @@ clean-pkglibLIBRARIES: sample-sources/$(am__dirstamp): @$(MKDIR_P) sample-sources @: > sample-sources/$(am__dirstamp) +sample-sources/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) sample-sources/$(DEPDIR) + @: > sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_ga_wrap_a-ga-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_ga_wrap.a: $(libhpcrun_ga_wrap_a_OBJECTS) $(libhpcrun_ga_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_ga_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_ga_wrap.a $(AM_V_AR)$(libhpcrun_ga_wrap_a_AR) libhpcrun_ga_wrap.a $(libhpcrun_ga_wrap_a_OBJECTS) $(libhpcrun_ga_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_ga_wrap.a sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_gpu_wrap.a: $(libhpcrun_gpu_wrap_a_OBJECTS) $(libhpcrun_gpu_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_gpu_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_gpu_wrap.a $(AM_V_AR)$(libhpcrun_gpu_wrap_a_AR) libhpcrun_gpu_wrap.a $(libhpcrun_gpu_wrap_a_OBJECTS) $(libhpcrun_gpu_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_gpu_wrap.a sample-sources/libhpcrun_io_wrap_a-io-over.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_io_wrap.a: $(libhpcrun_io_wrap_a_OBJECTS) $(libhpcrun_io_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_io_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_io_wrap.a $(AM_V_AR)$(libhpcrun_io_wrap_a_AR) libhpcrun_io_wrap.a $(libhpcrun_io_wrap_a_OBJECTS) $(libhpcrun_io_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_io_wrap.a sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_memleak_wrap.a: $(libhpcrun_memleak_wrap_a_OBJECTS) $(libhpcrun_memleak_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_memleak_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_memleak_wrap.a $(AM_V_AR)$(libhpcrun_memleak_wrap_a_AR) libhpcrun_memleak_wrap.a $(libhpcrun_memleak_wrap_a_OBJECTS) $(libhpcrun_memleak_wrap_a_LIBADD) $(AM_V_at)$(RANLIB) libhpcrun_memleak_wrap.a sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_pthread_wrap.a: $(libhpcrun_pthread_wrap_a_OBJECTS) $(libhpcrun_pthread_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_pthread_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_pthread_wrap.a @@ -1898,8 +1907,12 @@ libhpcrun_pthread_wrap.a: $(libhpcrun_pthread_wrap_a_OBJECTS) $(libhpcrun_pthrea monitor-exts/$(am__dirstamp): @$(MKDIR_P) monitor-exts @: > monitor-exts/$(am__dirstamp) +monitor-exts/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) monitor-exts/$(DEPDIR) + @: > monitor-exts/$(DEPDIR)/$(am__dirstamp) monitor-exts/libhpcrun_wrap_a-openmp.$(OBJEXT): \ - monitor-exts/$(am__dirstamp) + monitor-exts/$(am__dirstamp) \ + monitor-exts/$(DEPDIR)/$(am__dirstamp) libhpcrun_wrap.a: $(libhpcrun_wrap_a_OBJECTS) $(libhpcrun_wrap_a_DEPENDENCIES) $(EXTRA_libhpcrun_wrap_a_DEPENDENCIES) $(AM_V_at)-rm -f libhpcrun_wrap.a @@ -1913,7 +1926,11 @@ libhpctoolkit.a: $(libhpctoolkit_a_OBJECTS) $(libhpctoolkit_a_DEPENDENCIES) $(EX plugins/$(am__dirstamp): @$(MKDIR_P) plugins @: > plugins/$(am__dirstamp) -plugins/ibm-xlomp-wrappers.$(OBJEXT): plugins/$(am__dirstamp) +plugins/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) plugins/$(DEPDIR) + @: > plugins/$(DEPDIR)/$(am__dirstamp) +plugins/ibm-xlomp-wrappers.$(OBJEXT): plugins/$(am__dirstamp) \ + plugins/$(DEPDIR)/$(am__dirstamp) libibm_xlomp_wrappers.a: $(libibm_xlomp_wrappers_a_OBJECTS) $(libibm_xlomp_wrappers_a_DEPENDENCIES) $(EXTRA_libibm_xlomp_wrappers_a_DEPENDENCIES) $(AM_V_at)-rm -f libibm_xlomp_wrappers.a @@ -1957,245 +1974,409 @@ clean-pkglibLTLIBRARIES: lush-agents/$(am__dirstamp): @$(MKDIR_P) lush-agents @: > lush-agents/$(am__dirstamp) +lush-agents/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) lush-agents/$(DEPDIR) + @: > lush-agents/$(DEPDIR)/$(am__dirstamp) lush-agents/libagent_cilk_la-agent-cilk.lo: \ - lush-agents/$(am__dirstamp) + lush-agents/$(am__dirstamp) \ + lush-agents/$(DEPDIR)/$(am__dirstamp) lush/$(am__dirstamp): @$(MKDIR_P) lush @: > lush/$(am__dirstamp) -lush/libagent_cilk_la-lush-support-rt.lo: lush/$(am__dirstamp) +lush/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) lush/$(DEPDIR) + @: > lush/$(DEPDIR)/$(am__dirstamp) +lush/libagent_cilk_la-lush-support-rt.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) libagent-cilk.la: $(libagent_cilk_la_OBJECTS) $(libagent_cilk_la_DEPENDENCIES) $(EXTRA_libagent_cilk_la_DEPENDENCIES) $(AM_V_CCLD)$(libagent_cilk_la_LINK) $(am_libagent_cilk_la_rpath) $(libagent_cilk_la_OBJECTS) $(libagent_cilk_la_LIBADD) $(LIBS) lush-agents/libagent_pthread_la-agent-pthread.lo: \ - lush-agents/$(am__dirstamp) -lush/libagent_pthread_la-lush-support-rt.lo: lush/$(am__dirstamp) + lush-agents/$(am__dirstamp) \ + lush-agents/$(DEPDIR)/$(am__dirstamp) +lush/libagent_pthread_la-lush-support-rt.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) libagent-pthread.la: $(libagent_pthread_la_OBJECTS) $(libagent_pthread_la_DEPENDENCIES) $(EXTRA_libagent_pthread_la_DEPENDENCIES) $(AM_V_CCLD)$(libagent_pthread_la_LINK) $(am_libagent_pthread_la_rpath) $(libagent_pthread_la_OBJECTS) $(libagent_pthread_la_LIBADD) $(LIBS) -lush-agents/libagent_tbb_la-agent-tbb.lo: lush-agents/$(am__dirstamp) -lush/libagent_tbb_la-lush-support-rt.lo: lush/$(am__dirstamp) +lush-agents/libagent_tbb_la-agent-tbb.lo: lush-agents/$(am__dirstamp) \ + lush-agents/$(DEPDIR)/$(am__dirstamp) +lush/libagent_tbb_la-lush-support-rt.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) libagent-tbb.la: $(libagent_tbb_la_OBJECTS) $(libagent_tbb_la_DEPENDENCIES) $(EXTRA_libagent_tbb_la_DEPENDENCIES) $(AM_V_CCLD)$(libagent_tbb_la_LINK) $(am_libagent_tbb_la_rpath) $(libagent_tbb_la_OBJECTS) $(libagent_tbb_la_LIBADD) $(LIBS) utilities/$(am__dirstamp): @$(MKDIR_P) utilities @: > utilities/$(am__dirstamp) -utilities/libhpcrun_la-first_func.lo: utilities/$(am__dirstamp) +utilities/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) utilities/$(DEPDIR) + @: > utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-first_func.lo: utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) sample-sources/blame-shift/$(am__dirstamp): @$(MKDIR_P) sample-sources/blame-shift @: > sample-sources/blame-shift/$(am__dirstamp) +sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) sample-sources/blame-shift/$(DEPDIR) + @: > sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_la-blame-shift.lo: \ - sample-sources/blame-shift/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) \ + sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_la-blame-map.lo: \ - sample-sources/blame-shift/$(am__dirstamp) -sample-sources/libhpcrun_la-common.lo: sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-ga.lo: sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-io.lo: sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-itimer.lo: sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-idle.lo: sample-sources/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) \ + sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-common.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-ga.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-io.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-itimer.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-idle.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_la-memleak.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_la-pthread-blame.lo: \ - sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-none.lo: sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-retcnt.lo: sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-sync.lo: sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-none.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-retcnt.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-sync.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) cct/$(am__dirstamp): @$(MKDIR_P) cct @: > cct/$(am__dirstamp) -cct/libhpcrun_la-cct_bundle.lo: cct/$(am__dirstamp) -cct/libhpcrun_la-cct_ctxt.lo: cct/$(am__dirstamp) -cct/libhpcrun_la-cct.lo: cct/$(am__dirstamp) +cct/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) cct/$(DEPDIR) + @: > cct/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_la-cct_bundle.lo: cct/$(am__dirstamp) \ + cct/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_la-cct_ctxt.lo: cct/$(am__dirstamp) \ + cct/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_la-cct.lo: cct/$(am__dirstamp) \ + cct/$(DEPDIR)/$(am__dirstamp) trampoline/common/$(am__dirstamp): @$(MKDIR_P) trampoline/common @: > trampoline/common/$(am__dirstamp) +trampoline/common/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) trampoline/common/$(DEPDIR) + @: > trampoline/common/$(DEPDIR)/$(am__dirstamp) trampoline/common/libhpcrun_la-trampoline.lo: \ - trampoline/common/$(am__dirstamp) -lush/libhpcrun_la-lush-backtrace.lo: lush/$(am__dirstamp) -lush/libhpcrun_la-lush.lo: lush/$(am__dirstamp) -lush/libhpcrun_la-lush-pthread.lo: lush/$(am__dirstamp) -lush/libhpcrun_la-lush-support-rt.lo: lush/$(am__dirstamp) -lush/libhpcrun_la-lushi-cb.lo: lush/$(am__dirstamp) + trampoline/common/$(am__dirstamp) \ + trampoline/common/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_la-lush-backtrace.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_la-lush.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_la-lush-pthread.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_la-lush-support-rt.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_la-lushi-cb.lo: lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) fnbounds/$(am__dirstamp): @$(MKDIR_P) fnbounds @: > fnbounds/$(am__dirstamp) -fnbounds/libhpcrun_la-fnbounds_common.lo: fnbounds/$(am__dirstamp) +fnbounds/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) fnbounds/$(DEPDIR) + @: > fnbounds/$(DEPDIR)/$(am__dirstamp) +fnbounds/libhpcrun_la-fnbounds_common.lo: fnbounds/$(am__dirstamp) \ + fnbounds/$(DEPDIR)/$(am__dirstamp) memory/$(am__dirstamp): @$(MKDIR_P) memory @: > memory/$(am__dirstamp) -memory/libhpcrun_la-mem.lo: memory/$(am__dirstamp) -memory/libhpcrun_la-mmap.lo: memory/$(am__dirstamp) +memory/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) memory/$(DEPDIR) + @: > memory/$(DEPDIR)/$(am__dirstamp) +memory/libhpcrun_la-mem.lo: memory/$(am__dirstamp) \ + memory/$(DEPDIR)/$(am__dirstamp) +memory/libhpcrun_la-mmap.lo: memory/$(am__dirstamp) \ + memory/$(DEPDIR)/$(am__dirstamp) messages/$(am__dirstamp): @$(MKDIR_P) messages @: > messages/$(am__dirstamp) -messages/libhpcrun_la-debug-flag.lo: messages/$(am__dirstamp) -messages/libhpcrun_la-messages-sync.lo: messages/$(am__dirstamp) -messages/libhpcrun_la-messages-async.lo: messages/$(am__dirstamp) -messages/libhpcrun_la-fmt.lo: messages/$(am__dirstamp) -utilities/libhpcrun_la-executable-path.lo: utilities/$(am__dirstamp) -utilities/libhpcrun_la-ip-normalized.lo: utilities/$(am__dirstamp) -utilities/libhpcrun_la-tokenize.lo: utilities/$(am__dirstamp) -utilities/libhpcrun_la-unlink.lo: utilities/$(am__dirstamp) -fnbounds/libhpcrun_la-fnbounds_client.lo: fnbounds/$(am__dirstamp) -fnbounds/libhpcrun_la-fnbounds_dynamic.lo: fnbounds/$(am__dirstamp) -monitor-exts/libhpcrun_la-openmp.lo: monitor-exts/$(am__dirstamp) +messages/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) messages/$(DEPDIR) + @: > messages/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_la-debug-flag.lo: messages/$(am__dirstamp) \ + messages/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_la-messages-sync.lo: messages/$(am__dirstamp) \ + messages/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_la-messages-async.lo: messages/$(am__dirstamp) \ + messages/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_la-fmt.lo: messages/$(am__dirstamp) \ + messages/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-executable-path.lo: utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-ip-normalized.lo: utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-tokenize.lo: utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-unlink.lo: utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) +fnbounds/libhpcrun_la-fnbounds_client.lo: fnbounds/$(am__dirstamp) \ + fnbounds/$(DEPDIR)/$(am__dirstamp) +fnbounds/libhpcrun_la-fnbounds_dynamic.lo: fnbounds/$(am__dirstamp) \ + fnbounds/$(DEPDIR)/$(am__dirstamp) +monitor-exts/libhpcrun_la-openmp.lo: monitor-exts/$(am__dirstamp) \ + monitor-exts/$(DEPDIR)/$(am__dirstamp) os/linux/$(am__dirstamp): @$(MKDIR_P) os/linux @: > os/linux/$(am__dirstamp) -os/linux/libhpcrun_la-dylib.lo: os/linux/$(am__dirstamp) +os/linux/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) os/linux/$(DEPDIR) + @: > os/linux/$(DEPDIR)/$(am__dirstamp) +os/linux/libhpcrun_la-dylib.lo: os/linux/$(am__dirstamp) \ + os/linux/$(DEPDIR)/$(am__dirstamp) unwind/common/$(am__dirstamp): @$(MKDIR_P) unwind/common @: > unwind/common/$(am__dirstamp) +unwind/common/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) unwind/common/$(DEPDIR) + @: > unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-default_validation_summary.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) trampoline/ppc64/$(am__dirstamp): @$(MKDIR_P) trampoline/ppc64 @: > trampoline/ppc64/$(am__dirstamp) +trampoline/ppc64/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) trampoline/ppc64/$(DEPDIR) + @: > trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) trampoline/ppc64/libhpcrun_la-ppc64-tramp.lo: \ - trampoline/ppc64/$(am__dirstamp) + trampoline/ppc64/$(am__dirstamp) \ + trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ppc64/$(am__dirstamp): @$(MKDIR_P) utilities/arch/ppc64 @: > utilities/arch/ppc64/$(am__dirstamp) +utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) utilities/arch/ppc64/$(DEPDIR) + @: > utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo: \ - utilities/arch/ppc64/$(am__dirstamp) + utilities/arch/ppc64/$(am__dirstamp) \ + utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) trampoline/x86-family/$(am__dirstamp): @$(MKDIR_P) trampoline/x86-family @: > trampoline/x86-family/$(am__dirstamp) +trampoline/x86-family/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) trampoline/x86-family/$(DEPDIR) + @: > trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) trampoline/x86-family/libhpcrun_la-x86-tramp.lo: \ - trampoline/x86-family/$(am__dirstamp) + trampoline/x86-family/$(am__dirstamp) \ + trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) utilities/arch/x86-family/$(am__dirstamp): @$(MKDIR_P) utilities/arch/x86-family @: > utilities/arch/x86-family/$(am__dirstamp) +utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) utilities/arch/x86-family/$(DEPDIR) + @: > utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo: \ - utilities/arch/x86-family/$(am__dirstamp) + utilities/arch/x86-family/$(am__dirstamp) \ + utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) trampoline/ia64/$(am__dirstamp): @$(MKDIR_P) trampoline/ia64 @: > trampoline/ia64/$(am__dirstamp) +trampoline/ia64/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) trampoline/ia64/$(DEPDIR) + @: > trampoline/ia64/$(DEPDIR)/$(am__dirstamp) trampoline/ia64/libhpcrun_la-ia64-tramp.lo: \ - trampoline/ia64/$(am__dirstamp) + trampoline/ia64/$(am__dirstamp) \ + trampoline/ia64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ia64/$(am__dirstamp): @$(MKDIR_P) utilities/arch/ia64 @: > utilities/arch/ia64/$(am__dirstamp) +utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) utilities/arch/ia64/$(DEPDIR) + @: > utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo: \ - utilities/arch/ia64/$(am__dirstamp) + utilities/arch/ia64/$(am__dirstamp) \ + utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) trampoline/aarch64/$(am__dirstamp): @$(MKDIR_P) trampoline/aarch64 @: > trampoline/aarch64/$(am__dirstamp) +trampoline/aarch64/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) trampoline/aarch64/$(DEPDIR) + @: > trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo: \ - trampoline/aarch64/$(am__dirstamp) + trampoline/aarch64/$(am__dirstamp) \ + trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) utilities/arch/libunwind/$(am__dirstamp): @$(MKDIR_P) utilities/arch/libunwind @: > utilities/arch/libunwind/$(am__dirstamp) +utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) utilities/arch/libunwind/$(DEPDIR) + @: > utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo: \ - utilities/arch/libunwind/$(am__dirstamp) -sample-sources/libhpcrun_la-papi.lo: sample-sources/$(am__dirstamp) + utilities/arch/libunwind/$(am__dirstamp) \ + utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-papi.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_la-papi-c-cupti.lo: \ - sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-papi-c.lo: sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-papi-c.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_la-papi-c-extended-info.lo: \ - sample-sources/$(am__dirstamp) -sample-sources/libhpcrun_la-upc.lo: sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +sample-sources/libhpcrun_la-upc.lo: sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_la-gpu_blame.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_la-gpu_ctxt_actions.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-backtrace.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-unw-throw.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-binarytree_uwi.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-interval_t.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-stack_troll.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_la-uw_recipe_map.lo: \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/generic-libunwind/$(am__dirstamp): @$(MKDIR_P) unwind/generic-libunwind @: > unwind/generic-libunwind/$(am__dirstamp) +unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) unwind/generic-libunwind/$(DEPDIR) + @: > unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: \ - unwind/generic-libunwind/$(am__dirstamp) + unwind/generic-libunwind/$(am__dirstamp) \ + unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) unwind/ppc64/$(am__dirstamp): @$(MKDIR_P) unwind/ppc64 @: > unwind/ppc64/$(am__dirstamp) +unwind/ppc64/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) unwind/ppc64/$(DEPDIR) + @: > unwind/ppc64/$(DEPDIR)/$(am__dirstamp) unwind/ppc64/libhpcrun_la-ppc64-unwind.lo: \ - unwind/ppc64/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) \ + unwind/ppc64/$(DEPDIR)/$(am__dirstamp) unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo: \ - unwind/ppc64/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) \ + unwind/ppc64/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/$(am__dirstamp): @$(MKDIR_P) unwind/x86-family @: > unwind/x86-family/$(am__dirstamp) +unwind/x86-family/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) unwind/x86-family/$(DEPDIR) + @: > unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-all.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-amd-xop.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-cold-path.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_la-x86-unwind-support.lo: \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/$(am__dirstamp): @$(MKDIR_P) unwind/x86-family/manual-intervals @: > unwind/x86-family/manual-intervals/$(am__dirstamp) +unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) unwind/x86-family/manual-intervals/$(DEPDIR) + @: > unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo: \ - unwind/x86-family/manual-intervals/$(am__dirstamp) -utilities/libhpcrun_la-last_func.lo: utilities/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_la-last_func.lo: utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) libhpcrun.la: $(libhpcrun_la_OBJECTS) $(libhpcrun_la_DEPENDENCIES) $(EXTRA_libhpcrun_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_la_LINK) $(am_libhpcrun_la_rpath) $(libhpcrun_la_OBJECTS) $(libhpcrun_la_LIBADD) $(LIBS) sample-sources/libhpcrun_ga_la-ga-overrides.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_ga.la: $(libhpcrun_ga_la_OBJECTS) $(libhpcrun_ga_la_DEPENDENCIES) $(EXTRA_libhpcrun_ga_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_ga_la_LINK) $(am_libhpcrun_ga_la_rpath) $(libhpcrun_ga_la_OBJECTS) $(libhpcrun_ga_la_LIBADD) $(LIBS) sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_gpu.la: $(libhpcrun_gpu_la_OBJECTS) $(libhpcrun_gpu_la_DEPENDENCIES) $(EXTRA_libhpcrun_gpu_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_gpu_la_LINK) $(am_libhpcrun_gpu_la_rpath) $(libhpcrun_gpu_la_OBJECTS) $(libhpcrun_gpu_la_LIBADD) $(LIBS) sample-sources/libhpcrun_io_la-io-over.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_io.la: $(libhpcrun_io_la_OBJECTS) $(libhpcrun_io_la_DEPENDENCIES) $(EXTRA_libhpcrun_io_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_io_la_LINK) $(am_libhpcrun_io_la_rpath) $(libhpcrun_io_la_OBJECTS) $(libhpcrun_io_la_LIBADD) $(LIBS) sample-sources/libhpcrun_memleak_la-memleak-overrides.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_memleak.la: $(libhpcrun_memleak_la_OBJECTS) $(libhpcrun_memleak_la_DEPENDENCIES) $(EXTRA_libhpcrun_memleak_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_memleak_la_LINK) $(am_libhpcrun_memleak_la_rpath) $(libhpcrun_memleak_la_OBJECTS) $(libhpcrun_memleak_la_LIBADD) $(LIBS) ./$(am__dirstamp): @$(MKDIR_P) . @: > ./$(am__dirstamp) -./libhpcrun_mpi_la-mpi-overrides.lo: ./$(am__dirstamp) +$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ./$(DEPDIR) + @: > $(DEPDIR)/$(am__dirstamp) +./libhpcrun_mpi_la-mpi-overrides.lo: ./$(am__dirstamp) \ + $(DEPDIR)/$(am__dirstamp) libhpcrun_mpi.la: $(libhpcrun_mpi_la_OBJECTS) $(libhpcrun_mpi_la_DEPENDENCIES) $(EXTRA_libhpcrun_mpi_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_mpi_la_LINK) $(am_libhpcrun_mpi_la_rpath) $(libhpcrun_mpi_la_OBJECTS) $(libhpcrun_mpi_la_LIBADD) $(LIBS) sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo: \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) libhpcrun_pthread.la: $(libhpcrun_pthread_la_OBJECTS) $(libhpcrun_pthread_la_DEPENDENCIES) $(EXTRA_libhpcrun_pthread_la_DEPENDENCIES) $(AM_V_CCLD)$(libhpcrun_pthread_la_LINK) $(am_libhpcrun_pthread_la_rpath) $(libhpcrun_pthread_la_OBJECTS) $(libhpcrun_pthread_la_LIBADD) $(LIBS) @@ -2260,140 +2441,209 @@ clean-pkglibexecPROGRAMS: list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list -utilities/libhpcrun_o-first_func.$(OBJEXT): utilities/$(am__dirstamp) +utilities/libhpcrun_o-first_func.$(OBJEXT): utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_o-blame-shift.$(OBJEXT): \ - sample-sources/blame-shift/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) \ + sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) sample-sources/blame-shift/libhpcrun_o-blame-map.$(OBJEXT): \ - sample-sources/blame-shift/$(am__dirstamp) + sample-sources/blame-shift/$(am__dirstamp) \ + sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-common.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-ga.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-io.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-itimer.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-idle.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-memleak.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-pthread-blame.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-none.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-retcnt.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-sync.$(OBJEXT): \ - sample-sources/$(am__dirstamp) -cct/libhpcrun_o-cct_bundle.$(OBJEXT): cct/$(am__dirstamp) -cct/libhpcrun_o-cct_ctxt.$(OBJEXT): cct/$(am__dirstamp) -cct/libhpcrun_o-cct.$(OBJEXT): cct/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_o-cct_bundle.$(OBJEXT): cct/$(am__dirstamp) \ + cct/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_o-cct_ctxt.$(OBJEXT): cct/$(am__dirstamp) \ + cct/$(DEPDIR)/$(am__dirstamp) +cct/libhpcrun_o-cct.$(OBJEXT): cct/$(am__dirstamp) \ + cct/$(DEPDIR)/$(am__dirstamp) trampoline/common/libhpcrun_o-trampoline.$(OBJEXT): \ - trampoline/common/$(am__dirstamp) -lush/libhpcrun_o-lush-backtrace.$(OBJEXT): lush/$(am__dirstamp) -lush/libhpcrun_o-lush.$(OBJEXT): lush/$(am__dirstamp) -lush/libhpcrun_o-lush-pthread.$(OBJEXT): lush/$(am__dirstamp) -lush/libhpcrun_o-lush-support-rt.$(OBJEXT): lush/$(am__dirstamp) -lush/libhpcrun_o-lushi-cb.$(OBJEXT): lush/$(am__dirstamp) + trampoline/common/$(am__dirstamp) \ + trampoline/common/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_o-lush-backtrace.$(OBJEXT): lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_o-lush.$(OBJEXT): lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_o-lush-pthread.$(OBJEXT): lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_o-lush-support-rt.$(OBJEXT): lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) +lush/libhpcrun_o-lushi-cb.$(OBJEXT): lush/$(am__dirstamp) \ + lush/$(DEPDIR)/$(am__dirstamp) fnbounds/libhpcrun_o-fnbounds_common.$(OBJEXT): \ - fnbounds/$(am__dirstamp) -memory/libhpcrun_o-mem.$(OBJEXT): memory/$(am__dirstamp) -memory/libhpcrun_o-mmap.$(OBJEXT): memory/$(am__dirstamp) -messages/libhpcrun_o-debug-flag.$(OBJEXT): messages/$(am__dirstamp) + fnbounds/$(am__dirstamp) fnbounds/$(DEPDIR)/$(am__dirstamp) +memory/libhpcrun_o-mem.$(OBJEXT): memory/$(am__dirstamp) \ + memory/$(DEPDIR)/$(am__dirstamp) +memory/libhpcrun_o-mmap.$(OBJEXT): memory/$(am__dirstamp) \ + memory/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_o-debug-flag.$(OBJEXT): messages/$(am__dirstamp) \ + messages/$(DEPDIR)/$(am__dirstamp) messages/libhpcrun_o-messages-sync.$(OBJEXT): \ - messages/$(am__dirstamp) + messages/$(am__dirstamp) messages/$(DEPDIR)/$(am__dirstamp) messages/libhpcrun_o-messages-async.$(OBJEXT): \ - messages/$(am__dirstamp) -messages/libhpcrun_o-fmt.$(OBJEXT): messages/$(am__dirstamp) + messages/$(am__dirstamp) messages/$(DEPDIR)/$(am__dirstamp) +messages/libhpcrun_o-fmt.$(OBJEXT): messages/$(am__dirstamp) \ + messages/$(DEPDIR)/$(am__dirstamp) utilities/libhpcrun_o-executable-path.$(OBJEXT): \ - utilities/$(am__dirstamp) + utilities/$(am__dirstamp) utilities/$(DEPDIR)/$(am__dirstamp) utilities/libhpcrun_o-ip-normalized.$(OBJEXT): \ - utilities/$(am__dirstamp) -utilities/libhpcrun_o-tokenize.$(OBJEXT): utilities/$(am__dirstamp) -utilities/libhpcrun_o-unlink.$(OBJEXT): utilities/$(am__dirstamp) + utilities/$(am__dirstamp) utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_o-tokenize.$(OBJEXT): utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_o-unlink.$(OBJEXT): utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) fnbounds/libhpcrun_o-fnbounds_static.$(OBJEXT): \ - fnbounds/$(am__dirstamp) + fnbounds/$(am__dirstamp) fnbounds/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-default_validation_summary.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) trampoline/ppc64/libhpcrun_o-ppc64-tramp.$(OBJEXT): \ - trampoline/ppc64/$(am__dirstamp) + trampoline/ppc64/$(am__dirstamp) \ + trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.$(OBJEXT): \ - utilities/arch/ppc64/$(am__dirstamp) + utilities/arch/ppc64/$(am__dirstamp) \ + utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) trampoline/x86-family/libhpcrun_o-x86-tramp.$(OBJEXT): \ - trampoline/x86-family/$(am__dirstamp) + trampoline/x86-family/$(am__dirstamp) \ + trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) utilities/arch/x86-family/libhpcrun_o-x86-context-pc.$(OBJEXT): \ - utilities/arch/x86-family/$(am__dirstamp) + utilities/arch/x86-family/$(am__dirstamp) \ + utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) trampoline/ia64/libhpcrun_o-ia64-tramp.$(OBJEXT): \ - trampoline/ia64/$(am__dirstamp) + trampoline/ia64/$(am__dirstamp) \ + trampoline/ia64/$(DEPDIR)/$(am__dirstamp) utilities/arch/ia64/libhpcrun_o-ia64-context-pc.$(OBJEXT): \ - utilities/arch/ia64/$(am__dirstamp) + utilities/arch/ia64/$(am__dirstamp) \ + utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) trampoline/aarch64/libhpcrun_o-aarch64-tramp.$(OBJEXT): \ - trampoline/aarch64/$(am__dirstamp) + trampoline/aarch64/$(am__dirstamp) \ + trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.$(OBJEXT): \ - utilities/arch/libunwind/$(am__dirstamp) + utilities/arch/libunwind/$(am__dirstamp) \ + utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-papi.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-papi-c-cupti.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-papi-c.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-papi-c-extended-info.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) sample-sources/libhpcrun_o-upc.$(OBJEXT): \ - sample-sources/$(am__dirstamp) + sample-sources/$(am__dirstamp) \ + sample-sources/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-backtrace.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-unw-throw.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-binarytree_uwi.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-interval_t.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-stack_troll.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/common/libhpcrun_o-uw_recipe_map.$(OBJEXT): \ - unwind/common/$(am__dirstamp) + unwind/common/$(am__dirstamp) \ + unwind/common/$(DEPDIR)/$(am__dirstamp) unwind/generic-libunwind/libhpcrun_o-libunw-unwind.$(OBJEXT): \ - unwind/generic-libunwind/$(am__dirstamp) + unwind/generic-libunwind/$(am__dirstamp) \ + unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) unwind/ppc64/libhpcrun_o-ppc64-unwind.$(OBJEXT): \ - unwind/ppc64/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) \ + unwind/ppc64/$(DEPDIR)/$(am__dirstamp) unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.$(OBJEXT): \ - unwind/ppc64/$(am__dirstamp) + unwind/ppc64/$(am__dirstamp) \ + unwind/ppc64/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-all.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-amd-xop.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-cold-path.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind-interval.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/libhpcrun_o-x86-unwind-support.$(OBJEXT): \ - unwind/x86-family/$(am__dirstamp) + unwind/x86-family/$(am__dirstamp) \ + unwind/x86-family/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.$(OBJEXT): \ - unwind/x86-family/manual-intervals/$(am__dirstamp) -utilities/libhpcrun_o-last_func.$(OBJEXT): utilities/$(am__dirstamp) + unwind/x86-family/manual-intervals/$(am__dirstamp) \ + unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) +utilities/libhpcrun_o-last_func.$(OBJEXT): utilities/$(am__dirstamp) \ + utilities/$(DEPDIR)/$(am__dirstamp) libhpcrun.o$(EXEEXT): $(libhpcrun_o_OBJECTS) $(libhpcrun_o_DEPENDENCIES) $(EXTRA_libhpcrun_o_DEPENDENCIES) @rm -f libhpcrun.o$(EXEEXT) @@ -2528,1064 +2778,2720 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-cct2metrics.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-custom-init-dynamic.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-disabled.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-env.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-epoch.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-files.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-handling_sample.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-hpcrun_options.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-hpcrun_stats.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-loadmap.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-metrics.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-name.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-rank.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_event.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_prob.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_sources_all.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-sample_sources_registered.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-segv_handler.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-start-stop.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-term_handler.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-thread_data.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-thread_use.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-threadmgr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-trace.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-weak.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_la-write_data.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-cct2metrics.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-custom-init-static.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-disabled.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-env.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-epoch.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-files.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-handling_sample.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-hpcrun_options.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-hpcrun_stats.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-loadmap.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-main.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-metrics.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-name.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-rank.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_event.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_prob.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_sources_all.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-sample_sources_registered.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-segv_handler.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-start-stop.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-term_handler.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-thread_data.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-thread_use.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-threadmgr.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-trace.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-weak.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpcrun_o-write_data.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpctoolkit_a-hpctoolkit.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libhpctoolkit_la-hpctoolkit.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_la-cct.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_o-cct.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lush.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lush.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_la-mem.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_la-mmap.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_o-mem.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@memory/$(DEPDIR)/libhpcrun_o-mmap.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-debug-flag.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-fmt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-messages-async.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_la-messages-sync.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-debug-flag.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-fmt.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-messages-async.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@messages/$(DEPDIR)/libhpcrun_o-messages-sync.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@os/linux/$(DEPDIR)/libhpcrun_la-dylib.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@plugins/$(DEPDIR)/ibm-xlomp-wrappers.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-common.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-ga.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-idle.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-io.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-none.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-papi.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-sync.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_la-upc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-common.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-ga.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-idle.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-io.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-none.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-papi.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-sync.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_o-upc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-executable-path.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-first_func.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-last_func.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-tokenize.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_la-unlink.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-executable-path.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-first_func.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-last_func.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-tokenize.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/$(DEPDIR)/libhpcrun_o-unlink.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Plo@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Po@am__quote@ + .S.o: - $(AM_V_CPPAS)$(CPPASCOMPILE) -c -o $@ $< +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ $< .S.obj: - $(AM_V_CPPAS)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCCAS_TRUE@ $(CPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CPPASCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .S.lo: - $(AM_V_CPPAS)$(LTCPPASCOMPILE) -c -o $@ $< +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCCAS_TRUE@ $(LTCPPASCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCCAS_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LTCPPASCOMPILE) -c -o $@ $< trampoline/x86-family/libhpcrun_la-x86-tramp.lo: trampoline/x86-family/x86-tramp.S - $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_la-x86-tramp.lo `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CCASFLAGS) $(CCASFLAGS) -MT trampoline/x86-family/libhpcrun_la-x86-tramp.lo -MD -MP -MF trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Tpo -c -o trampoline/x86-family/libhpcrun_la-x86-tramp.lo `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S +@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Tpo trampoline/x86-family/$(DEPDIR)/libhpcrun_la-x86-tramp.Plo +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='trampoline/x86-family/x86-tramp.S' object='trampoline/x86-family/libhpcrun_la-x86-tramp.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(LIBTOOL) $(AM_V_lt) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_la-x86-tramp.lo `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S trampoline/x86-family/libhpcrun_o-x86-tramp.o: trampoline/x86-family/x86-tramp.S - $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.o `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -MT trampoline/x86-family/libhpcrun_o-x86-tramp.o -MD -MP -MF trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.o `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S +@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Po +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='trampoline/x86-family/x86-tramp.S' object='trampoline/x86-family/libhpcrun_o-x86-tramp.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.o `test -f 'trampoline/x86-family/x86-tramp.S' || echo '$(srcdir)/'`trampoline/x86-family/x86-tramp.S trampoline/x86-family/libhpcrun_o-x86-tramp.obj: trampoline/x86-family/x86-tramp.S - $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.obj `if test -f 'trampoline/x86-family/x86-tramp.S'; then $(CYGPATH_W) 'trampoline/x86-family/x86-tramp.S'; else $(CYGPATH_W) '$(srcdir)/trampoline/x86-family/x86-tramp.S'; fi` +@am__fastdepCCAS_TRUE@ $(AM_V_CPPAS)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -MT trampoline/x86-family/libhpcrun_o-x86-tramp.obj -MD -MP -MF trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.obj `if test -f 'trampoline/x86-family/x86-tramp.S'; then $(CYGPATH_W) 'trampoline/x86-family/x86-tramp.S'; else $(CYGPATH_W) '$(srcdir)/trampoline/x86-family/x86-tramp.S'; fi` +@am__fastdepCCAS_TRUE@ $(AM_V_at)$(am__mv) trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Tpo trampoline/x86-family/$(DEPDIR)/libhpcrun_o-x86-tramp.Po +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS)source='trampoline/x86-family/x86-tramp.S' object='trampoline/x86-family/libhpcrun_o-x86-tramp.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCCAS_FALSE@ DEPDIR=$(DEPDIR) $(CCASDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCCAS_FALSE@ $(AM_V_CPPAS@am__nodep@)$(CCAS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CCASFLAGS) $(CCASFLAGS) -c -o trampoline/x86-family/libhpcrun_o-x86-tramp.obj `if test -f 'trampoline/x86-family/x86-tramp.S'; then $(CYGPATH_W) 'trampoline/x86-family/x86-tramp.S'; else $(CYGPATH_W) '$(srcdir)/trampoline/x86-family/x86-tramp.S'; fi` .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o: sample-sources/ga-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga-overrides.c' object='sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.o `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj: sample-sources/ga-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj `if test -f 'sample-sources/ga-overrides.c'; then $(CYGPATH_W) 'sample-sources/ga-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj `if test -f 'sample-sources/ga-overrides.c'; then $(CYGPATH_W) 'sample-sources/ga-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_ga_wrap_a-ga-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga-overrides.c' object='sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_wrap_a-ga-overrides.obj `if test -f 'sample-sources/ga-overrides.c'; then $(CYGPATH_W) 'sample-sources/ga-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga-overrides.c'; fi` sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o: sample-sources/gpu_blame-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame-overrides.c' object='sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.o `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj: sample-sources/gpu_blame-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj `if test -f 'sample-sources/gpu_blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/gpu_blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/gpu_blame-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj `if test -f 'sample-sources/gpu_blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/gpu_blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/gpu_blame-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame-overrides.c' object='sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_wrap_a-gpu_blame-overrides.obj `if test -f 'sample-sources/gpu_blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/gpu_blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/gpu_blame-overrides.c'; fi` libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o: gpu_blame-driver-overrides-generated.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-driver-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.o `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj: gpu_blame-driver-overrides-generated.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj `if test -f 'gpu_blame-driver-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-driver-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-driver-overrides-generated.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj `if test -f 'gpu_blame-driver-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-driver-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-driver-overrides-generated.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-driver-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-driver-overrides-generated.obj `if test -f 'gpu_blame-driver-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-driver-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-driver-overrides-generated.c'; fi` libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o: gpu_blame-runtime-overrides-generated.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-runtime-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.o `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj: gpu_blame-runtime-overrides-generated.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj `if test -f 'gpu_blame-runtime-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-runtime-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-runtime-overrides-generated.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj `if test -f 'gpu_blame-runtime-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-runtime-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-runtime-overrides-generated.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-runtime-overrides-generated.c' object='libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_wrap_a_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_wrap_a-gpu_blame-runtime-overrides-generated.obj `if test -f 'gpu_blame-runtime-overrides-generated.c'; then $(CYGPATH_W) 'gpu_blame-runtime-overrides-generated.c'; else $(CYGPATH_W) '$(srcdir)/gpu_blame-runtime-overrides-generated.c'; fi` sample-sources/libhpcrun_io_wrap_a-io-over.o: sample-sources/io-over.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.o `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_io_wrap_a-io-over.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo -c -o sample-sources/libhpcrun_io_wrap_a-io-over.o `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io-over.c' object='sample-sources/libhpcrun_io_wrap_a-io-over.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.o `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c sample-sources/libhpcrun_io_wrap_a-io-over.obj: sample-sources/io-over.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.obj `if test -f 'sample-sources/io-over.c'; then $(CYGPATH_W) 'sample-sources/io-over.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io-over.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_io_wrap_a-io-over.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo -c -o sample-sources/libhpcrun_io_wrap_a-io-over.obj `if test -f 'sample-sources/io-over.c'; then $(CYGPATH_W) 'sample-sources/io-over.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io-over.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Tpo sample-sources/$(DEPDIR)/libhpcrun_io_wrap_a-io-over.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io-over.c' object='sample-sources/libhpcrun_io_wrap_a-io-over.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_wrap_a-io-over.obj `if test -f 'sample-sources/io-over.c'; then $(CYGPATH_W) 'sample-sources/io-over.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io-over.c'; fi` sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o: sample-sources/memleak-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak-overrides.c' object='sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.o `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj: sample-sources/memleak-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj `if test -f 'sample-sources/memleak-overrides.c'; then $(CYGPATH_W) 'sample-sources/memleak-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj `if test -f 'sample-sources/memleak-overrides.c'; then $(CYGPATH_W) 'sample-sources/memleak-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_memleak_wrap_a-memleak-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak-overrides.c' object='sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_wrap_a-memleak-overrides.obj `if test -f 'sample-sources/memleak-overrides.c'; then $(CYGPATH_W) 'sample-sources/memleak-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak-overrides.c'; fi` sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o: sample-sources/pthread-blame-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame-overrides.c' object='sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.o `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj: sample-sources/pthread-blame-overrides.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj `if test -f 'sample-sources/pthread-blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj `if test -f 'sample-sources/pthread-blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame-overrides.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_pthread_wrap_a-pthread-blame-overrides.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame-overrides.c' object='sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_wrap_a_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_wrap_a-pthread-blame-overrides.obj `if test -f 'sample-sources/pthread-blame-overrides.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame-overrides.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame-overrides.c'; fi` monitor-exts/libhpcrun_wrap_a-openmp.o: monitor-exts/openmp.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.o `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -MT monitor-exts/libhpcrun_wrap_a-openmp.o -MD -MP -MF monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo -c -o monitor-exts/libhpcrun_wrap_a-openmp.o `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor-exts/openmp.c' object='monitor-exts/libhpcrun_wrap_a-openmp.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.o `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c monitor-exts/libhpcrun_wrap_a-openmp.obj: monitor-exts/openmp.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.obj `if test -f 'monitor-exts/openmp.c'; then $(CYGPATH_W) 'monitor-exts/openmp.c'; else $(CYGPATH_W) '$(srcdir)/monitor-exts/openmp.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -MT monitor-exts/libhpcrun_wrap_a-openmp.obj -MD -MP -MF monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo -c -o monitor-exts/libhpcrun_wrap_a-openmp.obj `if test -f 'monitor-exts/openmp.c'; then $(CYGPATH_W) 'monitor-exts/openmp.c'; else $(CYGPATH_W) '$(srcdir)/monitor-exts/openmp.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Tpo monitor-exts/$(DEPDIR)/libhpcrun_wrap_a-openmp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor-exts/openmp.c' object='monitor-exts/libhpcrun_wrap_a-openmp.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_wrap_a_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_wrap_a_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_wrap_a-openmp.obj `if test -f 'monitor-exts/openmp.c'; then $(CYGPATH_W) 'monitor-exts/openmp.c'; else $(CYGPATH_W) '$(srcdir)/monitor-exts/openmp.c'; fi` libhpctoolkit_a-hpctoolkit.o: hpctoolkit.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.o `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhpctoolkit_a-hpctoolkit.o -MD -MP -MF $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo -c -o libhpctoolkit_a-hpctoolkit.o `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpctoolkit.c' object='libhpctoolkit_a-hpctoolkit.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.o `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c libhpctoolkit_a-hpctoolkit.obj: hpctoolkit.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.obj `if test -f 'hpctoolkit.c'; then $(CYGPATH_W) 'hpctoolkit.c'; else $(CYGPATH_W) '$(srcdir)/hpctoolkit.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhpctoolkit_a-hpctoolkit.obj -MD -MP -MF $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo -c -o libhpctoolkit_a-hpctoolkit.obj `if test -f 'hpctoolkit.c'; then $(CYGPATH_W) 'hpctoolkit.c'; else $(CYGPATH_W) '$(srcdir)/hpctoolkit.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Tpo $(DEPDIR)/libhpctoolkit_a-hpctoolkit.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpctoolkit.c' object='libhpctoolkit_a-hpctoolkit.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_a_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_a-hpctoolkit.obj `if test -f 'hpctoolkit.c'; then $(CYGPATH_W) 'hpctoolkit.c'; else $(CYGPATH_W) '$(srcdir)/hpctoolkit.c'; fi` lush-agents/libagent_cilk_la-agent-cilk.lo: lush-agents/agent-cilk.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_cilk_la-agent-cilk.lo `test -f 'lush-agents/agent-cilk.c' || echo '$(srcdir)/'`lush-agents/agent-cilk.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -MT lush-agents/libagent_cilk_la-agent-cilk.lo -MD -MP -MF lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Tpo -c -o lush-agents/libagent_cilk_la-agent-cilk.lo `test -f 'lush-agents/agent-cilk.c' || echo '$(srcdir)/'`lush-agents/agent-cilk.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Tpo lush-agents/$(DEPDIR)/libagent_cilk_la-agent-cilk.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush-agents/agent-cilk.c' object='lush-agents/libagent_cilk_la-agent-cilk.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_cilk_la-agent-cilk.lo `test -f 'lush-agents/agent-cilk.c' || echo '$(srcdir)/'`lush-agents/agent-cilk.c lush/libagent_cilk_la-lush-support-rt.lo: lush/lush-support-rt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_cilk_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -MT lush/libagent_cilk_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Tpo -c -o lush/libagent_cilk_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Tpo lush/$(DEPDIR)/libagent_cilk_la-lush-support-rt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libagent_cilk_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_cilk_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_cilk_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush-agents/libagent_pthread_la-agent-pthread.lo: lush-agents/agent-pthread.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_pthread_la-agent-pthread.lo `test -f 'lush-agents/agent-pthread.c' || echo '$(srcdir)/'`lush-agents/agent-pthread.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -MT lush-agents/libagent_pthread_la-agent-pthread.lo -MD -MP -MF lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Tpo -c -o lush-agents/libagent_pthread_la-agent-pthread.lo `test -f 'lush-agents/agent-pthread.c' || echo '$(srcdir)/'`lush-agents/agent-pthread.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Tpo lush-agents/$(DEPDIR)/libagent_pthread_la-agent-pthread.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush-agents/agent-pthread.c' object='lush-agents/libagent_pthread_la-agent-pthread.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_pthread_la-agent-pthread.lo `test -f 'lush-agents/agent-pthread.c' || echo '$(srcdir)/'`lush-agents/agent-pthread.c lush/libagent_pthread_la-lush-support-rt.lo: lush/lush-support-rt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_pthread_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -MT lush/libagent_pthread_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Tpo -c -o lush/libagent_pthread_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Tpo lush/$(DEPDIR)/libagent_pthread_la-lush-support-rt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libagent_pthread_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_pthread_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_pthread_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush-agents/libagent_tbb_la-agent-tbb.lo: lush-agents/agent-tbb.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_tbb_la-agent-tbb.lo `test -f 'lush-agents/agent-tbb.c' || echo '$(srcdir)/'`lush-agents/agent-tbb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -MT lush-agents/libagent_tbb_la-agent-tbb.lo -MD -MP -MF lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Tpo -c -o lush-agents/libagent_tbb_la-agent-tbb.lo `test -f 'lush-agents/agent-tbb.c' || echo '$(srcdir)/'`lush-agents/agent-tbb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Tpo lush-agents/$(DEPDIR)/libagent_tbb_la-agent-tbb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush-agents/agent-tbb.c' object='lush-agents/libagent_tbb_la-agent-tbb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush-agents/libagent_tbb_la-agent-tbb.lo `test -f 'lush-agents/agent-tbb.c' || echo '$(srcdir)/'`lush-agents/agent-tbb.c lush/libagent_tbb_la-lush-support-rt.lo: lush/lush-support-rt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_tbb_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -MT lush/libagent_tbb_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Tpo -c -o lush/libagent_tbb_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Tpo lush/$(DEPDIR)/libagent_tbb_la-lush-support-rt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libagent_tbb_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libagent_tbb_la_CFLAGS) $(CFLAGS) -c -o lush/libagent_tbb_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c utilities/libhpcrun_la-first_func.lo: utilities/first_func.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-first_func.lo `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-first_func.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-first_func.Tpo -c -o utilities/libhpcrun_la-first_func.lo `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-first_func.Tpo utilities/$(DEPDIR)/libhpcrun_la-first_func.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/first_func.c' object='utilities/libhpcrun_la-first_func.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-first_func.lo `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c libhpcrun_la-main.lo: main.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-main.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-main.Tpo -c -o libhpcrun_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-main.Tpo $(DEPDIR)/libhpcrun_la-main.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libhpcrun_la-main.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-main.lo `test -f 'main.c' || echo '$(srcdir)/'`main.c libhpcrun_la-disabled.lo: disabled.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-disabled.lo `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-disabled.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-disabled.Tpo -c -o libhpcrun_la-disabled.lo `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-disabled.Tpo $(DEPDIR)/libhpcrun_la-disabled.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='disabled.c' object='libhpcrun_la-disabled.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-disabled.lo `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c libhpcrun_la-cct_insert_backtrace.lo: cct_insert_backtrace.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_insert_backtrace.lo `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-cct_insert_backtrace.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Tpo -c -o libhpcrun_la-cct_insert_backtrace.lo `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Tpo $(DEPDIR)/libhpcrun_la-cct_insert_backtrace.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_insert_backtrace.c' object='libhpcrun_la-cct_insert_backtrace.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_insert_backtrace.lo `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c libhpcrun_la-cct_backtrace_finalize.lo: cct_backtrace_finalize.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_backtrace_finalize.lo `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-cct_backtrace_finalize.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Tpo -c -o libhpcrun_la-cct_backtrace_finalize.lo `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Tpo $(DEPDIR)/libhpcrun_la-cct_backtrace_finalize.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_backtrace_finalize.c' object='libhpcrun_la-cct_backtrace_finalize.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct_backtrace_finalize.lo `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c libhpcrun_la-env.lo: env.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-env.lo `test -f 'env.c' || echo '$(srcdir)/'`env.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-env.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-env.Tpo -c -o libhpcrun_la-env.lo `test -f 'env.c' || echo '$(srcdir)/'`env.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-env.Tpo $(DEPDIR)/libhpcrun_la-env.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='env.c' object='libhpcrun_la-env.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-env.lo `test -f 'env.c' || echo '$(srcdir)/'`env.c libhpcrun_la-epoch.lo: epoch.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-epoch.lo `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-epoch.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-epoch.Tpo -c -o libhpcrun_la-epoch.lo `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-epoch.Tpo $(DEPDIR)/libhpcrun_la-epoch.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='epoch.c' object='libhpcrun_la-epoch.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-epoch.lo `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c libhpcrun_la-files.lo: files.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-files.lo `test -f 'files.c' || echo '$(srcdir)/'`files.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-files.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-files.Tpo -c -o libhpcrun_la-files.lo `test -f 'files.c' || echo '$(srcdir)/'`files.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-files.Tpo $(DEPDIR)/libhpcrun_la-files.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='files.c' object='libhpcrun_la-files.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-files.lo `test -f 'files.c' || echo '$(srcdir)/'`files.c libhpcrun_la-handling_sample.lo: handling_sample.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-handling_sample.lo `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-handling_sample.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-handling_sample.Tpo -c -o libhpcrun_la-handling_sample.lo `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-handling_sample.Tpo $(DEPDIR)/libhpcrun_la-handling_sample.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='handling_sample.c' object='libhpcrun_la-handling_sample.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-handling_sample.lo `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c libhpcrun_la-hpcrun_options.lo: hpcrun_options.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_options.lo `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-hpcrun_options.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-hpcrun_options.Tpo -c -o libhpcrun_la-hpcrun_options.lo `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-hpcrun_options.Tpo $(DEPDIR)/libhpcrun_la-hpcrun_options.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_options.c' object='libhpcrun_la-hpcrun_options.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_options.lo `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c libhpcrun_la-hpcrun_stats.lo: hpcrun_stats.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_stats.lo `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-hpcrun_stats.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-hpcrun_stats.Tpo -c -o libhpcrun_la-hpcrun_stats.lo `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-hpcrun_stats.Tpo $(DEPDIR)/libhpcrun_la-hpcrun_stats.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_stats.c' object='libhpcrun_la-hpcrun_stats.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_stats.lo `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c libhpcrun_la-loadmap.lo: loadmap.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-loadmap.lo `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-loadmap.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-loadmap.Tpo -c -o libhpcrun_la-loadmap.lo `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-loadmap.Tpo $(DEPDIR)/libhpcrun_la-loadmap.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='loadmap.c' object='libhpcrun_la-loadmap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-loadmap.lo `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c libhpcrun_la-metrics.lo: metrics.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-metrics.lo `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-metrics.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-metrics.Tpo -c -o libhpcrun_la-metrics.lo `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-metrics.Tpo $(DEPDIR)/libhpcrun_la-metrics.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='metrics.c' object='libhpcrun_la-metrics.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-metrics.lo `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c libhpcrun_la-name.lo: name.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-name.lo `test -f 'name.c' || echo '$(srcdir)/'`name.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-name.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-name.Tpo -c -o libhpcrun_la-name.lo `test -f 'name.c' || echo '$(srcdir)/'`name.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-name.Tpo $(DEPDIR)/libhpcrun_la-name.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='name.c' object='libhpcrun_la-name.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-name.lo `test -f 'name.c' || echo '$(srcdir)/'`name.c libhpcrun_la-rank.lo: rank.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-rank.lo `test -f 'rank.c' || echo '$(srcdir)/'`rank.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-rank.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-rank.Tpo -c -o libhpcrun_la-rank.lo `test -f 'rank.c' || echo '$(srcdir)/'`rank.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-rank.Tpo $(DEPDIR)/libhpcrun_la-rank.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rank.c' object='libhpcrun_la-rank.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-rank.lo `test -f 'rank.c' || echo '$(srcdir)/'`rank.c libhpcrun_la-sample_event.lo: sample_event.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_event.lo `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_event.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_event.Tpo -c -o libhpcrun_la-sample_event.lo `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_event.Tpo $(DEPDIR)/libhpcrun_la-sample_event.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_event.c' object='libhpcrun_la-sample_event.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_event.lo `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c libhpcrun_la-sample_prob.lo: sample_prob.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_prob.lo `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_prob.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_prob.Tpo -c -o libhpcrun_la-sample_prob.lo `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_prob.Tpo $(DEPDIR)/libhpcrun_la-sample_prob.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_prob.c' object='libhpcrun_la-sample_prob.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_prob.lo `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c libhpcrun_la-sample_sources_all.lo: sample_sources_all.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_all.lo `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_sources_all.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_sources_all.Tpo -c -o libhpcrun_la-sample_sources_all.lo `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_sources_all.Tpo $(DEPDIR)/libhpcrun_la-sample_sources_all.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_all.c' object='libhpcrun_la-sample_sources_all.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_all.lo `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c sample-sources/blame-shift/libhpcrun_la-blame-shift.lo: sample-sources/blame-shift/blame-shift.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-shift.lo `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_la-blame-shift.lo -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Tpo -c -o sample-sources/blame-shift/libhpcrun_la-blame-shift.lo `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-shift.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-shift.c' object='sample-sources/blame-shift/libhpcrun_la-blame-shift.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-shift.lo `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c sample-sources/blame-shift/libhpcrun_la-blame-map.lo: sample-sources/blame-shift/blame-map.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-map.lo `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_la-blame-map.lo -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Tpo -c -o sample-sources/blame-shift/libhpcrun_la-blame-map.lo `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_la-blame-map.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-map.c' object='sample-sources/blame-shift/libhpcrun_la-blame-map.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_la-blame-map.lo `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c sample-sources/libhpcrun_la-common.lo: sample-sources/common.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-common.lo `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-common.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-common.Tpo -c -o sample-sources/libhpcrun_la-common.lo `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-common.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-common.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/common.c' object='sample-sources/libhpcrun_la-common.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-common.lo `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c sample-sources/libhpcrun_la-ga.lo: sample-sources/ga.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-ga.lo `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-ga.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-ga.Tpo -c -o sample-sources/libhpcrun_la-ga.lo `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-ga.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-ga.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga.c' object='sample-sources/libhpcrun_la-ga.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-ga.lo `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c sample-sources/libhpcrun_la-io.lo: sample-sources/io.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-io.lo `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-io.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-io.Tpo -c -o sample-sources/libhpcrun_la-io.lo `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-io.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-io.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io.c' object='sample-sources/libhpcrun_la-io.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-io.lo `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c sample-sources/libhpcrun_la-itimer.lo: sample-sources/itimer.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-itimer.lo `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-itimer.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Tpo -c -o sample-sources/libhpcrun_la-itimer.lo `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-itimer.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/itimer.c' object='sample-sources/libhpcrun_la-itimer.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-itimer.lo `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c sample-sources/libhpcrun_la-idle.lo: sample-sources/idle.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-idle.lo `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-idle.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-idle.Tpo -c -o sample-sources/libhpcrun_la-idle.lo `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-idle.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-idle.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/idle.c' object='sample-sources/libhpcrun_la-idle.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-idle.lo `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c sample-sources/libhpcrun_la-memleak.lo: sample-sources/memleak.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-memleak.lo `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-memleak.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Tpo -c -o sample-sources/libhpcrun_la-memleak.lo `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-memleak.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak.c' object='sample-sources/libhpcrun_la-memleak.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-memleak.lo `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c sample-sources/libhpcrun_la-pthread-blame.lo: sample-sources/pthread-blame.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-pthread-blame.lo `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-pthread-blame.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Tpo -c -o sample-sources/libhpcrun_la-pthread-blame.lo `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-pthread-blame.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame.c' object='sample-sources/libhpcrun_la-pthread-blame.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-pthread-blame.lo `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c sample-sources/libhpcrun_la-none.lo: sample-sources/none.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-none.lo `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-none.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-none.Tpo -c -o sample-sources/libhpcrun_la-none.lo `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-none.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-none.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/none.c' object='sample-sources/libhpcrun_la-none.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-none.lo `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c sample-sources/libhpcrun_la-retcnt.lo: sample-sources/retcnt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-retcnt.lo `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-retcnt.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Tpo -c -o sample-sources/libhpcrun_la-retcnt.lo `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-retcnt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/retcnt.c' object='sample-sources/libhpcrun_la-retcnt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-retcnt.lo `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c sample-sources/libhpcrun_la-sync.lo: sample-sources/sync.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-sync.lo `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-sync.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-sync.Tpo -c -o sample-sources/libhpcrun_la-sync.lo `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-sync.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-sync.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/sync.c' object='sample-sources/libhpcrun_la-sync.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-sync.lo `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c libhpcrun_la-sample_sources_registered.lo: sample_sources_registered.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_registered.lo `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-sample_sources_registered.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-sample_sources_registered.Tpo -c -o libhpcrun_la-sample_sources_registered.lo `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-sample_sources_registered.Tpo $(DEPDIR)/libhpcrun_la-sample_sources_registered.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_registered.c' object='libhpcrun_la-sample_sources_registered.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-sample_sources_registered.lo `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c libhpcrun_la-segv_handler.lo: segv_handler.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-segv_handler.lo `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-segv_handler.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-segv_handler.Tpo -c -o libhpcrun_la-segv_handler.lo `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-segv_handler.Tpo $(DEPDIR)/libhpcrun_la-segv_handler.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='segv_handler.c' object='libhpcrun_la-segv_handler.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-segv_handler.lo `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c libhpcrun_la-start-stop.lo: start-stop.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-start-stop.lo `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-start-stop.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-start-stop.Tpo -c -o libhpcrun_la-start-stop.lo `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-start-stop.Tpo $(DEPDIR)/libhpcrun_la-start-stop.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='start-stop.c' object='libhpcrun_la-start-stop.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-start-stop.lo `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c libhpcrun_la-term_handler.lo: term_handler.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-term_handler.lo `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-term_handler.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-term_handler.Tpo -c -o libhpcrun_la-term_handler.lo `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-term_handler.Tpo $(DEPDIR)/libhpcrun_la-term_handler.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='term_handler.c' object='libhpcrun_la-term_handler.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-term_handler.lo `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c libhpcrun_la-thread_data.lo: thread_data.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_data.lo `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-thread_data.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-thread_data.Tpo -c -o libhpcrun_la-thread_data.lo `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-thread_data.Tpo $(DEPDIR)/libhpcrun_la-thread_data.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_data.c' object='libhpcrun_la-thread_data.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_data.lo `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c libhpcrun_la-thread_use.lo: thread_use.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_use.lo `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-thread_use.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-thread_use.Tpo -c -o libhpcrun_la-thread_use.lo `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-thread_use.Tpo $(DEPDIR)/libhpcrun_la-thread_use.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_use.c' object='libhpcrun_la-thread_use.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-thread_use.lo `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c libhpcrun_la-threadmgr.lo: threadmgr.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-threadmgr.lo `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-threadmgr.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-threadmgr.Tpo -c -o libhpcrun_la-threadmgr.lo `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-threadmgr.Tpo $(DEPDIR)/libhpcrun_la-threadmgr.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='threadmgr.c' object='libhpcrun_la-threadmgr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-threadmgr.lo `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c libhpcrun_la-trace.lo: trace.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-trace.lo `test -f 'trace.c' || echo '$(srcdir)/'`trace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-trace.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-trace.Tpo -c -o libhpcrun_la-trace.lo `test -f 'trace.c' || echo '$(srcdir)/'`trace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-trace.Tpo $(DEPDIR)/libhpcrun_la-trace.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trace.c' object='libhpcrun_la-trace.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-trace.lo `test -f 'trace.c' || echo '$(srcdir)/'`trace.c libhpcrun_la-weak.lo: weak.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-weak.lo `test -f 'weak.c' || echo '$(srcdir)/'`weak.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-weak.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-weak.Tpo -c -o libhpcrun_la-weak.lo `test -f 'weak.c' || echo '$(srcdir)/'`weak.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-weak.Tpo $(DEPDIR)/libhpcrun_la-weak.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weak.c' object='libhpcrun_la-weak.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-weak.lo `test -f 'weak.c' || echo '$(srcdir)/'`weak.c libhpcrun_la-write_data.lo: write_data.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-write_data.lo `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-write_data.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-write_data.Tpo -c -o libhpcrun_la-write_data.lo `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-write_data.Tpo $(DEPDIR)/libhpcrun_la-write_data.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='write_data.c' object='libhpcrun_la-write_data.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-write_data.lo `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c cct/libhpcrun_la-cct_bundle.lo: cct/cct_bundle.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_bundle.lo `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_la-cct_bundle.lo -MD -MP -MF cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Tpo -c -o cct/libhpcrun_la-cct_bundle.lo `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Tpo cct/$(DEPDIR)/libhpcrun_la-cct_bundle.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_bundle.c' object='cct/libhpcrun_la-cct_bundle.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_bundle.lo `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c cct/libhpcrun_la-cct_ctxt.lo: cct/cct_ctxt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_ctxt.lo `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_la-cct_ctxt.lo -MD -MP -MF cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Tpo -c -o cct/libhpcrun_la-cct_ctxt.lo `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Tpo cct/$(DEPDIR)/libhpcrun_la-cct_ctxt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_ctxt.c' object='cct/libhpcrun_la-cct_ctxt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct_ctxt.lo `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c cct/libhpcrun_la-cct.lo: cct/cct.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct.lo `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_la-cct.lo -MD -MP -MF cct/$(DEPDIR)/libhpcrun_la-cct.Tpo -c -o cct/libhpcrun_la-cct.lo `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_la-cct.Tpo cct/$(DEPDIR)/libhpcrun_la-cct.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct.c' object='cct/libhpcrun_la-cct.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_la-cct.lo `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c libhpcrun_la-cct2metrics.lo: cct2metrics.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct2metrics.lo `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-cct2metrics.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-cct2metrics.Tpo -c -o libhpcrun_la-cct2metrics.lo `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-cct2metrics.Tpo $(DEPDIR)/libhpcrun_la-cct2metrics.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct2metrics.c' object='libhpcrun_la-cct2metrics.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-cct2metrics.lo `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c trampoline/common/libhpcrun_la-trampoline.lo: trampoline/common/trampoline.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_la-trampoline.lo `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT trampoline/common/libhpcrun_la-trampoline.lo -MD -MP -MF trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Tpo -c -o trampoline/common/libhpcrun_la-trampoline.lo `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Tpo trampoline/common/$(DEPDIR)/libhpcrun_la-trampoline.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/common/trampoline.c' object='trampoline/common/libhpcrun_la-trampoline.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_la-trampoline.lo `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c lush/libhpcrun_la-lush-backtrace.lo: lush/lush-backtrace.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-backtrace.lo `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush-backtrace.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Tpo -c -o lush/libhpcrun_la-lush-backtrace.lo `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Tpo lush/$(DEPDIR)/libhpcrun_la-lush-backtrace.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-backtrace.c' object='lush/libhpcrun_la-lush-backtrace.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-backtrace.lo `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c lush/libhpcrun_la-lush.lo: lush/lush.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush.lo `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush.Tpo -c -o lush/libhpcrun_la-lush.lo `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush.Tpo lush/$(DEPDIR)/libhpcrun_la-lush.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush.c' object='lush/libhpcrun_la-lush.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush.lo `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c lush/libhpcrun_la-lush-pthread.lo: lush/lush-pthread.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-pthread.lo `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush-pthread.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Tpo -c -o lush/libhpcrun_la-lush-pthread.lo `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Tpo lush/$(DEPDIR)/libhpcrun_la-lush-pthread.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-pthread.c' object='lush/libhpcrun_la-lush-pthread.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-pthread.lo `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c lush/libhpcrun_la-lush-support-rt.lo: lush/lush-support-rt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lush-support-rt.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Tpo -c -o lush/libhpcrun_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Tpo lush/$(DEPDIR)/libhpcrun_la-lush-support-rt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libhpcrun_la-lush-support-rt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lush-support-rt.lo `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush/libhpcrun_la-lushi-cb.lo: lush/lushi-cb.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lushi-cb.lo `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_la-lushi-cb.lo -MD -MP -MF lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Tpo -c -o lush/libhpcrun_la-lushi-cb.lo `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Tpo lush/$(DEPDIR)/libhpcrun_la-lushi-cb.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lushi-cb.c' object='lush/libhpcrun_la-lushi-cb.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_la-lushi-cb.lo `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c fnbounds/libhpcrun_la-fnbounds_common.lo: fnbounds/fnbounds_common.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_common.lo `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_la-fnbounds_common.lo -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Tpo -c -o fnbounds/libhpcrun_la-fnbounds_common.lo `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Tpo fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_common.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_common.c' object='fnbounds/libhpcrun_la-fnbounds_common.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_common.lo `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c memory/libhpcrun_la-mem.lo: memory/mem.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mem.lo `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_la-mem.lo -MD -MP -MF memory/$(DEPDIR)/libhpcrun_la-mem.Tpo -c -o memory/libhpcrun_la-mem.lo `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_la-mem.Tpo memory/$(DEPDIR)/libhpcrun_la-mem.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mem.c' object='memory/libhpcrun_la-mem.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mem.lo `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c memory/libhpcrun_la-mmap.lo: memory/mmap.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mmap.lo `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_la-mmap.lo -MD -MP -MF memory/$(DEPDIR)/libhpcrun_la-mmap.Tpo -c -o memory/libhpcrun_la-mmap.lo `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_la-mmap.Tpo memory/$(DEPDIR)/libhpcrun_la-mmap.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mmap.c' object='memory/libhpcrun_la-mmap.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_la-mmap.lo `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c messages/libhpcrun_la-debug-flag.lo: messages/debug-flag.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-debug-flag.lo `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-debug-flag.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-debug-flag.Tpo -c -o messages/libhpcrun_la-debug-flag.lo `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-debug-flag.Tpo messages/$(DEPDIR)/libhpcrun_la-debug-flag.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/debug-flag.c' object='messages/libhpcrun_la-debug-flag.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-debug-flag.lo `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c messages/libhpcrun_la-messages-sync.lo: messages/messages-sync.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-sync.lo `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-messages-sync.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-messages-sync.Tpo -c -o messages/libhpcrun_la-messages-sync.lo `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-messages-sync.Tpo messages/$(DEPDIR)/libhpcrun_la-messages-sync.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-sync.c' object='messages/libhpcrun_la-messages-sync.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-sync.lo `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c messages/libhpcrun_la-messages-async.lo: messages/messages-async.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-async.lo `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-messages-async.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-messages-async.Tpo -c -o messages/libhpcrun_la-messages-async.lo `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-messages-async.Tpo messages/$(DEPDIR)/libhpcrun_la-messages-async.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-async.c' object='messages/libhpcrun_la-messages-async.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-messages-async.lo `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c messages/libhpcrun_la-fmt.lo: messages/fmt.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-fmt.lo `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_la-fmt.lo -MD -MP -MF messages/$(DEPDIR)/libhpcrun_la-fmt.Tpo -c -o messages/libhpcrun_la-fmt.lo `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_la-fmt.Tpo messages/$(DEPDIR)/libhpcrun_la-fmt.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/fmt.c' object='messages/libhpcrun_la-fmt.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_la-fmt.lo `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c utilities/libhpcrun_la-executable-path.lo: utilities/executable-path.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-executable-path.lo `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-executable-path.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-executable-path.Tpo -c -o utilities/libhpcrun_la-executable-path.lo `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-executable-path.Tpo utilities/$(DEPDIR)/libhpcrun_la-executable-path.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/executable-path.c' object='utilities/libhpcrun_la-executable-path.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-executable-path.lo `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c utilities/libhpcrun_la-ip-normalized.lo: utilities/ip-normalized.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-ip-normalized.lo `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-ip-normalized.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Tpo -c -o utilities/libhpcrun_la-ip-normalized.lo `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Tpo utilities/$(DEPDIR)/libhpcrun_la-ip-normalized.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/ip-normalized.c' object='utilities/libhpcrun_la-ip-normalized.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-ip-normalized.lo `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c utilities/libhpcrun_la-tokenize.lo: utilities/tokenize.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-tokenize.lo `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-tokenize.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-tokenize.Tpo -c -o utilities/libhpcrun_la-tokenize.lo `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-tokenize.Tpo utilities/$(DEPDIR)/libhpcrun_la-tokenize.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/tokenize.c' object='utilities/libhpcrun_la-tokenize.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-tokenize.lo `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c utilities/libhpcrun_la-unlink.lo: utilities/unlink.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-unlink.lo `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-unlink.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-unlink.Tpo -c -o utilities/libhpcrun_la-unlink.lo `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-unlink.Tpo utilities/$(DEPDIR)/libhpcrun_la-unlink.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/unlink.c' object='utilities/libhpcrun_la-unlink.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-unlink.lo `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c fnbounds/libhpcrun_la-fnbounds_client.lo: fnbounds/fnbounds_client.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_client.lo `test -f 'fnbounds/fnbounds_client.c' || echo '$(srcdir)/'`fnbounds/fnbounds_client.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_la-fnbounds_client.lo -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Tpo -c -o fnbounds/libhpcrun_la-fnbounds_client.lo `test -f 'fnbounds/fnbounds_client.c' || echo '$(srcdir)/'`fnbounds/fnbounds_client.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Tpo fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_client.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_client.c' object='fnbounds/libhpcrun_la-fnbounds_client.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_client.lo `test -f 'fnbounds/fnbounds_client.c' || echo '$(srcdir)/'`fnbounds/fnbounds_client.c fnbounds/libhpcrun_la-fnbounds_dynamic.lo: fnbounds/fnbounds_dynamic.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_dynamic.lo `test -f 'fnbounds/fnbounds_dynamic.c' || echo '$(srcdir)/'`fnbounds/fnbounds_dynamic.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_la-fnbounds_dynamic.lo -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Tpo -c -o fnbounds/libhpcrun_la-fnbounds_dynamic.lo `test -f 'fnbounds/fnbounds_dynamic.c' || echo '$(srcdir)/'`fnbounds/fnbounds_dynamic.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Tpo fnbounds/$(DEPDIR)/libhpcrun_la-fnbounds_dynamic.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_dynamic.c' object='fnbounds/libhpcrun_la-fnbounds_dynamic.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_la-fnbounds_dynamic.lo `test -f 'fnbounds/fnbounds_dynamic.c' || echo '$(srcdir)/'`fnbounds/fnbounds_dynamic.c monitor-exts/libhpcrun_la-openmp.lo: monitor-exts/openmp.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_la-openmp.lo `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT monitor-exts/libhpcrun_la-openmp.lo -MD -MP -MF monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Tpo -c -o monitor-exts/libhpcrun_la-openmp.lo `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Tpo monitor-exts/$(DEPDIR)/libhpcrun_la-openmp.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='monitor-exts/openmp.c' object='monitor-exts/libhpcrun_la-openmp.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o monitor-exts/libhpcrun_la-openmp.lo `test -f 'monitor-exts/openmp.c' || echo '$(srcdir)/'`monitor-exts/openmp.c libhpcrun_la-hpcrun_dlfns.lo: hpcrun_dlfns.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_dlfns.lo `test -f 'hpcrun_dlfns.c' || echo '$(srcdir)/'`hpcrun_dlfns.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-hpcrun_dlfns.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Tpo -c -o libhpcrun_la-hpcrun_dlfns.lo `test -f 'hpcrun_dlfns.c' || echo '$(srcdir)/'`hpcrun_dlfns.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Tpo $(DEPDIR)/libhpcrun_la-hpcrun_dlfns.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_dlfns.c' object='libhpcrun_la-hpcrun_dlfns.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-hpcrun_dlfns.lo `test -f 'hpcrun_dlfns.c' || echo '$(srcdir)/'`hpcrun_dlfns.c libhpcrun_la-custom-init-dynamic.lo: custom-init-dynamic.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-custom-init-dynamic.lo `test -f 'custom-init-dynamic.c' || echo '$(srcdir)/'`custom-init-dynamic.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-custom-init-dynamic.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-custom-init-dynamic.Tpo -c -o libhpcrun_la-custom-init-dynamic.lo `test -f 'custom-init-dynamic.c' || echo '$(srcdir)/'`custom-init-dynamic.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-custom-init-dynamic.Tpo $(DEPDIR)/libhpcrun_la-custom-init-dynamic.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='custom-init-dynamic.c' object='libhpcrun_la-custom-init-dynamic.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-custom-init-dynamic.lo `test -f 'custom-init-dynamic.c' || echo '$(srcdir)/'`custom-init-dynamic.c os/linux/libhpcrun_la-dylib.lo: os/linux/dylib.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o os/linux/libhpcrun_la-dylib.lo `test -f 'os/linux/dylib.c' || echo '$(srcdir)/'`os/linux/dylib.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT os/linux/libhpcrun_la-dylib.lo -MD -MP -MF os/linux/$(DEPDIR)/libhpcrun_la-dylib.Tpo -c -o os/linux/libhpcrun_la-dylib.lo `test -f 'os/linux/dylib.c' || echo '$(srcdir)/'`os/linux/dylib.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) os/linux/$(DEPDIR)/libhpcrun_la-dylib.Tpo os/linux/$(DEPDIR)/libhpcrun_la-dylib.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='os/linux/dylib.c' object='os/linux/libhpcrun_la-dylib.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o os/linux/libhpcrun_la-dylib.lo `test -f 'os/linux/dylib.c' || echo '$(srcdir)/'`os/linux/dylib.c unwind/common/libhpcrun_la-default_validation_summary.lo: unwind/common/default_validation_summary.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-default_validation_summary.lo `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-default_validation_summary.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Tpo -c -o unwind/common/libhpcrun_la-default_validation_summary.lo `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-default_validation_summary.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/default_validation_summary.c' object='unwind/common/libhpcrun_la-default_validation_summary.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-default_validation_summary.lo `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo: utilities/arch/ppc64/ppc64-context-pc.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo -MD -MP -MF utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Tpo -c -o utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Tpo utilities/arch/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-context-pc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ppc64/ppc64-context-pc.c' object='utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_la-ppc64-context-pc.lo `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo: utilities/arch/x86-family/x86-context-pc.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo -MD -MP -MF utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Tpo -c -o utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Tpo utilities/arch/x86-family/$(DEPDIR)/libhpcrun_la-x86-context-pc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/x86-family/x86-context-pc.c' object='utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_la-x86-context-pc.lo `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo: utilities/arch/ia64/ia64-context-pc.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo -MD -MP -MF utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Tpo -c -o utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Tpo utilities/arch/ia64/$(DEPDIR)/libhpcrun_la-ia64-context-pc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ia64/ia64-context-pc.c' object='utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_la-ia64-context-pc.lo `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo: trampoline/aarch64/aarch64-tramp.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo -MD -MP -MF trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Tpo -c -o trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Tpo trampoline/aarch64/$(DEPDIR)/libhpcrun_la-aarch64-tramp.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/aarch64/aarch64-tramp.c' object='trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_la-aarch64-tramp.lo `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo: utilities/arch/libunwind/libunwind-context-pc.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo -MD -MP -MF utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Tpo -c -o utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Tpo utilities/arch/libunwind/$(DEPDIR)/libhpcrun_la-libunwind-context-pc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/libunwind/libunwind-context-pc.c' object='utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_la-libunwind-context-pc.lo `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c sample-sources/libhpcrun_la-papi.lo: sample-sources/papi.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi.lo `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi.Tpo -c -o sample-sources/libhpcrun_la-papi.lo `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi.c' object='sample-sources/libhpcrun_la-papi.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi.lo `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c sample-sources/libhpcrun_la-papi-c-cupti.lo: sample-sources/papi-c-cupti.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-cupti.lo `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi-c-cupti.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Tpo -c -o sample-sources/libhpcrun_la-papi-c-cupti.lo `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-cupti.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-cupti.c' object='sample-sources/libhpcrun_la-papi-c-cupti.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-cupti.lo `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c sample-sources/libhpcrun_la-papi-c.lo: sample-sources/papi-c.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c.lo `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi-c.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Tpo -c -o sample-sources/libhpcrun_la-papi-c.lo `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi-c.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c.c' object='sample-sources/libhpcrun_la-papi-c.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c.lo `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c sample-sources/libhpcrun_la-papi-c-extended-info.lo: sample-sources/papi-c-extended-info.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-extended-info.lo `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-papi-c-extended-info.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Tpo -c -o sample-sources/libhpcrun_la-papi-c-extended-info.lo `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-papi-c-extended-info.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-extended-info.c' object='sample-sources/libhpcrun_la-papi-c-extended-info.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-papi-c-extended-info.lo `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c sample-sources/libhpcrun_la-upc.lo: sample-sources/upc.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-upc.lo `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-upc.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-upc.Tpo -c -o sample-sources/libhpcrun_la-upc.lo `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-upc.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-upc.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/upc.c' object='sample-sources/libhpcrun_la-upc.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-upc.lo `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c sample-sources/libhpcrun_la-gpu_blame.lo: sample-sources/gpu_blame.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_blame.lo `test -f 'sample-sources/gpu_blame.c' || echo '$(srcdir)/'`sample-sources/gpu_blame.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-gpu_blame.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Tpo -c -o sample-sources/libhpcrun_la-gpu_blame.lo `test -f 'sample-sources/gpu_blame.c' || echo '$(srcdir)/'`sample-sources/gpu_blame.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-gpu_blame.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame.c' object='sample-sources/libhpcrun_la-gpu_blame.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_blame.lo `test -f 'sample-sources/gpu_blame.c' || echo '$(srcdir)/'`sample-sources/gpu_blame.c sample-sources/libhpcrun_la-gpu_ctxt_actions.lo: sample-sources/gpu_ctxt_actions.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_ctxt_actions.lo `test -f 'sample-sources/gpu_ctxt_actions.c' || echo '$(srcdir)/'`sample-sources/gpu_ctxt_actions.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_la-gpu_ctxt_actions.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Tpo -c -o sample-sources/libhpcrun_la-gpu_ctxt_actions.lo `test -f 'sample-sources/gpu_ctxt_actions.c' || echo '$(srcdir)/'`sample-sources/gpu_ctxt_actions.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Tpo sample-sources/$(DEPDIR)/libhpcrun_la-gpu_ctxt_actions.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_ctxt_actions.c' object='sample-sources/libhpcrun_la-gpu_ctxt_actions.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_la-gpu_ctxt_actions.lo `test -f 'sample-sources/gpu_ctxt_actions.c' || echo '$(srcdir)/'`sample-sources/gpu_ctxt_actions.c libhpcrun_la-gpu_blame-cuda-driver-table.lo: gpu_blame-cuda-driver-table.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-driver-table.lo `test -f 'gpu_blame-cuda-driver-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-driver-table.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-gpu_blame-cuda-driver-table.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Tpo -c -o libhpcrun_la-gpu_blame-cuda-driver-table.lo `test -f 'gpu_blame-cuda-driver-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-driver-table.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Tpo $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-driver-table.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-cuda-driver-table.c' object='libhpcrun_la-gpu_blame-cuda-driver-table.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-driver-table.lo `test -f 'gpu_blame-cuda-driver-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-driver-table.c libhpcrun_la-gpu_blame-cuda-runtime-table.lo: gpu_blame-cuda-runtime-table.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-runtime-table.lo `test -f 'gpu_blame-cuda-runtime-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-runtime-table.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT libhpcrun_la-gpu_blame-cuda-runtime-table.lo -MD -MP -MF $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Tpo -c -o libhpcrun_la-gpu_blame-cuda-runtime-table.lo `test -f 'gpu_blame-cuda-runtime-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-runtime-table.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Tpo $(DEPDIR)/libhpcrun_la-gpu_blame-cuda-runtime-table.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-cuda-runtime-table.c' object='libhpcrun_la-gpu_blame-cuda-runtime-table.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_la-gpu_blame-cuda-runtime-table.lo `test -f 'gpu_blame-cuda-runtime-table.c' || echo '$(srcdir)/'`gpu_blame-cuda-runtime-table.c unwind/common/libhpcrun_la-backtrace.lo: unwind/common/backtrace.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-backtrace.lo `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-backtrace.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Tpo -c -o unwind/common/libhpcrun_la-backtrace.lo `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-backtrace.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/backtrace.c' object='unwind/common/libhpcrun_la-backtrace.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-backtrace.lo `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c unwind/common/libhpcrun_la-unw-throw.lo: unwind/common/unw-throw.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-unw-throw.lo `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-unw-throw.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Tpo -c -o unwind/common/libhpcrun_la-unw-throw.lo `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-unw-throw.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/unw-throw.c' object='unwind/common/libhpcrun_la-unw-throw.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-unw-throw.lo `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c unwind/common/libhpcrun_la-binarytree_uwi.lo: unwind/common/binarytree_uwi.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-binarytree_uwi.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Tpo -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-binarytree_uwi.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/binarytree_uwi.c' object='unwind/common/libhpcrun_la-binarytree_uwi.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-binarytree_uwi.lo `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c unwind/common/libhpcrun_la-interval_t.lo: unwind/common/interval_t.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-interval_t.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Tpo -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-interval_t.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/interval_t.c' object='unwind/common/libhpcrun_la-interval_t.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-interval_t.lo `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c unwind/common/libhpcrun_la-stack_troll.lo: unwind/common/stack_troll.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-stack_troll.lo `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-stack_troll.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Tpo -c -o unwind/common/libhpcrun_la-stack_troll.lo `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-stack_troll.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/stack_troll.c' object='unwind/common/libhpcrun_la-stack_troll.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-stack_troll.lo `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c unwind/common/libhpcrun_la-uw_recipe_map.lo: unwind/common/uw_recipe_map.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-uw_recipe_map.lo `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_la-uw_recipe_map.lo -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Tpo -c -o unwind/common/libhpcrun_la-uw_recipe_map.lo `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Tpo unwind/common/$(DEPDIR)/libhpcrun_la-uw_recipe_map.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/uw_recipe_map.c' object='unwind/common/libhpcrun_la-uw_recipe_map.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_la-uw_recipe_map.lo `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo: unwind/generic-libunwind/libunw-unwind.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo -MD -MP -MF unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Tpo -c -o unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Tpo unwind/generic-libunwind/$(DEPDIR)/libhpcrun_la-libunw-unwind.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/generic-libunwind/libunw-unwind.c' object='unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_la-libunw-unwind.lo `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c unwind/ppc64/libhpcrun_la-ppc64-unwind.lo: unwind/ppc64/ppc64-unwind.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind.lo `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_la-ppc64-unwind.lo -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Tpo -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind.lo `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind.c' object='unwind/ppc64/libhpcrun_la-ppc64-unwind.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind.lo `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo: unwind/ppc64/ppc64-unwind-interval.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Tpo -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_la-ppc64-unwind-interval.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind-interval.c' object='unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_la-ppc64-unwind-interval.lo `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c unwind/x86-family/libhpcrun_la-x86-all.lo: unwind/x86-family/x86-all.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-all.lo `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-all.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-all.lo `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-all.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-all.c' object='unwind/x86-family/libhpcrun_la-x86-all.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-all.lo `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c unwind/x86-family/libhpcrun_la-amd-xop.lo: unwind/x86-family/amd-xop.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-amd-xop.lo `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-amd-xop.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Tpo -c -o unwind/x86-family/libhpcrun_la-amd-xop.lo `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-amd-xop.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/amd-xop.c' object='unwind/x86-family/libhpcrun_la-amd-xop.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-amd-xop.lo `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c unwind/x86-family/libhpcrun_la-x86-cold-path.lo: unwind/x86-family/x86-cold-path.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-cold-path.lo `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-cold-path.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-cold-path.lo `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-cold-path.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-cold-path.c' object='unwind/x86-family/libhpcrun_la-x86-cold-path.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-cold-path.lo `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo: unwind/x86-family/x86-validate-retn-addr.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-validate-retn-addr.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-validate-retn-addr.c' object='unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-validate-retn-addr.lo `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo: unwind/x86-family/x86-unwind-interval.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval.c' object='unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval.lo `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo: unwind/x86-family/x86-unwind-interval-fixup.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-interval-fixup.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval-fixup.c' object='unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-interval-fixup.lo `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c unwind/x86-family/libhpcrun_la-x86-unwind.lo: unwind/x86-family/x86-unwind.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind.lo `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind.lo `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind.c' object='unwind/x86-family/libhpcrun_la-x86-unwind.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind.lo `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c unwind/x86-family/libhpcrun_la-x86-unwind-support.lo: unwind/x86-family/x86-unwind-support.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-support.lo `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_la-x86-unwind-support.lo -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Tpo -c -o unwind/x86-family/libhpcrun_la-x86-unwind-support.lo `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_la-x86-unwind-support.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-support.c' object='unwind/x86-family/libhpcrun_la-x86-unwind-support.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_la-x86-unwind-support.lo `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo: unwind/x86-family/manual-intervals/x86-gcc-main64.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-gcc-main64.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-gcc-main64.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-gcc-main64.lo `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo: unwind/x86-family/manual-intervals/x86-linux-dlresolver.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-linux-dlresolver.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-linux-dlresolver.lo `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo: unwind/x86-family/manual-intervals/x86-intel11-f90main.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel11-f90main.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel11-f90main.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel11-f90main.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo: unwind/x86-family/manual-intervals/x86-intel-align32.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align32.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align32.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align32.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo: unwind/x86-family/manual-intervals/x86-intel-align64.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-align64.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align64.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-align64.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo: unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-intel-composer2013-mic.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-intel-composer2013-mic.lo `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo: unwind/x86-family/manual-intervals/x86-32bit-main.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-main.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-main.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-main.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo: unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-32bit-icc-variant.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-32bit-icc-variant.lo `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo: unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_la-x86-pgi-mp_pexit.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' object='unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_la-x86-pgi-mp_pexit.lo `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c utilities/libhpcrun_la-last_func.lo: utilities/last_func.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-last_func.lo `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_la-last_func.lo -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_la-last_func.Tpo -c -o utilities/libhpcrun_la-last_func.lo `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_la-last_func.Tpo utilities/$(DEPDIR)/libhpcrun_la-last_func.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/last_func.c' object='utilities/libhpcrun_la-last_func.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_la_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_la-last_func.lo `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c sample-sources/libhpcrun_ga_la-ga-overrides.lo: sample-sources/ga-overrides.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_la-ga-overrides.lo `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_ga_la-ga-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Tpo -c -o sample-sources/libhpcrun_ga_la-ga-overrides.lo `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_ga_la-ga-overrides.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga-overrides.c' object='sample-sources/libhpcrun_ga_la-ga-overrides.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_ga_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_ga_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_ga_la-ga-overrides.lo `test -f 'sample-sources/ga-overrides.c' || echo '$(srcdir)/'`sample-sources/ga-overrides.c sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo: sample-sources/gpu_blame-overrides.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Tpo -c -o sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_gpu_la-gpu_blame-overrides.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/gpu_blame-overrides.c' object='sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_gpu_la-gpu_blame-overrides.lo `test -f 'sample-sources/gpu_blame-overrides.c' || echo '$(srcdir)/'`sample-sources/gpu_blame-overrides.c libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo: gpu_blame-driver-overrides-generated.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Tpo -c -o libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-driver-overrides-generated.c' object='libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-driver-overrides-generated.lo `test -f 'gpu_blame-driver-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-driver-overrides-generated.c libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo: gpu_blame-runtime-overrides-generated.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -MT libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo -MD -MP -MF $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Tpo -c -o libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Tpo $(DEPDIR)/libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gpu_blame-runtime-overrides-generated.c' object='libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_gpu_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_gpu_la_CFLAGS) $(CFLAGS) -c -o libhpcrun_gpu_la-gpu_blame-runtime-overrides-generated.lo `test -f 'gpu_blame-runtime-overrides-generated.c' || echo '$(srcdir)/'`gpu_blame-runtime-overrides-generated.c sample-sources/libhpcrun_io_la-io-over.lo: sample-sources/io-over.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_la-io-over.lo `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_io_la-io-over.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Tpo -c -o sample-sources/libhpcrun_io_la-io-over.lo `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Tpo sample-sources/$(DEPDIR)/libhpcrun_io_la-io-over.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io-over.c' object='sample-sources/libhpcrun_io_la-io-over.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_io_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_io_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_io_la-io-over.lo `test -f 'sample-sources/io-over.c' || echo '$(srcdir)/'`sample-sources/io-over.c sample-sources/libhpcrun_memleak_la-memleak-overrides.lo: sample-sources/memleak-overrides.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_la-memleak-overrides.lo `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_memleak_la-memleak-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Tpo -c -o sample-sources/libhpcrun_memleak_la-memleak-overrides.lo `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_memleak_la-memleak-overrides.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak-overrides.c' object='sample-sources/libhpcrun_memleak_la-memleak-overrides.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_memleak_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_memleak_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_memleak_la-memleak-overrides.lo `test -f 'sample-sources/memleak-overrides.c' || echo '$(srcdir)/'`sample-sources/memleak-overrides.c ./libhpcrun_mpi_la-mpi-overrides.lo: ./mpi-overrides.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_mpi_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_mpi_la_CFLAGS) $(CFLAGS) -c -o ./libhpcrun_mpi_la-mpi-overrides.lo `test -f './mpi-overrides.c' || echo '$(srcdir)/'`./mpi-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_mpi_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_mpi_la_CFLAGS) $(CFLAGS) -MT ./libhpcrun_mpi_la-mpi-overrides.lo -MD -MP -MF $(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Tpo -c -o ./libhpcrun_mpi_la-mpi-overrides.lo `test -f './mpi-overrides.c' || echo '$(srcdir)/'`./mpi-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Tpo $(DEPDIR)/libhpcrun_mpi_la-mpi-overrides.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='./mpi-overrides.c' object='./libhpcrun_mpi_la-mpi-overrides.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_mpi_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_mpi_la_CFLAGS) $(CFLAGS) -c -o ./libhpcrun_mpi_la-mpi-overrides.lo `test -f './mpi-overrides.c' || echo '$(srcdir)/'`./mpi-overrides.c sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo: sample-sources/pthread-blame-overrides.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_la_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Tpo -c -o sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Tpo sample-sources/$(DEPDIR)/libhpcrun_pthread_la-pthread-blame-overrides.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame-overrides.c' object='sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_pthread_la_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_pthread_la_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_pthread_la-pthread-blame-overrides.lo `test -f 'sample-sources/pthread-blame-overrides.c' || echo '$(srcdir)/'`sample-sources/pthread-blame-overrides.c libhpctoolkit_la-hpctoolkit.lo: hpctoolkit.c - $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_la-hpctoolkit.lo `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libhpctoolkit_la-hpctoolkit.lo -MD -MP -MF $(DEPDIR)/libhpctoolkit_la-hpctoolkit.Tpo -c -o libhpctoolkit_la-hpctoolkit.lo `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpctoolkit_la-hpctoolkit.Tpo $(DEPDIR)/libhpctoolkit_la-hpctoolkit.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpctoolkit.c' object='libhpctoolkit_la-hpctoolkit.lo' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpctoolkit_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libhpctoolkit_la-hpctoolkit.lo `test -f 'hpctoolkit.c' || echo '$(srcdir)/'`hpctoolkit.c utilities/libhpcrun_o-first_func.o: utilities/first_func.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.o `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-first_func.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo -c -o utilities/libhpcrun_o-first_func.o `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-first_func.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/first_func.c' object='utilities/libhpcrun_o-first_func.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.o `test -f 'utilities/first_func.c' || echo '$(srcdir)/'`utilities/first_func.c utilities/libhpcrun_o-first_func.obj: utilities/first_func.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.obj `if test -f 'utilities/first_func.c'; then $(CYGPATH_W) 'utilities/first_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/first_func.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-first_func.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo -c -o utilities/libhpcrun_o-first_func.obj `if test -f 'utilities/first_func.c'; then $(CYGPATH_W) 'utilities/first_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/first_func.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-first_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-first_func.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/first_func.c' object='utilities/libhpcrun_o-first_func.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-first_func.obj `if test -f 'utilities/first_func.c'; then $(CYGPATH_W) 'utilities/first_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/first_func.c'; fi` libhpcrun_o-main.o: main.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-main.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-main.Tpo -c -o libhpcrun_o-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-main.Tpo $(DEPDIR)/libhpcrun_o-main.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libhpcrun_o-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c libhpcrun_o-main.obj: main.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-main.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-main.Tpo -c -o libhpcrun_o-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-main.Tpo $(DEPDIR)/libhpcrun_o-main.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='main.c' object='libhpcrun_o-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi` libhpcrun_o-disabled.o: disabled.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.o `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-disabled.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-disabled.Tpo -c -o libhpcrun_o-disabled.o `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-disabled.Tpo $(DEPDIR)/libhpcrun_o-disabled.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='disabled.c' object='libhpcrun_o-disabled.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.o `test -f 'disabled.c' || echo '$(srcdir)/'`disabled.c libhpcrun_o-disabled.obj: disabled.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.obj `if test -f 'disabled.c'; then $(CYGPATH_W) 'disabled.c'; else $(CYGPATH_W) '$(srcdir)/disabled.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-disabled.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-disabled.Tpo -c -o libhpcrun_o-disabled.obj `if test -f 'disabled.c'; then $(CYGPATH_W) 'disabled.c'; else $(CYGPATH_W) '$(srcdir)/disabled.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-disabled.Tpo $(DEPDIR)/libhpcrun_o-disabled.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='disabled.c' object='libhpcrun_o-disabled.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-disabled.obj `if test -f 'disabled.c'; then $(CYGPATH_W) 'disabled.c'; else $(CYGPATH_W) '$(srcdir)/disabled.c'; fi` libhpcrun_o-cct_insert_backtrace.o: cct_insert_backtrace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.o `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_insert_backtrace.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo -c -o libhpcrun_o-cct_insert_backtrace.o `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_insert_backtrace.c' object='libhpcrun_o-cct_insert_backtrace.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.o `test -f 'cct_insert_backtrace.c' || echo '$(srcdir)/'`cct_insert_backtrace.c libhpcrun_o-cct_insert_backtrace.obj: cct_insert_backtrace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.obj `if test -f 'cct_insert_backtrace.c'; then $(CYGPATH_W) 'cct_insert_backtrace.c'; else $(CYGPATH_W) '$(srcdir)/cct_insert_backtrace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_insert_backtrace.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo -c -o libhpcrun_o-cct_insert_backtrace.obj `if test -f 'cct_insert_backtrace.c'; then $(CYGPATH_W) 'cct_insert_backtrace.c'; else $(CYGPATH_W) '$(srcdir)/cct_insert_backtrace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Tpo $(DEPDIR)/libhpcrun_o-cct_insert_backtrace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_insert_backtrace.c' object='libhpcrun_o-cct_insert_backtrace.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_insert_backtrace.obj `if test -f 'cct_insert_backtrace.c'; then $(CYGPATH_W) 'cct_insert_backtrace.c'; else $(CYGPATH_W) '$(srcdir)/cct_insert_backtrace.c'; fi` libhpcrun_o-cct_backtrace_finalize.o: cct_backtrace_finalize.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.o `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_backtrace_finalize.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo -c -o libhpcrun_o-cct_backtrace_finalize.o `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_backtrace_finalize.c' object='libhpcrun_o-cct_backtrace_finalize.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.o `test -f 'cct_backtrace_finalize.c' || echo '$(srcdir)/'`cct_backtrace_finalize.c libhpcrun_o-cct_backtrace_finalize.obj: cct_backtrace_finalize.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.obj `if test -f 'cct_backtrace_finalize.c'; then $(CYGPATH_W) 'cct_backtrace_finalize.c'; else $(CYGPATH_W) '$(srcdir)/cct_backtrace_finalize.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct_backtrace_finalize.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo -c -o libhpcrun_o-cct_backtrace_finalize.obj `if test -f 'cct_backtrace_finalize.c'; then $(CYGPATH_W) 'cct_backtrace_finalize.c'; else $(CYGPATH_W) '$(srcdir)/cct_backtrace_finalize.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Tpo $(DEPDIR)/libhpcrun_o-cct_backtrace_finalize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct_backtrace_finalize.c' object='libhpcrun_o-cct_backtrace_finalize.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct_backtrace_finalize.obj `if test -f 'cct_backtrace_finalize.c'; then $(CYGPATH_W) 'cct_backtrace_finalize.c'; else $(CYGPATH_W) '$(srcdir)/cct_backtrace_finalize.c'; fi` libhpcrun_o-env.o: env.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.o `test -f 'env.c' || echo '$(srcdir)/'`env.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-env.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-env.Tpo -c -o libhpcrun_o-env.o `test -f 'env.c' || echo '$(srcdir)/'`env.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-env.Tpo $(DEPDIR)/libhpcrun_o-env.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='env.c' object='libhpcrun_o-env.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.o `test -f 'env.c' || echo '$(srcdir)/'`env.c libhpcrun_o-env.obj: env.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.obj `if test -f 'env.c'; then $(CYGPATH_W) 'env.c'; else $(CYGPATH_W) '$(srcdir)/env.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-env.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-env.Tpo -c -o libhpcrun_o-env.obj `if test -f 'env.c'; then $(CYGPATH_W) 'env.c'; else $(CYGPATH_W) '$(srcdir)/env.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-env.Tpo $(DEPDIR)/libhpcrun_o-env.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='env.c' object='libhpcrun_o-env.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-env.obj `if test -f 'env.c'; then $(CYGPATH_W) 'env.c'; else $(CYGPATH_W) '$(srcdir)/env.c'; fi` libhpcrun_o-epoch.o: epoch.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.o `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-epoch.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-epoch.Tpo -c -o libhpcrun_o-epoch.o `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-epoch.Tpo $(DEPDIR)/libhpcrun_o-epoch.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='epoch.c' object='libhpcrun_o-epoch.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.o `test -f 'epoch.c' || echo '$(srcdir)/'`epoch.c libhpcrun_o-epoch.obj: epoch.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.obj `if test -f 'epoch.c'; then $(CYGPATH_W) 'epoch.c'; else $(CYGPATH_W) '$(srcdir)/epoch.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-epoch.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-epoch.Tpo -c -o libhpcrun_o-epoch.obj `if test -f 'epoch.c'; then $(CYGPATH_W) 'epoch.c'; else $(CYGPATH_W) '$(srcdir)/epoch.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-epoch.Tpo $(DEPDIR)/libhpcrun_o-epoch.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='epoch.c' object='libhpcrun_o-epoch.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-epoch.obj `if test -f 'epoch.c'; then $(CYGPATH_W) 'epoch.c'; else $(CYGPATH_W) '$(srcdir)/epoch.c'; fi` libhpcrun_o-files.o: files.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.o `test -f 'files.c' || echo '$(srcdir)/'`files.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-files.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-files.Tpo -c -o libhpcrun_o-files.o `test -f 'files.c' || echo '$(srcdir)/'`files.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-files.Tpo $(DEPDIR)/libhpcrun_o-files.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='files.c' object='libhpcrun_o-files.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.o `test -f 'files.c' || echo '$(srcdir)/'`files.c libhpcrun_o-files.obj: files.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.obj `if test -f 'files.c'; then $(CYGPATH_W) 'files.c'; else $(CYGPATH_W) '$(srcdir)/files.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-files.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-files.Tpo -c -o libhpcrun_o-files.obj `if test -f 'files.c'; then $(CYGPATH_W) 'files.c'; else $(CYGPATH_W) '$(srcdir)/files.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-files.Tpo $(DEPDIR)/libhpcrun_o-files.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='files.c' object='libhpcrun_o-files.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-files.obj `if test -f 'files.c'; then $(CYGPATH_W) 'files.c'; else $(CYGPATH_W) '$(srcdir)/files.c'; fi` libhpcrun_o-handling_sample.o: handling_sample.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.o `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-handling_sample.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-handling_sample.Tpo -c -o libhpcrun_o-handling_sample.o `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-handling_sample.Tpo $(DEPDIR)/libhpcrun_o-handling_sample.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='handling_sample.c' object='libhpcrun_o-handling_sample.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.o `test -f 'handling_sample.c' || echo '$(srcdir)/'`handling_sample.c libhpcrun_o-handling_sample.obj: handling_sample.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.obj `if test -f 'handling_sample.c'; then $(CYGPATH_W) 'handling_sample.c'; else $(CYGPATH_W) '$(srcdir)/handling_sample.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-handling_sample.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-handling_sample.Tpo -c -o libhpcrun_o-handling_sample.obj `if test -f 'handling_sample.c'; then $(CYGPATH_W) 'handling_sample.c'; else $(CYGPATH_W) '$(srcdir)/handling_sample.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-handling_sample.Tpo $(DEPDIR)/libhpcrun_o-handling_sample.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='handling_sample.c' object='libhpcrun_o-handling_sample.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-handling_sample.obj `if test -f 'handling_sample.c'; then $(CYGPATH_W) 'handling_sample.c'; else $(CYGPATH_W) '$(srcdir)/handling_sample.c'; fi` libhpcrun_o-hpcrun_options.o: hpcrun_options.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.o `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_options.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo -c -o libhpcrun_o-hpcrun_options.o `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_options.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_options.c' object='libhpcrun_o-hpcrun_options.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.o `test -f 'hpcrun_options.c' || echo '$(srcdir)/'`hpcrun_options.c libhpcrun_o-hpcrun_options.obj: hpcrun_options.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.obj `if test -f 'hpcrun_options.c'; then $(CYGPATH_W) 'hpcrun_options.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_options.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_options.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo -c -o libhpcrun_o-hpcrun_options.obj `if test -f 'hpcrun_options.c'; then $(CYGPATH_W) 'hpcrun_options.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_options.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_options.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_options.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_options.c' object='libhpcrun_o-hpcrun_options.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_options.obj `if test -f 'hpcrun_options.c'; then $(CYGPATH_W) 'hpcrun_options.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_options.c'; fi` libhpcrun_o-hpcrun_stats.o: hpcrun_stats.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.o `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_stats.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo -c -o libhpcrun_o-hpcrun_stats.o `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_stats.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_stats.c' object='libhpcrun_o-hpcrun_stats.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.o `test -f 'hpcrun_stats.c' || echo '$(srcdir)/'`hpcrun_stats.c libhpcrun_o-hpcrun_stats.obj: hpcrun_stats.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.obj `if test -f 'hpcrun_stats.c'; then $(CYGPATH_W) 'hpcrun_stats.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_stats.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-hpcrun_stats.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo -c -o libhpcrun_o-hpcrun_stats.obj `if test -f 'hpcrun_stats.c'; then $(CYGPATH_W) 'hpcrun_stats.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_stats.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-hpcrun_stats.Tpo $(DEPDIR)/libhpcrun_o-hpcrun_stats.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='hpcrun_stats.c' object='libhpcrun_o-hpcrun_stats.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-hpcrun_stats.obj `if test -f 'hpcrun_stats.c'; then $(CYGPATH_W) 'hpcrun_stats.c'; else $(CYGPATH_W) '$(srcdir)/hpcrun_stats.c'; fi` libhpcrun_o-loadmap.o: loadmap.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.o `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-loadmap.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-loadmap.Tpo -c -o libhpcrun_o-loadmap.o `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-loadmap.Tpo $(DEPDIR)/libhpcrun_o-loadmap.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='loadmap.c' object='libhpcrun_o-loadmap.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.o `test -f 'loadmap.c' || echo '$(srcdir)/'`loadmap.c libhpcrun_o-loadmap.obj: loadmap.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.obj `if test -f 'loadmap.c'; then $(CYGPATH_W) 'loadmap.c'; else $(CYGPATH_W) '$(srcdir)/loadmap.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-loadmap.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-loadmap.Tpo -c -o libhpcrun_o-loadmap.obj `if test -f 'loadmap.c'; then $(CYGPATH_W) 'loadmap.c'; else $(CYGPATH_W) '$(srcdir)/loadmap.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-loadmap.Tpo $(DEPDIR)/libhpcrun_o-loadmap.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='loadmap.c' object='libhpcrun_o-loadmap.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-loadmap.obj `if test -f 'loadmap.c'; then $(CYGPATH_W) 'loadmap.c'; else $(CYGPATH_W) '$(srcdir)/loadmap.c'; fi` libhpcrun_o-metrics.o: metrics.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.o `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-metrics.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-metrics.Tpo -c -o libhpcrun_o-metrics.o `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-metrics.Tpo $(DEPDIR)/libhpcrun_o-metrics.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='metrics.c' object='libhpcrun_o-metrics.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.o `test -f 'metrics.c' || echo '$(srcdir)/'`metrics.c libhpcrun_o-metrics.obj: metrics.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.obj `if test -f 'metrics.c'; then $(CYGPATH_W) 'metrics.c'; else $(CYGPATH_W) '$(srcdir)/metrics.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-metrics.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-metrics.Tpo -c -o libhpcrun_o-metrics.obj `if test -f 'metrics.c'; then $(CYGPATH_W) 'metrics.c'; else $(CYGPATH_W) '$(srcdir)/metrics.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-metrics.Tpo $(DEPDIR)/libhpcrun_o-metrics.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='metrics.c' object='libhpcrun_o-metrics.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-metrics.obj `if test -f 'metrics.c'; then $(CYGPATH_W) 'metrics.c'; else $(CYGPATH_W) '$(srcdir)/metrics.c'; fi` libhpcrun_o-name.o: name.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.o `test -f 'name.c' || echo '$(srcdir)/'`name.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-name.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-name.Tpo -c -o libhpcrun_o-name.o `test -f 'name.c' || echo '$(srcdir)/'`name.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-name.Tpo $(DEPDIR)/libhpcrun_o-name.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='name.c' object='libhpcrun_o-name.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.o `test -f 'name.c' || echo '$(srcdir)/'`name.c libhpcrun_o-name.obj: name.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.obj `if test -f 'name.c'; then $(CYGPATH_W) 'name.c'; else $(CYGPATH_W) '$(srcdir)/name.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-name.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-name.Tpo -c -o libhpcrun_o-name.obj `if test -f 'name.c'; then $(CYGPATH_W) 'name.c'; else $(CYGPATH_W) '$(srcdir)/name.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-name.Tpo $(DEPDIR)/libhpcrun_o-name.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='name.c' object='libhpcrun_o-name.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-name.obj `if test -f 'name.c'; then $(CYGPATH_W) 'name.c'; else $(CYGPATH_W) '$(srcdir)/name.c'; fi` libhpcrun_o-rank.o: rank.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.o `test -f 'rank.c' || echo '$(srcdir)/'`rank.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-rank.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-rank.Tpo -c -o libhpcrun_o-rank.o `test -f 'rank.c' || echo '$(srcdir)/'`rank.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-rank.Tpo $(DEPDIR)/libhpcrun_o-rank.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rank.c' object='libhpcrun_o-rank.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.o `test -f 'rank.c' || echo '$(srcdir)/'`rank.c libhpcrun_o-rank.obj: rank.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.obj `if test -f 'rank.c'; then $(CYGPATH_W) 'rank.c'; else $(CYGPATH_W) '$(srcdir)/rank.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-rank.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-rank.Tpo -c -o libhpcrun_o-rank.obj `if test -f 'rank.c'; then $(CYGPATH_W) 'rank.c'; else $(CYGPATH_W) '$(srcdir)/rank.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-rank.Tpo $(DEPDIR)/libhpcrun_o-rank.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='rank.c' object='libhpcrun_o-rank.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-rank.obj `if test -f 'rank.c'; then $(CYGPATH_W) 'rank.c'; else $(CYGPATH_W) '$(srcdir)/rank.c'; fi` libhpcrun_o-sample_event.o: sample_event.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.o `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_event.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_event.Tpo -c -o libhpcrun_o-sample_event.o `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_event.Tpo $(DEPDIR)/libhpcrun_o-sample_event.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_event.c' object='libhpcrun_o-sample_event.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.o `test -f 'sample_event.c' || echo '$(srcdir)/'`sample_event.c libhpcrun_o-sample_event.obj: sample_event.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.obj `if test -f 'sample_event.c'; then $(CYGPATH_W) 'sample_event.c'; else $(CYGPATH_W) '$(srcdir)/sample_event.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_event.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_event.Tpo -c -o libhpcrun_o-sample_event.obj `if test -f 'sample_event.c'; then $(CYGPATH_W) 'sample_event.c'; else $(CYGPATH_W) '$(srcdir)/sample_event.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_event.Tpo $(DEPDIR)/libhpcrun_o-sample_event.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_event.c' object='libhpcrun_o-sample_event.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_event.obj `if test -f 'sample_event.c'; then $(CYGPATH_W) 'sample_event.c'; else $(CYGPATH_W) '$(srcdir)/sample_event.c'; fi` libhpcrun_o-sample_prob.o: sample_prob.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.o `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_prob.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_prob.Tpo -c -o libhpcrun_o-sample_prob.o `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_prob.Tpo $(DEPDIR)/libhpcrun_o-sample_prob.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_prob.c' object='libhpcrun_o-sample_prob.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.o `test -f 'sample_prob.c' || echo '$(srcdir)/'`sample_prob.c libhpcrun_o-sample_prob.obj: sample_prob.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.obj `if test -f 'sample_prob.c'; then $(CYGPATH_W) 'sample_prob.c'; else $(CYGPATH_W) '$(srcdir)/sample_prob.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_prob.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_prob.Tpo -c -o libhpcrun_o-sample_prob.obj `if test -f 'sample_prob.c'; then $(CYGPATH_W) 'sample_prob.c'; else $(CYGPATH_W) '$(srcdir)/sample_prob.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_prob.Tpo $(DEPDIR)/libhpcrun_o-sample_prob.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_prob.c' object='libhpcrun_o-sample_prob.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_prob.obj `if test -f 'sample_prob.c'; then $(CYGPATH_W) 'sample_prob.c'; else $(CYGPATH_W) '$(srcdir)/sample_prob.c'; fi` libhpcrun_o-sample_sources_all.o: sample_sources_all.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.o `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_all.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo -c -o libhpcrun_o-sample_sources_all.o `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_all.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_all.c' object='libhpcrun_o-sample_sources_all.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.o `test -f 'sample_sources_all.c' || echo '$(srcdir)/'`sample_sources_all.c libhpcrun_o-sample_sources_all.obj: sample_sources_all.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.obj `if test -f 'sample_sources_all.c'; then $(CYGPATH_W) 'sample_sources_all.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_all.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_all.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo -c -o libhpcrun_o-sample_sources_all.obj `if test -f 'sample_sources_all.c'; then $(CYGPATH_W) 'sample_sources_all.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_all.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_all.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_all.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_all.c' object='libhpcrun_o-sample_sources_all.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_all.obj `if test -f 'sample_sources_all.c'; then $(CYGPATH_W) 'sample_sources_all.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_all.c'; fi` sample-sources/blame-shift/libhpcrun_o-blame-shift.o: sample-sources/blame-shift/blame-shift.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.o `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-shift.o -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.o `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-shift.c' object='sample-sources/blame-shift/libhpcrun_o-blame-shift.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.o `test -f 'sample-sources/blame-shift/blame-shift.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-shift.c sample-sources/blame-shift/libhpcrun_o-blame-shift.obj: sample-sources/blame-shift/blame-shift.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.obj `if test -f 'sample-sources/blame-shift/blame-shift.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-shift.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-shift.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-shift.obj -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.obj `if test -f 'sample-sources/blame-shift/blame-shift.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-shift.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-shift.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-shift.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-shift.c' object='sample-sources/blame-shift/libhpcrun_o-blame-shift.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-shift.obj `if test -f 'sample-sources/blame-shift/blame-shift.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-shift.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-shift.c'; fi` sample-sources/blame-shift/libhpcrun_o-blame-map.o: sample-sources/blame-shift/blame-map.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.o `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-map.o -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.o `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-map.c' object='sample-sources/blame-shift/libhpcrun_o-blame-map.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.o `test -f 'sample-sources/blame-shift/blame-map.c' || echo '$(srcdir)/'`sample-sources/blame-shift/blame-map.c sample-sources/blame-shift/libhpcrun_o-blame-map.obj: sample-sources/blame-shift/blame-map.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.obj `if test -f 'sample-sources/blame-shift/blame-map.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-map.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-map.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/blame-shift/libhpcrun_o-blame-map.obj -MD -MP -MF sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.obj `if test -f 'sample-sources/blame-shift/blame-map.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-map.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-map.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Tpo sample-sources/blame-shift/$(DEPDIR)/libhpcrun_o-blame-map.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/blame-shift/blame-map.c' object='sample-sources/blame-shift/libhpcrun_o-blame-map.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/blame-shift/libhpcrun_o-blame-map.obj `if test -f 'sample-sources/blame-shift/blame-map.c'; then $(CYGPATH_W) 'sample-sources/blame-shift/blame-map.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/blame-shift/blame-map.c'; fi` sample-sources/libhpcrun_o-common.o: sample-sources/common.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.o `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-common.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo -c -o sample-sources/libhpcrun_o-common.o `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-common.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/common.c' object='sample-sources/libhpcrun_o-common.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.o `test -f 'sample-sources/common.c' || echo '$(srcdir)/'`sample-sources/common.c sample-sources/libhpcrun_o-common.obj: sample-sources/common.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.obj `if test -f 'sample-sources/common.c'; then $(CYGPATH_W) 'sample-sources/common.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/common.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-common.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo -c -o sample-sources/libhpcrun_o-common.obj `if test -f 'sample-sources/common.c'; then $(CYGPATH_W) 'sample-sources/common.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/common.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-common.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-common.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/common.c' object='sample-sources/libhpcrun_o-common.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-common.obj `if test -f 'sample-sources/common.c'; then $(CYGPATH_W) 'sample-sources/common.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/common.c'; fi` sample-sources/libhpcrun_o-ga.o: sample-sources/ga.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.o `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-ga.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo -c -o sample-sources/libhpcrun_o-ga.o `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-ga.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga.c' object='sample-sources/libhpcrun_o-ga.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.o `test -f 'sample-sources/ga.c' || echo '$(srcdir)/'`sample-sources/ga.c sample-sources/libhpcrun_o-ga.obj: sample-sources/ga.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.obj `if test -f 'sample-sources/ga.c'; then $(CYGPATH_W) 'sample-sources/ga.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-ga.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo -c -o sample-sources/libhpcrun_o-ga.obj `if test -f 'sample-sources/ga.c'; then $(CYGPATH_W) 'sample-sources/ga.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-ga.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-ga.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/ga.c' object='sample-sources/libhpcrun_o-ga.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-ga.obj `if test -f 'sample-sources/ga.c'; then $(CYGPATH_W) 'sample-sources/ga.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/ga.c'; fi` sample-sources/libhpcrun_o-io.o: sample-sources/io.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.o `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-io.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo -c -o sample-sources/libhpcrun_o-io.o `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-io.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io.c' object='sample-sources/libhpcrun_o-io.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.o `test -f 'sample-sources/io.c' || echo '$(srcdir)/'`sample-sources/io.c sample-sources/libhpcrun_o-io.obj: sample-sources/io.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.obj `if test -f 'sample-sources/io.c'; then $(CYGPATH_W) 'sample-sources/io.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-io.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo -c -o sample-sources/libhpcrun_o-io.obj `if test -f 'sample-sources/io.c'; then $(CYGPATH_W) 'sample-sources/io.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-io.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-io.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/io.c' object='sample-sources/libhpcrun_o-io.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-io.obj `if test -f 'sample-sources/io.c'; then $(CYGPATH_W) 'sample-sources/io.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/io.c'; fi` sample-sources/libhpcrun_o-itimer.o: sample-sources/itimer.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.o `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-itimer.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo -c -o sample-sources/libhpcrun_o-itimer.o `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/itimer.c' object='sample-sources/libhpcrun_o-itimer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.o `test -f 'sample-sources/itimer.c' || echo '$(srcdir)/'`sample-sources/itimer.c sample-sources/libhpcrun_o-itimer.obj: sample-sources/itimer.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.obj `if test -f 'sample-sources/itimer.c'; then $(CYGPATH_W) 'sample-sources/itimer.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/itimer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-itimer.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo -c -o sample-sources/libhpcrun_o-itimer.obj `if test -f 'sample-sources/itimer.c'; then $(CYGPATH_W) 'sample-sources/itimer.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/itimer.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-itimer.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/itimer.c' object='sample-sources/libhpcrun_o-itimer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-itimer.obj `if test -f 'sample-sources/itimer.c'; then $(CYGPATH_W) 'sample-sources/itimer.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/itimer.c'; fi` sample-sources/libhpcrun_o-idle.o: sample-sources/idle.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.o `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-idle.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo -c -o sample-sources/libhpcrun_o-idle.o `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-idle.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/idle.c' object='sample-sources/libhpcrun_o-idle.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.o `test -f 'sample-sources/idle.c' || echo '$(srcdir)/'`sample-sources/idle.c sample-sources/libhpcrun_o-idle.obj: sample-sources/idle.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.obj `if test -f 'sample-sources/idle.c'; then $(CYGPATH_W) 'sample-sources/idle.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/idle.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-idle.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo -c -o sample-sources/libhpcrun_o-idle.obj `if test -f 'sample-sources/idle.c'; then $(CYGPATH_W) 'sample-sources/idle.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/idle.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-idle.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-idle.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/idle.c' object='sample-sources/libhpcrun_o-idle.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-idle.obj `if test -f 'sample-sources/idle.c'; then $(CYGPATH_W) 'sample-sources/idle.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/idle.c'; fi` sample-sources/libhpcrun_o-memleak.o: sample-sources/memleak.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.o `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-memleak.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo -c -o sample-sources/libhpcrun_o-memleak.o `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak.c' object='sample-sources/libhpcrun_o-memleak.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.o `test -f 'sample-sources/memleak.c' || echo '$(srcdir)/'`sample-sources/memleak.c sample-sources/libhpcrun_o-memleak.obj: sample-sources/memleak.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.obj `if test -f 'sample-sources/memleak.c'; then $(CYGPATH_W) 'sample-sources/memleak.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-memleak.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo -c -o sample-sources/libhpcrun_o-memleak.obj `if test -f 'sample-sources/memleak.c'; then $(CYGPATH_W) 'sample-sources/memleak.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-memleak.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/memleak.c' object='sample-sources/libhpcrun_o-memleak.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-memleak.obj `if test -f 'sample-sources/memleak.c'; then $(CYGPATH_W) 'sample-sources/memleak.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/memleak.c'; fi` sample-sources/libhpcrun_o-pthread-blame.o: sample-sources/pthread-blame.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.o `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-pthread-blame.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo -c -o sample-sources/libhpcrun_o-pthread-blame.o `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame.c' object='sample-sources/libhpcrun_o-pthread-blame.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.o `test -f 'sample-sources/pthread-blame.c' || echo '$(srcdir)/'`sample-sources/pthread-blame.c sample-sources/libhpcrun_o-pthread-blame.obj: sample-sources/pthread-blame.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.obj `if test -f 'sample-sources/pthread-blame.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-pthread-blame.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo -c -o sample-sources/libhpcrun_o-pthread-blame.obj `if test -f 'sample-sources/pthread-blame.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-pthread-blame.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/pthread-blame.c' object='sample-sources/libhpcrun_o-pthread-blame.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-pthread-blame.obj `if test -f 'sample-sources/pthread-blame.c'; then $(CYGPATH_W) 'sample-sources/pthread-blame.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/pthread-blame.c'; fi` sample-sources/libhpcrun_o-none.o: sample-sources/none.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.o `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-none.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo -c -o sample-sources/libhpcrun_o-none.o `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-none.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/none.c' object='sample-sources/libhpcrun_o-none.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.o `test -f 'sample-sources/none.c' || echo '$(srcdir)/'`sample-sources/none.c sample-sources/libhpcrun_o-none.obj: sample-sources/none.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.obj `if test -f 'sample-sources/none.c'; then $(CYGPATH_W) 'sample-sources/none.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/none.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-none.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo -c -o sample-sources/libhpcrun_o-none.obj `if test -f 'sample-sources/none.c'; then $(CYGPATH_W) 'sample-sources/none.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/none.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-none.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-none.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/none.c' object='sample-sources/libhpcrun_o-none.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-none.obj `if test -f 'sample-sources/none.c'; then $(CYGPATH_W) 'sample-sources/none.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/none.c'; fi` sample-sources/libhpcrun_o-retcnt.o: sample-sources/retcnt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.o `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-retcnt.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo -c -o sample-sources/libhpcrun_o-retcnt.o `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/retcnt.c' object='sample-sources/libhpcrun_o-retcnt.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.o `test -f 'sample-sources/retcnt.c' || echo '$(srcdir)/'`sample-sources/retcnt.c sample-sources/libhpcrun_o-retcnt.obj: sample-sources/retcnt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.obj `if test -f 'sample-sources/retcnt.c'; then $(CYGPATH_W) 'sample-sources/retcnt.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/retcnt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-retcnt.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo -c -o sample-sources/libhpcrun_o-retcnt.obj `if test -f 'sample-sources/retcnt.c'; then $(CYGPATH_W) 'sample-sources/retcnt.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/retcnt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-retcnt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/retcnt.c' object='sample-sources/libhpcrun_o-retcnt.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-retcnt.obj `if test -f 'sample-sources/retcnt.c'; then $(CYGPATH_W) 'sample-sources/retcnt.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/retcnt.c'; fi` sample-sources/libhpcrun_o-sync.o: sample-sources/sync.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.o `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-sync.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo -c -o sample-sources/libhpcrun_o-sync.o `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-sync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/sync.c' object='sample-sources/libhpcrun_o-sync.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.o `test -f 'sample-sources/sync.c' || echo '$(srcdir)/'`sample-sources/sync.c sample-sources/libhpcrun_o-sync.obj: sample-sources/sync.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.obj `if test -f 'sample-sources/sync.c'; then $(CYGPATH_W) 'sample-sources/sync.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/sync.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-sync.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo -c -o sample-sources/libhpcrun_o-sync.obj `if test -f 'sample-sources/sync.c'; then $(CYGPATH_W) 'sample-sources/sync.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/sync.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-sync.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-sync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/sync.c' object='sample-sources/libhpcrun_o-sync.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-sync.obj `if test -f 'sample-sources/sync.c'; then $(CYGPATH_W) 'sample-sources/sync.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/sync.c'; fi` libhpcrun_o-sample_sources_registered.o: sample_sources_registered.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.o `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_registered.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo -c -o libhpcrun_o-sample_sources_registered.o `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_registered.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_registered.c' object='libhpcrun_o-sample_sources_registered.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.o `test -f 'sample_sources_registered.c' || echo '$(srcdir)/'`sample_sources_registered.c libhpcrun_o-sample_sources_registered.obj: sample_sources_registered.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.obj `if test -f 'sample_sources_registered.c'; then $(CYGPATH_W) 'sample_sources_registered.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_registered.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-sample_sources_registered.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo -c -o libhpcrun_o-sample_sources_registered.obj `if test -f 'sample_sources_registered.c'; then $(CYGPATH_W) 'sample_sources_registered.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_registered.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-sample_sources_registered.Tpo $(DEPDIR)/libhpcrun_o-sample_sources_registered.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample_sources_registered.c' object='libhpcrun_o-sample_sources_registered.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-sample_sources_registered.obj `if test -f 'sample_sources_registered.c'; then $(CYGPATH_W) 'sample_sources_registered.c'; else $(CYGPATH_W) '$(srcdir)/sample_sources_registered.c'; fi` libhpcrun_o-segv_handler.o: segv_handler.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.o `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-segv_handler.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-segv_handler.Tpo -c -o libhpcrun_o-segv_handler.o `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-segv_handler.Tpo $(DEPDIR)/libhpcrun_o-segv_handler.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='segv_handler.c' object='libhpcrun_o-segv_handler.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.o `test -f 'segv_handler.c' || echo '$(srcdir)/'`segv_handler.c libhpcrun_o-segv_handler.obj: segv_handler.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.obj `if test -f 'segv_handler.c'; then $(CYGPATH_W) 'segv_handler.c'; else $(CYGPATH_W) '$(srcdir)/segv_handler.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-segv_handler.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-segv_handler.Tpo -c -o libhpcrun_o-segv_handler.obj `if test -f 'segv_handler.c'; then $(CYGPATH_W) 'segv_handler.c'; else $(CYGPATH_W) '$(srcdir)/segv_handler.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-segv_handler.Tpo $(DEPDIR)/libhpcrun_o-segv_handler.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='segv_handler.c' object='libhpcrun_o-segv_handler.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-segv_handler.obj `if test -f 'segv_handler.c'; then $(CYGPATH_W) 'segv_handler.c'; else $(CYGPATH_W) '$(srcdir)/segv_handler.c'; fi` libhpcrun_o-start-stop.o: start-stop.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.o `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-start-stop.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-start-stop.Tpo -c -o libhpcrun_o-start-stop.o `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-start-stop.Tpo $(DEPDIR)/libhpcrun_o-start-stop.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='start-stop.c' object='libhpcrun_o-start-stop.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.o `test -f 'start-stop.c' || echo '$(srcdir)/'`start-stop.c libhpcrun_o-start-stop.obj: start-stop.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.obj `if test -f 'start-stop.c'; then $(CYGPATH_W) 'start-stop.c'; else $(CYGPATH_W) '$(srcdir)/start-stop.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-start-stop.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-start-stop.Tpo -c -o libhpcrun_o-start-stop.obj `if test -f 'start-stop.c'; then $(CYGPATH_W) 'start-stop.c'; else $(CYGPATH_W) '$(srcdir)/start-stop.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-start-stop.Tpo $(DEPDIR)/libhpcrun_o-start-stop.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='start-stop.c' object='libhpcrun_o-start-stop.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-start-stop.obj `if test -f 'start-stop.c'; then $(CYGPATH_W) 'start-stop.c'; else $(CYGPATH_W) '$(srcdir)/start-stop.c'; fi` libhpcrun_o-term_handler.o: term_handler.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.o `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-term_handler.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-term_handler.Tpo -c -o libhpcrun_o-term_handler.o `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-term_handler.Tpo $(DEPDIR)/libhpcrun_o-term_handler.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='term_handler.c' object='libhpcrun_o-term_handler.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.o `test -f 'term_handler.c' || echo '$(srcdir)/'`term_handler.c libhpcrun_o-term_handler.obj: term_handler.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.obj `if test -f 'term_handler.c'; then $(CYGPATH_W) 'term_handler.c'; else $(CYGPATH_W) '$(srcdir)/term_handler.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-term_handler.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-term_handler.Tpo -c -o libhpcrun_o-term_handler.obj `if test -f 'term_handler.c'; then $(CYGPATH_W) 'term_handler.c'; else $(CYGPATH_W) '$(srcdir)/term_handler.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-term_handler.Tpo $(DEPDIR)/libhpcrun_o-term_handler.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='term_handler.c' object='libhpcrun_o-term_handler.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-term_handler.obj `if test -f 'term_handler.c'; then $(CYGPATH_W) 'term_handler.c'; else $(CYGPATH_W) '$(srcdir)/term_handler.c'; fi` libhpcrun_o-thread_data.o: thread_data.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.o `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_data.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_data.Tpo -c -o libhpcrun_o-thread_data.o `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_data.Tpo $(DEPDIR)/libhpcrun_o-thread_data.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_data.c' object='libhpcrun_o-thread_data.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.o `test -f 'thread_data.c' || echo '$(srcdir)/'`thread_data.c libhpcrun_o-thread_data.obj: thread_data.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.obj `if test -f 'thread_data.c'; then $(CYGPATH_W) 'thread_data.c'; else $(CYGPATH_W) '$(srcdir)/thread_data.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_data.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_data.Tpo -c -o libhpcrun_o-thread_data.obj `if test -f 'thread_data.c'; then $(CYGPATH_W) 'thread_data.c'; else $(CYGPATH_W) '$(srcdir)/thread_data.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_data.Tpo $(DEPDIR)/libhpcrun_o-thread_data.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_data.c' object='libhpcrun_o-thread_data.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_data.obj `if test -f 'thread_data.c'; then $(CYGPATH_W) 'thread_data.c'; else $(CYGPATH_W) '$(srcdir)/thread_data.c'; fi` libhpcrun_o-thread_use.o: thread_use.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.o `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_use.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_use.Tpo -c -o libhpcrun_o-thread_use.o `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_use.Tpo $(DEPDIR)/libhpcrun_o-thread_use.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_use.c' object='libhpcrun_o-thread_use.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.o `test -f 'thread_use.c' || echo '$(srcdir)/'`thread_use.c libhpcrun_o-thread_use.obj: thread_use.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.obj `if test -f 'thread_use.c'; then $(CYGPATH_W) 'thread_use.c'; else $(CYGPATH_W) '$(srcdir)/thread_use.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-thread_use.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-thread_use.Tpo -c -o libhpcrun_o-thread_use.obj `if test -f 'thread_use.c'; then $(CYGPATH_W) 'thread_use.c'; else $(CYGPATH_W) '$(srcdir)/thread_use.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-thread_use.Tpo $(DEPDIR)/libhpcrun_o-thread_use.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='thread_use.c' object='libhpcrun_o-thread_use.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-thread_use.obj `if test -f 'thread_use.c'; then $(CYGPATH_W) 'thread_use.c'; else $(CYGPATH_W) '$(srcdir)/thread_use.c'; fi` libhpcrun_o-threadmgr.o: threadmgr.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.o `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-threadmgr.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-threadmgr.Tpo -c -o libhpcrun_o-threadmgr.o `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-threadmgr.Tpo $(DEPDIR)/libhpcrun_o-threadmgr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='threadmgr.c' object='libhpcrun_o-threadmgr.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.o `test -f 'threadmgr.c' || echo '$(srcdir)/'`threadmgr.c libhpcrun_o-threadmgr.obj: threadmgr.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.obj `if test -f 'threadmgr.c'; then $(CYGPATH_W) 'threadmgr.c'; else $(CYGPATH_W) '$(srcdir)/threadmgr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-threadmgr.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-threadmgr.Tpo -c -o libhpcrun_o-threadmgr.obj `if test -f 'threadmgr.c'; then $(CYGPATH_W) 'threadmgr.c'; else $(CYGPATH_W) '$(srcdir)/threadmgr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-threadmgr.Tpo $(DEPDIR)/libhpcrun_o-threadmgr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='threadmgr.c' object='libhpcrun_o-threadmgr.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-threadmgr.obj `if test -f 'threadmgr.c'; then $(CYGPATH_W) 'threadmgr.c'; else $(CYGPATH_W) '$(srcdir)/threadmgr.c'; fi` libhpcrun_o-trace.o: trace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.o `test -f 'trace.c' || echo '$(srcdir)/'`trace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-trace.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-trace.Tpo -c -o libhpcrun_o-trace.o `test -f 'trace.c' || echo '$(srcdir)/'`trace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-trace.Tpo $(DEPDIR)/libhpcrun_o-trace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trace.c' object='libhpcrun_o-trace.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.o `test -f 'trace.c' || echo '$(srcdir)/'`trace.c libhpcrun_o-trace.obj: trace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.obj `if test -f 'trace.c'; then $(CYGPATH_W) 'trace.c'; else $(CYGPATH_W) '$(srcdir)/trace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-trace.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-trace.Tpo -c -o libhpcrun_o-trace.obj `if test -f 'trace.c'; then $(CYGPATH_W) 'trace.c'; else $(CYGPATH_W) '$(srcdir)/trace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-trace.Tpo $(DEPDIR)/libhpcrun_o-trace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trace.c' object='libhpcrun_o-trace.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-trace.obj `if test -f 'trace.c'; then $(CYGPATH_W) 'trace.c'; else $(CYGPATH_W) '$(srcdir)/trace.c'; fi` libhpcrun_o-weak.o: weak.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.o `test -f 'weak.c' || echo '$(srcdir)/'`weak.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-weak.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-weak.Tpo -c -o libhpcrun_o-weak.o `test -f 'weak.c' || echo '$(srcdir)/'`weak.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-weak.Tpo $(DEPDIR)/libhpcrun_o-weak.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weak.c' object='libhpcrun_o-weak.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.o `test -f 'weak.c' || echo '$(srcdir)/'`weak.c libhpcrun_o-weak.obj: weak.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.obj `if test -f 'weak.c'; then $(CYGPATH_W) 'weak.c'; else $(CYGPATH_W) '$(srcdir)/weak.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-weak.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-weak.Tpo -c -o libhpcrun_o-weak.obj `if test -f 'weak.c'; then $(CYGPATH_W) 'weak.c'; else $(CYGPATH_W) '$(srcdir)/weak.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-weak.Tpo $(DEPDIR)/libhpcrun_o-weak.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='weak.c' object='libhpcrun_o-weak.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-weak.obj `if test -f 'weak.c'; then $(CYGPATH_W) 'weak.c'; else $(CYGPATH_W) '$(srcdir)/weak.c'; fi` libhpcrun_o-write_data.o: write_data.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.o `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-write_data.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-write_data.Tpo -c -o libhpcrun_o-write_data.o `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-write_data.Tpo $(DEPDIR)/libhpcrun_o-write_data.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='write_data.c' object='libhpcrun_o-write_data.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.o `test -f 'write_data.c' || echo '$(srcdir)/'`write_data.c libhpcrun_o-write_data.obj: write_data.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.obj `if test -f 'write_data.c'; then $(CYGPATH_W) 'write_data.c'; else $(CYGPATH_W) '$(srcdir)/write_data.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-write_data.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-write_data.Tpo -c -o libhpcrun_o-write_data.obj `if test -f 'write_data.c'; then $(CYGPATH_W) 'write_data.c'; else $(CYGPATH_W) '$(srcdir)/write_data.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-write_data.Tpo $(DEPDIR)/libhpcrun_o-write_data.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='write_data.c' object='libhpcrun_o-write_data.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-write_data.obj `if test -f 'write_data.c'; then $(CYGPATH_W) 'write_data.c'; else $(CYGPATH_W) '$(srcdir)/write_data.c'; fi` cct/libhpcrun_o-cct_bundle.o: cct/cct_bundle.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.o `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_bundle.o -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo -c -o cct/libhpcrun_o-cct_bundle.o `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_bundle.c' object='cct/libhpcrun_o-cct_bundle.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.o `test -f 'cct/cct_bundle.c' || echo '$(srcdir)/'`cct/cct_bundle.c cct/libhpcrun_o-cct_bundle.obj: cct/cct_bundle.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.obj `if test -f 'cct/cct_bundle.c'; then $(CYGPATH_W) 'cct/cct_bundle.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_bundle.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_bundle.obj -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo -c -o cct/libhpcrun_o-cct_bundle.obj `if test -f 'cct/cct_bundle.c'; then $(CYGPATH_W) 'cct/cct_bundle.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_bundle.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_bundle.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_bundle.c' object='cct/libhpcrun_o-cct_bundle.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_bundle.obj `if test -f 'cct/cct_bundle.c'; then $(CYGPATH_W) 'cct/cct_bundle.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_bundle.c'; fi` cct/libhpcrun_o-cct_ctxt.o: cct/cct_ctxt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.o `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_ctxt.o -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo -c -o cct/libhpcrun_o-cct_ctxt.o `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_ctxt.c' object='cct/libhpcrun_o-cct_ctxt.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.o `test -f 'cct/cct_ctxt.c' || echo '$(srcdir)/'`cct/cct_ctxt.c cct/libhpcrun_o-cct_ctxt.obj: cct/cct_ctxt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.obj `if test -f 'cct/cct_ctxt.c'; then $(CYGPATH_W) 'cct/cct_ctxt.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_ctxt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct_ctxt.obj -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo -c -o cct/libhpcrun_o-cct_ctxt.obj `if test -f 'cct/cct_ctxt.c'; then $(CYGPATH_W) 'cct/cct_ctxt.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_ctxt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Tpo cct/$(DEPDIR)/libhpcrun_o-cct_ctxt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct_ctxt.c' object='cct/libhpcrun_o-cct_ctxt.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct_ctxt.obj `if test -f 'cct/cct_ctxt.c'; then $(CYGPATH_W) 'cct/cct_ctxt.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct_ctxt.c'; fi` cct/libhpcrun_o-cct.o: cct/cct.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.o `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct.o -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct.Tpo -c -o cct/libhpcrun_o-cct.o `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct.Tpo cct/$(DEPDIR)/libhpcrun_o-cct.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct.c' object='cct/libhpcrun_o-cct.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.o `test -f 'cct/cct.c' || echo '$(srcdir)/'`cct/cct.c cct/libhpcrun_o-cct.obj: cct/cct.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.obj `if test -f 'cct/cct.c'; then $(CYGPATH_W) 'cct/cct.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT cct/libhpcrun_o-cct.obj -MD -MP -MF cct/$(DEPDIR)/libhpcrun_o-cct.Tpo -c -o cct/libhpcrun_o-cct.obj `if test -f 'cct/cct.c'; then $(CYGPATH_W) 'cct/cct.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) cct/$(DEPDIR)/libhpcrun_o-cct.Tpo cct/$(DEPDIR)/libhpcrun_o-cct.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct/cct.c' object='cct/libhpcrun_o-cct.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o cct/libhpcrun_o-cct.obj `if test -f 'cct/cct.c'; then $(CYGPATH_W) 'cct/cct.c'; else $(CYGPATH_W) '$(srcdir)/cct/cct.c'; fi` libhpcrun_o-cct2metrics.o: cct2metrics.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.o `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct2metrics.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo -c -o libhpcrun_o-cct2metrics.o `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo $(DEPDIR)/libhpcrun_o-cct2metrics.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct2metrics.c' object='libhpcrun_o-cct2metrics.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.o `test -f 'cct2metrics.c' || echo '$(srcdir)/'`cct2metrics.c libhpcrun_o-cct2metrics.obj: cct2metrics.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.obj `if test -f 'cct2metrics.c'; then $(CYGPATH_W) 'cct2metrics.c'; else $(CYGPATH_W) '$(srcdir)/cct2metrics.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-cct2metrics.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo -c -o libhpcrun_o-cct2metrics.obj `if test -f 'cct2metrics.c'; then $(CYGPATH_W) 'cct2metrics.c'; else $(CYGPATH_W) '$(srcdir)/cct2metrics.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-cct2metrics.Tpo $(DEPDIR)/libhpcrun_o-cct2metrics.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cct2metrics.c' object='libhpcrun_o-cct2metrics.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-cct2metrics.obj `if test -f 'cct2metrics.c'; then $(CYGPATH_W) 'cct2metrics.c'; else $(CYGPATH_W) '$(srcdir)/cct2metrics.c'; fi` trampoline/common/libhpcrun_o-trampoline.o: trampoline/common/trampoline.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.o `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/common/libhpcrun_o-trampoline.o -MD -MP -MF trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo -c -o trampoline/common/libhpcrun_o-trampoline.o `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/common/trampoline.c' object='trampoline/common/libhpcrun_o-trampoline.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.o `test -f 'trampoline/common/trampoline.c' || echo '$(srcdir)/'`trampoline/common/trampoline.c trampoline/common/libhpcrun_o-trampoline.obj: trampoline/common/trampoline.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.obj `if test -f 'trampoline/common/trampoline.c'; then $(CYGPATH_W) 'trampoline/common/trampoline.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/common/trampoline.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/common/libhpcrun_o-trampoline.obj -MD -MP -MF trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo -c -o trampoline/common/libhpcrun_o-trampoline.obj `if test -f 'trampoline/common/trampoline.c'; then $(CYGPATH_W) 'trampoline/common/trampoline.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/common/trampoline.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Tpo trampoline/common/$(DEPDIR)/libhpcrun_o-trampoline.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/common/trampoline.c' object='trampoline/common/libhpcrun_o-trampoline.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/common/libhpcrun_o-trampoline.obj `if test -f 'trampoline/common/trampoline.c'; then $(CYGPATH_W) 'trampoline/common/trampoline.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/common/trampoline.c'; fi` lush/libhpcrun_o-lush-backtrace.o: lush/lush-backtrace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.o `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-backtrace.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo -c -o lush/libhpcrun_o-lush-backtrace.o `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-backtrace.c' object='lush/libhpcrun_o-lush-backtrace.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.o `test -f 'lush/lush-backtrace.c' || echo '$(srcdir)/'`lush/lush-backtrace.c lush/libhpcrun_o-lush-backtrace.obj: lush/lush-backtrace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.obj `if test -f 'lush/lush-backtrace.c'; then $(CYGPATH_W) 'lush/lush-backtrace.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-backtrace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-backtrace.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo -c -o lush/libhpcrun_o-lush-backtrace.obj `if test -f 'lush/lush-backtrace.c'; then $(CYGPATH_W) 'lush/lush-backtrace.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-backtrace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-backtrace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-backtrace.c' object='lush/libhpcrun_o-lush-backtrace.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-backtrace.obj `if test -f 'lush/lush-backtrace.c'; then $(CYGPATH_W) 'lush/lush-backtrace.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-backtrace.c'; fi` lush/libhpcrun_o-lush.o: lush/lush.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.o `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush.Tpo -c -o lush/libhpcrun_o-lush.o `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush.Tpo lush/$(DEPDIR)/libhpcrun_o-lush.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush.c' object='lush/libhpcrun_o-lush.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.o `test -f 'lush/lush.c' || echo '$(srcdir)/'`lush/lush.c lush/libhpcrun_o-lush.obj: lush/lush.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.obj `if test -f 'lush/lush.c'; then $(CYGPATH_W) 'lush/lush.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush.Tpo -c -o lush/libhpcrun_o-lush.obj `if test -f 'lush/lush.c'; then $(CYGPATH_W) 'lush/lush.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush.Tpo lush/$(DEPDIR)/libhpcrun_o-lush.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush.c' object='lush/libhpcrun_o-lush.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush.obj `if test -f 'lush/lush.c'; then $(CYGPATH_W) 'lush/lush.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush.c'; fi` lush/libhpcrun_o-lush-pthread.o: lush/lush-pthread.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.o `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-pthread.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo -c -o lush/libhpcrun_o-lush-pthread.o `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-pthread.c' object='lush/libhpcrun_o-lush-pthread.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.o `test -f 'lush/lush-pthread.c' || echo '$(srcdir)/'`lush/lush-pthread.c lush/libhpcrun_o-lush-pthread.obj: lush/lush-pthread.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.obj `if test -f 'lush/lush-pthread.c'; then $(CYGPATH_W) 'lush/lush-pthread.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-pthread.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-pthread.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo -c -o lush/libhpcrun_o-lush-pthread.obj `if test -f 'lush/lush-pthread.c'; then $(CYGPATH_W) 'lush/lush-pthread.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-pthread.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-pthread.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-pthread.c' object='lush/libhpcrun_o-lush-pthread.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-pthread.obj `if test -f 'lush/lush-pthread.c'; then $(CYGPATH_W) 'lush/lush-pthread.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-pthread.c'; fi` lush/libhpcrun_o-lush-support-rt.o: lush/lush-support-rt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.o `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-support-rt.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo -c -o lush/libhpcrun_o-lush-support-rt.o `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libhpcrun_o-lush-support-rt.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.o `test -f 'lush/lush-support-rt.c' || echo '$(srcdir)/'`lush/lush-support-rt.c lush/libhpcrun_o-lush-support-rt.obj: lush/lush-support-rt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.obj `if test -f 'lush/lush-support-rt.c'; then $(CYGPATH_W) 'lush/lush-support-rt.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-support-rt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lush-support-rt.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo -c -o lush/libhpcrun_o-lush-support-rt.obj `if test -f 'lush/lush-support-rt.c'; then $(CYGPATH_W) 'lush/lush-support-rt.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-support-rt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Tpo lush/$(DEPDIR)/libhpcrun_o-lush-support-rt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lush-support-rt.c' object='lush/libhpcrun_o-lush-support-rt.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lush-support-rt.obj `if test -f 'lush/lush-support-rt.c'; then $(CYGPATH_W) 'lush/lush-support-rt.c'; else $(CYGPATH_W) '$(srcdir)/lush/lush-support-rt.c'; fi` lush/libhpcrun_o-lushi-cb.o: lush/lushi-cb.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.o `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lushi-cb.o -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo -c -o lush/libhpcrun_o-lushi-cb.o `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lushi-cb.c' object='lush/libhpcrun_o-lushi-cb.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.o `test -f 'lush/lushi-cb.c' || echo '$(srcdir)/'`lush/lushi-cb.c lush/libhpcrun_o-lushi-cb.obj: lush/lushi-cb.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.obj `if test -f 'lush/lushi-cb.c'; then $(CYGPATH_W) 'lush/lushi-cb.c'; else $(CYGPATH_W) '$(srcdir)/lush/lushi-cb.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT lush/libhpcrun_o-lushi-cb.obj -MD -MP -MF lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo -c -o lush/libhpcrun_o-lushi-cb.obj `if test -f 'lush/lushi-cb.c'; then $(CYGPATH_W) 'lush/lushi-cb.c'; else $(CYGPATH_W) '$(srcdir)/lush/lushi-cb.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Tpo lush/$(DEPDIR)/libhpcrun_o-lushi-cb.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='lush/lushi-cb.c' object='lush/libhpcrun_o-lushi-cb.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o lush/libhpcrun_o-lushi-cb.obj `if test -f 'lush/lushi-cb.c'; then $(CYGPATH_W) 'lush/lushi-cb.c'; else $(CYGPATH_W) '$(srcdir)/lush/lushi-cb.c'; fi` fnbounds/libhpcrun_o-fnbounds_common.o: fnbounds/fnbounds_common.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.o `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_common.o -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_common.o `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_common.c' object='fnbounds/libhpcrun_o-fnbounds_common.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.o `test -f 'fnbounds/fnbounds_common.c' || echo '$(srcdir)/'`fnbounds/fnbounds_common.c fnbounds/libhpcrun_o-fnbounds_common.obj: fnbounds/fnbounds_common.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.obj `if test -f 'fnbounds/fnbounds_common.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_common.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_common.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_common.obj -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_common.obj `if test -f 'fnbounds/fnbounds_common.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_common.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_common.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_common.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_common.c' object='fnbounds/libhpcrun_o-fnbounds_common.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_common.obj `if test -f 'fnbounds/fnbounds_common.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_common.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_common.c'; fi` memory/libhpcrun_o-mem.o: memory/mem.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.o `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mem.o -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mem.Tpo -c -o memory/libhpcrun_o-mem.o `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mem.Tpo memory/$(DEPDIR)/libhpcrun_o-mem.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mem.c' object='memory/libhpcrun_o-mem.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.o `test -f 'memory/mem.c' || echo '$(srcdir)/'`memory/mem.c memory/libhpcrun_o-mem.obj: memory/mem.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.obj `if test -f 'memory/mem.c'; then $(CYGPATH_W) 'memory/mem.c'; else $(CYGPATH_W) '$(srcdir)/memory/mem.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mem.obj -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mem.Tpo -c -o memory/libhpcrun_o-mem.obj `if test -f 'memory/mem.c'; then $(CYGPATH_W) 'memory/mem.c'; else $(CYGPATH_W) '$(srcdir)/memory/mem.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mem.Tpo memory/$(DEPDIR)/libhpcrun_o-mem.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mem.c' object='memory/libhpcrun_o-mem.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mem.obj `if test -f 'memory/mem.c'; then $(CYGPATH_W) 'memory/mem.c'; else $(CYGPATH_W) '$(srcdir)/memory/mem.c'; fi` memory/libhpcrun_o-mmap.o: memory/mmap.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.o `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mmap.o -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo -c -o memory/libhpcrun_o-mmap.o `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo memory/$(DEPDIR)/libhpcrun_o-mmap.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mmap.c' object='memory/libhpcrun_o-mmap.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.o `test -f 'memory/mmap.c' || echo '$(srcdir)/'`memory/mmap.c memory/libhpcrun_o-mmap.obj: memory/mmap.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.obj `if test -f 'memory/mmap.c'; then $(CYGPATH_W) 'memory/mmap.c'; else $(CYGPATH_W) '$(srcdir)/memory/mmap.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT memory/libhpcrun_o-mmap.obj -MD -MP -MF memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo -c -o memory/libhpcrun_o-mmap.obj `if test -f 'memory/mmap.c'; then $(CYGPATH_W) 'memory/mmap.c'; else $(CYGPATH_W) '$(srcdir)/memory/mmap.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) memory/$(DEPDIR)/libhpcrun_o-mmap.Tpo memory/$(DEPDIR)/libhpcrun_o-mmap.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='memory/mmap.c' object='memory/libhpcrun_o-mmap.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o memory/libhpcrun_o-mmap.obj `if test -f 'memory/mmap.c'; then $(CYGPATH_W) 'memory/mmap.c'; else $(CYGPATH_W) '$(srcdir)/memory/mmap.c'; fi` messages/libhpcrun_o-debug-flag.o: messages/debug-flag.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.o `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-debug-flag.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo -c -o messages/libhpcrun_o-debug-flag.o `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo messages/$(DEPDIR)/libhpcrun_o-debug-flag.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/debug-flag.c' object='messages/libhpcrun_o-debug-flag.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.o `test -f 'messages/debug-flag.c' || echo '$(srcdir)/'`messages/debug-flag.c messages/libhpcrun_o-debug-flag.obj: messages/debug-flag.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.obj `if test -f 'messages/debug-flag.c'; then $(CYGPATH_W) 'messages/debug-flag.c'; else $(CYGPATH_W) '$(srcdir)/messages/debug-flag.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-debug-flag.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo -c -o messages/libhpcrun_o-debug-flag.obj `if test -f 'messages/debug-flag.c'; then $(CYGPATH_W) 'messages/debug-flag.c'; else $(CYGPATH_W) '$(srcdir)/messages/debug-flag.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-debug-flag.Tpo messages/$(DEPDIR)/libhpcrun_o-debug-flag.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/debug-flag.c' object='messages/libhpcrun_o-debug-flag.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-debug-flag.obj `if test -f 'messages/debug-flag.c'; then $(CYGPATH_W) 'messages/debug-flag.c'; else $(CYGPATH_W) '$(srcdir)/messages/debug-flag.c'; fi` messages/libhpcrun_o-messages-sync.o: messages/messages-sync.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.o `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-sync.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo -c -o messages/libhpcrun_o-messages-sync.o `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-sync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-sync.c' object='messages/libhpcrun_o-messages-sync.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.o `test -f 'messages/messages-sync.c' || echo '$(srcdir)/'`messages/messages-sync.c messages/libhpcrun_o-messages-sync.obj: messages/messages-sync.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.obj `if test -f 'messages/messages-sync.c'; then $(CYGPATH_W) 'messages/messages-sync.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-sync.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-sync.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo -c -o messages/libhpcrun_o-messages-sync.obj `if test -f 'messages/messages-sync.c'; then $(CYGPATH_W) 'messages/messages-sync.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-sync.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-sync.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-sync.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-sync.c' object='messages/libhpcrun_o-messages-sync.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-sync.obj `if test -f 'messages/messages-sync.c'; then $(CYGPATH_W) 'messages/messages-sync.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-sync.c'; fi` messages/libhpcrun_o-messages-async.o: messages/messages-async.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.o `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-async.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo -c -o messages/libhpcrun_o-messages-async.o `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-async.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-async.c' object='messages/libhpcrun_o-messages-async.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.o `test -f 'messages/messages-async.c' || echo '$(srcdir)/'`messages/messages-async.c messages/libhpcrun_o-messages-async.obj: messages/messages-async.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.obj `if test -f 'messages/messages-async.c'; then $(CYGPATH_W) 'messages/messages-async.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-async.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-messages-async.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo -c -o messages/libhpcrun_o-messages-async.obj `if test -f 'messages/messages-async.c'; then $(CYGPATH_W) 'messages/messages-async.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-async.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-messages-async.Tpo messages/$(DEPDIR)/libhpcrun_o-messages-async.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/messages-async.c' object='messages/libhpcrun_o-messages-async.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-messages-async.obj `if test -f 'messages/messages-async.c'; then $(CYGPATH_W) 'messages/messages-async.c'; else $(CYGPATH_W) '$(srcdir)/messages/messages-async.c'; fi` messages/libhpcrun_o-fmt.o: messages/fmt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.o `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-fmt.o -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo -c -o messages/libhpcrun_o-fmt.o `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo messages/$(DEPDIR)/libhpcrun_o-fmt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/fmt.c' object='messages/libhpcrun_o-fmt.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.o `test -f 'messages/fmt.c' || echo '$(srcdir)/'`messages/fmt.c messages/libhpcrun_o-fmt.obj: messages/fmt.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.obj `if test -f 'messages/fmt.c'; then $(CYGPATH_W) 'messages/fmt.c'; else $(CYGPATH_W) '$(srcdir)/messages/fmt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT messages/libhpcrun_o-fmt.obj -MD -MP -MF messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo -c -o messages/libhpcrun_o-fmt.obj `if test -f 'messages/fmt.c'; then $(CYGPATH_W) 'messages/fmt.c'; else $(CYGPATH_W) '$(srcdir)/messages/fmt.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) messages/$(DEPDIR)/libhpcrun_o-fmt.Tpo messages/$(DEPDIR)/libhpcrun_o-fmt.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='messages/fmt.c' object='messages/libhpcrun_o-fmt.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o messages/libhpcrun_o-fmt.obj `if test -f 'messages/fmt.c'; then $(CYGPATH_W) 'messages/fmt.c'; else $(CYGPATH_W) '$(srcdir)/messages/fmt.c'; fi` utilities/libhpcrun_o-executable-path.o: utilities/executable-path.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.o `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-executable-path.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo -c -o utilities/libhpcrun_o-executable-path.o `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo utilities/$(DEPDIR)/libhpcrun_o-executable-path.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/executable-path.c' object='utilities/libhpcrun_o-executable-path.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.o `test -f 'utilities/executable-path.c' || echo '$(srcdir)/'`utilities/executable-path.c utilities/libhpcrun_o-executable-path.obj: utilities/executable-path.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.obj `if test -f 'utilities/executable-path.c'; then $(CYGPATH_W) 'utilities/executable-path.c'; else $(CYGPATH_W) '$(srcdir)/utilities/executable-path.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-executable-path.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo -c -o utilities/libhpcrun_o-executable-path.obj `if test -f 'utilities/executable-path.c'; then $(CYGPATH_W) 'utilities/executable-path.c'; else $(CYGPATH_W) '$(srcdir)/utilities/executable-path.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-executable-path.Tpo utilities/$(DEPDIR)/libhpcrun_o-executable-path.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/executable-path.c' object='utilities/libhpcrun_o-executable-path.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-executable-path.obj `if test -f 'utilities/executable-path.c'; then $(CYGPATH_W) 'utilities/executable-path.c'; else $(CYGPATH_W) '$(srcdir)/utilities/executable-path.c'; fi` utilities/libhpcrun_o-ip-normalized.o: utilities/ip-normalized.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.o `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-ip-normalized.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo -c -o utilities/libhpcrun_o-ip-normalized.o `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/ip-normalized.c' object='utilities/libhpcrun_o-ip-normalized.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.o `test -f 'utilities/ip-normalized.c' || echo '$(srcdir)/'`utilities/ip-normalized.c utilities/libhpcrun_o-ip-normalized.obj: utilities/ip-normalized.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.obj `if test -f 'utilities/ip-normalized.c'; then $(CYGPATH_W) 'utilities/ip-normalized.c'; else $(CYGPATH_W) '$(srcdir)/utilities/ip-normalized.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-ip-normalized.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo -c -o utilities/libhpcrun_o-ip-normalized.obj `if test -f 'utilities/ip-normalized.c'; then $(CYGPATH_W) 'utilities/ip-normalized.c'; else $(CYGPATH_W) '$(srcdir)/utilities/ip-normalized.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Tpo utilities/$(DEPDIR)/libhpcrun_o-ip-normalized.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/ip-normalized.c' object='utilities/libhpcrun_o-ip-normalized.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-ip-normalized.obj `if test -f 'utilities/ip-normalized.c'; then $(CYGPATH_W) 'utilities/ip-normalized.c'; else $(CYGPATH_W) '$(srcdir)/utilities/ip-normalized.c'; fi` utilities/libhpcrun_o-tokenize.o: utilities/tokenize.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.o `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-tokenize.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo -c -o utilities/libhpcrun_o-tokenize.o `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo utilities/$(DEPDIR)/libhpcrun_o-tokenize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/tokenize.c' object='utilities/libhpcrun_o-tokenize.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.o `test -f 'utilities/tokenize.c' || echo '$(srcdir)/'`utilities/tokenize.c utilities/libhpcrun_o-tokenize.obj: utilities/tokenize.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.obj `if test -f 'utilities/tokenize.c'; then $(CYGPATH_W) 'utilities/tokenize.c'; else $(CYGPATH_W) '$(srcdir)/utilities/tokenize.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-tokenize.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo -c -o utilities/libhpcrun_o-tokenize.obj `if test -f 'utilities/tokenize.c'; then $(CYGPATH_W) 'utilities/tokenize.c'; else $(CYGPATH_W) '$(srcdir)/utilities/tokenize.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-tokenize.Tpo utilities/$(DEPDIR)/libhpcrun_o-tokenize.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/tokenize.c' object='utilities/libhpcrun_o-tokenize.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-tokenize.obj `if test -f 'utilities/tokenize.c'; then $(CYGPATH_W) 'utilities/tokenize.c'; else $(CYGPATH_W) '$(srcdir)/utilities/tokenize.c'; fi` utilities/libhpcrun_o-unlink.o: utilities/unlink.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.o `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-unlink.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo -c -o utilities/libhpcrun_o-unlink.o `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo utilities/$(DEPDIR)/libhpcrun_o-unlink.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/unlink.c' object='utilities/libhpcrun_o-unlink.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.o `test -f 'utilities/unlink.c' || echo '$(srcdir)/'`utilities/unlink.c utilities/libhpcrun_o-unlink.obj: utilities/unlink.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.obj `if test -f 'utilities/unlink.c'; then $(CYGPATH_W) 'utilities/unlink.c'; else $(CYGPATH_W) '$(srcdir)/utilities/unlink.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-unlink.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo -c -o utilities/libhpcrun_o-unlink.obj `if test -f 'utilities/unlink.c'; then $(CYGPATH_W) 'utilities/unlink.c'; else $(CYGPATH_W) '$(srcdir)/utilities/unlink.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-unlink.Tpo utilities/$(DEPDIR)/libhpcrun_o-unlink.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/unlink.c' object='utilities/libhpcrun_o-unlink.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-unlink.obj `if test -f 'utilities/unlink.c'; then $(CYGPATH_W) 'utilities/unlink.c'; else $(CYGPATH_W) '$(srcdir)/utilities/unlink.c'; fi` fnbounds/libhpcrun_o-fnbounds_static.o: fnbounds/fnbounds_static.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.o `test -f 'fnbounds/fnbounds_static.c' || echo '$(srcdir)/'`fnbounds/fnbounds_static.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_static.o -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_static.o `test -f 'fnbounds/fnbounds_static.c' || echo '$(srcdir)/'`fnbounds/fnbounds_static.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_static.c' object='fnbounds/libhpcrun_o-fnbounds_static.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.o `test -f 'fnbounds/fnbounds_static.c' || echo '$(srcdir)/'`fnbounds/fnbounds_static.c fnbounds/libhpcrun_o-fnbounds_static.obj: fnbounds/fnbounds_static.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.obj `if test -f 'fnbounds/fnbounds_static.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_static.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_static.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT fnbounds/libhpcrun_o-fnbounds_static.obj -MD -MP -MF fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo -c -o fnbounds/libhpcrun_o-fnbounds_static.obj `if test -f 'fnbounds/fnbounds_static.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_static.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_static.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Tpo fnbounds/$(DEPDIR)/libhpcrun_o-fnbounds_static.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='fnbounds/fnbounds_static.c' object='fnbounds/libhpcrun_o-fnbounds_static.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o fnbounds/libhpcrun_o-fnbounds_static.obj `if test -f 'fnbounds/fnbounds_static.c'; then $(CYGPATH_W) 'fnbounds/fnbounds_static.c'; else $(CYGPATH_W) '$(srcdir)/fnbounds/fnbounds_static.c'; fi` libhpcrun_o-custom-init-static.o: custom-init-static.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.o `test -f 'custom-init-static.c' || echo '$(srcdir)/'`custom-init-static.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-custom-init-static.o -MD -MP -MF $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo -c -o libhpcrun_o-custom-init-static.o `test -f 'custom-init-static.c' || echo '$(srcdir)/'`custom-init-static.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo $(DEPDIR)/libhpcrun_o-custom-init-static.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='custom-init-static.c' object='libhpcrun_o-custom-init-static.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.o `test -f 'custom-init-static.c' || echo '$(srcdir)/'`custom-init-static.c libhpcrun_o-custom-init-static.obj: custom-init-static.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.obj `if test -f 'custom-init-static.c'; then $(CYGPATH_W) 'custom-init-static.c'; else $(CYGPATH_W) '$(srcdir)/custom-init-static.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT libhpcrun_o-custom-init-static.obj -MD -MP -MF $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo -c -o libhpcrun_o-custom-init-static.obj `if test -f 'custom-init-static.c'; then $(CYGPATH_W) 'custom-init-static.c'; else $(CYGPATH_W) '$(srcdir)/custom-init-static.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libhpcrun_o-custom-init-static.Tpo $(DEPDIR)/libhpcrun_o-custom-init-static.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='custom-init-static.c' object='libhpcrun_o-custom-init-static.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o libhpcrun_o-custom-init-static.obj `if test -f 'custom-init-static.c'; then $(CYGPATH_W) 'custom-init-static.c'; else $(CYGPATH_W) '$(srcdir)/custom-init-static.c'; fi` unwind/common/libhpcrun_o-default_validation_summary.o: unwind/common/default_validation_summary.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.o `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-default_validation_summary.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo -c -o unwind/common/libhpcrun_o-default_validation_summary.o `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/default_validation_summary.c' object='unwind/common/libhpcrun_o-default_validation_summary.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.o `test -f 'unwind/common/default_validation_summary.c' || echo '$(srcdir)/'`unwind/common/default_validation_summary.c unwind/common/libhpcrun_o-default_validation_summary.obj: unwind/common/default_validation_summary.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.obj `if test -f 'unwind/common/default_validation_summary.c'; then $(CYGPATH_W) 'unwind/common/default_validation_summary.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/default_validation_summary.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-default_validation_summary.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo -c -o unwind/common/libhpcrun_o-default_validation_summary.obj `if test -f 'unwind/common/default_validation_summary.c'; then $(CYGPATH_W) 'unwind/common/default_validation_summary.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/default_validation_summary.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-default_validation_summary.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/default_validation_summary.c' object='unwind/common/libhpcrun_o-default_validation_summary.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-default_validation_summary.obj `if test -f 'unwind/common/default_validation_summary.c'; then $(CYGPATH_W) 'unwind/common/default_validation_summary.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/default_validation_summary.c'; fi` utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o: utilities/arch/ppc64/ppc64-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o -MD -MP -MF utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ppc64/ppc64-context-pc.c' object='utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.o `test -f 'utilities/arch/ppc64/ppc64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ppc64/ppc64-context-pc.c utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj: utilities/arch/ppc64/ppc64-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj `if test -f 'utilities/arch/ppc64/ppc64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ppc64/ppc64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ppc64/ppc64-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj -MD -MP -MF utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj `if test -f 'utilities/arch/ppc64/ppc64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ppc64/ppc64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ppc64/ppc64-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Tpo utilities/arch/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ppc64/ppc64-context-pc.c' object='utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ppc64/libhpcrun_o-ppc64-context-pc.obj `if test -f 'utilities/arch/ppc64/ppc64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ppc64/ppc64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ppc64/ppc64-context-pc.c'; fi` utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o: utilities/arch/x86-family/x86-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o -MD -MP -MF utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/x86-family/x86-context-pc.c' object='utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.o `test -f 'utilities/arch/x86-family/x86-context-pc.c' || echo '$(srcdir)/'`utilities/arch/x86-family/x86-context-pc.c utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj: utilities/arch/x86-family/x86-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj `if test -f 'utilities/arch/x86-family/x86-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/x86-family/x86-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/x86-family/x86-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj -MD -MP -MF utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj `if test -f 'utilities/arch/x86-family/x86-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/x86-family/x86-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/x86-family/x86-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Tpo utilities/arch/x86-family/$(DEPDIR)/libhpcrun_o-x86-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/x86-family/x86-context-pc.c' object='utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/x86-family/libhpcrun_o-x86-context-pc.obj `if test -f 'utilities/arch/x86-family/x86-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/x86-family/x86-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/x86-family/x86-context-pc.c'; fi` utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o: utilities/arch/ia64/ia64-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o -MD -MP -MF utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ia64/ia64-context-pc.c' object='utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.o `test -f 'utilities/arch/ia64/ia64-context-pc.c' || echo '$(srcdir)/'`utilities/arch/ia64/ia64-context-pc.c utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj: utilities/arch/ia64/ia64-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj `if test -f 'utilities/arch/ia64/ia64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ia64/ia64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ia64/ia64-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj -MD -MP -MF utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj `if test -f 'utilities/arch/ia64/ia64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ia64/ia64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ia64/ia64-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Tpo utilities/arch/ia64/$(DEPDIR)/libhpcrun_o-ia64-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/ia64/ia64-context-pc.c' object='utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/ia64/libhpcrun_o-ia64-context-pc.obj `if test -f 'utilities/arch/ia64/ia64-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/ia64/ia64-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/ia64/ia64-context-pc.c'; fi` trampoline/aarch64/libhpcrun_o-aarch64-tramp.o: trampoline/aarch64/aarch64-tramp.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.o `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/aarch64/libhpcrun_o-aarch64-tramp.o -MD -MP -MF trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.o `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/aarch64/aarch64-tramp.c' object='trampoline/aarch64/libhpcrun_o-aarch64-tramp.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.o `test -f 'trampoline/aarch64/aarch64-tramp.c' || echo '$(srcdir)/'`trampoline/aarch64/aarch64-tramp.c trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj: trampoline/aarch64/aarch64-tramp.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj `if test -f 'trampoline/aarch64/aarch64-tramp.c'; then $(CYGPATH_W) 'trampoline/aarch64/aarch64-tramp.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/aarch64/aarch64-tramp.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj -MD -MP -MF trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj `if test -f 'trampoline/aarch64/aarch64-tramp.c'; then $(CYGPATH_W) 'trampoline/aarch64/aarch64-tramp.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/aarch64/aarch64-tramp.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Tpo trampoline/aarch64/$(DEPDIR)/libhpcrun_o-aarch64-tramp.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='trampoline/aarch64/aarch64-tramp.c' object='trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o trampoline/aarch64/libhpcrun_o-aarch64-tramp.obj `if test -f 'trampoline/aarch64/aarch64-tramp.c'; then $(CYGPATH_W) 'trampoline/aarch64/aarch64-tramp.c'; else $(CYGPATH_W) '$(srcdir)/trampoline/aarch64/aarch64-tramp.c'; fi` utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o: utilities/arch/libunwind/libunwind-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o -MD -MP -MF utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/libunwind/libunwind-context-pc.c' object='utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.o `test -f 'utilities/arch/libunwind/libunwind-context-pc.c' || echo '$(srcdir)/'`utilities/arch/libunwind/libunwind-context-pc.c utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj: utilities/arch/libunwind/libunwind-context-pc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj `if test -f 'utilities/arch/libunwind/libunwind-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/libunwind/libunwind-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/libunwind/libunwind-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj -MD -MP -MF utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj `if test -f 'utilities/arch/libunwind/libunwind-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/libunwind/libunwind-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/libunwind/libunwind-context-pc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Tpo utilities/arch/libunwind/$(DEPDIR)/libhpcrun_o-libunwind-context-pc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/arch/libunwind/libunwind-context-pc.c' object='utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/arch/libunwind/libhpcrun_o-libunwind-context-pc.obj `if test -f 'utilities/arch/libunwind/libunwind-context-pc.c'; then $(CYGPATH_W) 'utilities/arch/libunwind/libunwind-context-pc.c'; else $(CYGPATH_W) '$(srcdir)/utilities/arch/libunwind/libunwind-context-pc.c'; fi` sample-sources/libhpcrun_o-papi.o: sample-sources/papi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.o `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo -c -o sample-sources/libhpcrun_o-papi.o `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi.c' object='sample-sources/libhpcrun_o-papi.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.o `test -f 'sample-sources/papi.c' || echo '$(srcdir)/'`sample-sources/papi.c sample-sources/libhpcrun_o-papi.obj: sample-sources/papi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.obj `if test -f 'sample-sources/papi.c'; then $(CYGPATH_W) 'sample-sources/papi.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo -c -o sample-sources/libhpcrun_o-papi.obj `if test -f 'sample-sources/papi.c'; then $(CYGPATH_W) 'sample-sources/papi.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi.c' object='sample-sources/libhpcrun_o-papi.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi.obj `if test -f 'sample-sources/papi.c'; then $(CYGPATH_W) 'sample-sources/papi.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi.c'; fi` sample-sources/libhpcrun_o-papi-c-cupti.o: sample-sources/papi-c-cupti.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.o `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-cupti.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo -c -o sample-sources/libhpcrun_o-papi-c-cupti.o `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-cupti.c' object='sample-sources/libhpcrun_o-papi-c-cupti.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.o `test -f 'sample-sources/papi-c-cupti.c' || echo '$(srcdir)/'`sample-sources/papi-c-cupti.c sample-sources/libhpcrun_o-papi-c-cupti.obj: sample-sources/papi-c-cupti.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.obj `if test -f 'sample-sources/papi-c-cupti.c'; then $(CYGPATH_W) 'sample-sources/papi-c-cupti.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-cupti.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-cupti.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo -c -o sample-sources/libhpcrun_o-papi-c-cupti.obj `if test -f 'sample-sources/papi-c-cupti.c'; then $(CYGPATH_W) 'sample-sources/papi-c-cupti.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-cupti.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-cupti.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-cupti.c' object='sample-sources/libhpcrun_o-papi-c-cupti.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-cupti.obj `if test -f 'sample-sources/papi-c-cupti.c'; then $(CYGPATH_W) 'sample-sources/papi-c-cupti.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-cupti.c'; fi` sample-sources/libhpcrun_o-papi-c.o: sample-sources/papi-c.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.o `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo -c -o sample-sources/libhpcrun_o-papi-c.o `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c.c' object='sample-sources/libhpcrun_o-papi-c.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.o `test -f 'sample-sources/papi-c.c' || echo '$(srcdir)/'`sample-sources/papi-c.c sample-sources/libhpcrun_o-papi-c.obj: sample-sources/papi-c.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.obj `if test -f 'sample-sources/papi-c.c'; then $(CYGPATH_W) 'sample-sources/papi-c.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo -c -o sample-sources/libhpcrun_o-papi-c.obj `if test -f 'sample-sources/papi-c.c'; then $(CYGPATH_W) 'sample-sources/papi-c.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c.c' object='sample-sources/libhpcrun_o-papi-c.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c.obj `if test -f 'sample-sources/papi-c.c'; then $(CYGPATH_W) 'sample-sources/papi-c.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c.c'; fi` sample-sources/libhpcrun_o-papi-c-extended-info.o: sample-sources/papi-c-extended-info.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.o `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-extended-info.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo -c -o sample-sources/libhpcrun_o-papi-c-extended-info.o `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-extended-info.c' object='sample-sources/libhpcrun_o-papi-c-extended-info.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.o `test -f 'sample-sources/papi-c-extended-info.c' || echo '$(srcdir)/'`sample-sources/papi-c-extended-info.c sample-sources/libhpcrun_o-papi-c-extended-info.obj: sample-sources/papi-c-extended-info.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.obj `if test -f 'sample-sources/papi-c-extended-info.c'; then $(CYGPATH_W) 'sample-sources/papi-c-extended-info.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-extended-info.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-papi-c-extended-info.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo -c -o sample-sources/libhpcrun_o-papi-c-extended-info.obj `if test -f 'sample-sources/papi-c-extended-info.c'; then $(CYGPATH_W) 'sample-sources/papi-c-extended-info.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-extended-info.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-papi-c-extended-info.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/papi-c-extended-info.c' object='sample-sources/libhpcrun_o-papi-c-extended-info.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-papi-c-extended-info.obj `if test -f 'sample-sources/papi-c-extended-info.c'; then $(CYGPATH_W) 'sample-sources/papi-c-extended-info.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/papi-c-extended-info.c'; fi` sample-sources/libhpcrun_o-upc.o: sample-sources/upc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.o `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-upc.o -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo -c -o sample-sources/libhpcrun_o-upc.o `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-upc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/upc.c' object='sample-sources/libhpcrun_o-upc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.o `test -f 'sample-sources/upc.c' || echo '$(srcdir)/'`sample-sources/upc.c sample-sources/libhpcrun_o-upc.obj: sample-sources/upc.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.obj `if test -f 'sample-sources/upc.c'; then $(CYGPATH_W) 'sample-sources/upc.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/upc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT sample-sources/libhpcrun_o-upc.obj -MD -MP -MF sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo -c -o sample-sources/libhpcrun_o-upc.obj `if test -f 'sample-sources/upc.c'; then $(CYGPATH_W) 'sample-sources/upc.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/upc.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) sample-sources/$(DEPDIR)/libhpcrun_o-upc.Tpo sample-sources/$(DEPDIR)/libhpcrun_o-upc.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='sample-sources/upc.c' object='sample-sources/libhpcrun_o-upc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o sample-sources/libhpcrun_o-upc.obj `if test -f 'sample-sources/upc.c'; then $(CYGPATH_W) 'sample-sources/upc.c'; else $(CYGPATH_W) '$(srcdir)/sample-sources/upc.c'; fi` unwind/common/libhpcrun_o-backtrace.o: unwind/common/backtrace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.o `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-backtrace.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo -c -o unwind/common/libhpcrun_o-backtrace.o `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/backtrace.c' object='unwind/common/libhpcrun_o-backtrace.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.o `test -f 'unwind/common/backtrace.c' || echo '$(srcdir)/'`unwind/common/backtrace.c unwind/common/libhpcrun_o-backtrace.obj: unwind/common/backtrace.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.obj `if test -f 'unwind/common/backtrace.c'; then $(CYGPATH_W) 'unwind/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/backtrace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-backtrace.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo -c -o unwind/common/libhpcrun_o-backtrace.obj `if test -f 'unwind/common/backtrace.c'; then $(CYGPATH_W) 'unwind/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/backtrace.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-backtrace.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/backtrace.c' object='unwind/common/libhpcrun_o-backtrace.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-backtrace.obj `if test -f 'unwind/common/backtrace.c'; then $(CYGPATH_W) 'unwind/common/backtrace.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/backtrace.c'; fi` unwind/common/libhpcrun_o-unw-throw.o: unwind/common/unw-throw.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.o `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-unw-throw.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo -c -o unwind/common/libhpcrun_o-unw-throw.o `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/unw-throw.c' object='unwind/common/libhpcrun_o-unw-throw.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.o `test -f 'unwind/common/unw-throw.c' || echo '$(srcdir)/'`unwind/common/unw-throw.c unwind/common/libhpcrun_o-unw-throw.obj: unwind/common/unw-throw.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.obj `if test -f 'unwind/common/unw-throw.c'; then $(CYGPATH_W) 'unwind/common/unw-throw.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/unw-throw.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-unw-throw.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo -c -o unwind/common/libhpcrun_o-unw-throw.obj `if test -f 'unwind/common/unw-throw.c'; then $(CYGPATH_W) 'unwind/common/unw-throw.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/unw-throw.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-unw-throw.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/unw-throw.c' object='unwind/common/libhpcrun_o-unw-throw.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-unw-throw.obj `if test -f 'unwind/common/unw-throw.c'; then $(CYGPATH_W) 'unwind/common/unw-throw.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/unw-throw.c'; fi` unwind/common/libhpcrun_o-binarytree_uwi.o: unwind/common/binarytree_uwi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.o `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-binarytree_uwi.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo -c -o unwind/common/libhpcrun_o-binarytree_uwi.o `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/binarytree_uwi.c' object='unwind/common/libhpcrun_o-binarytree_uwi.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.o `test -f 'unwind/common/binarytree_uwi.c' || echo '$(srcdir)/'`unwind/common/binarytree_uwi.c unwind/common/libhpcrun_o-binarytree_uwi.obj: unwind/common/binarytree_uwi.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-binarytree_uwi.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-binarytree_uwi.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/binarytree_uwi.c' object='unwind/common/libhpcrun_o-binarytree_uwi.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-binarytree_uwi.obj `if test -f 'unwind/common/binarytree_uwi.c'; then $(CYGPATH_W) 'unwind/common/binarytree_uwi.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/binarytree_uwi.c'; fi` unwind/common/libhpcrun_o-interval_t.o: unwind/common/interval_t.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-interval_t.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/interval_t.c' object='unwind/common/libhpcrun_o-interval_t.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.o `test -f 'unwind/common/interval_t.c' || echo '$(srcdir)/'`unwind/common/interval_t.c unwind/common/libhpcrun_o-interval_t.obj: unwind/common/interval_t.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.obj `if test -f 'unwind/common/interval_t.c'; then $(CYGPATH_W) 'unwind/common/interval_t.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/interval_t.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-interval_t.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo -c -o unwind/common/libhpcrun_o-interval_t.obj `if test -f 'unwind/common/interval_t.c'; then $(CYGPATH_W) 'unwind/common/interval_t.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/interval_t.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-interval_t.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/interval_t.c' object='unwind/common/libhpcrun_o-interval_t.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-interval_t.obj `if test -f 'unwind/common/interval_t.c'; then $(CYGPATH_W) 'unwind/common/interval_t.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/interval_t.c'; fi` unwind/common/libhpcrun_o-stack_troll.o: unwind/common/stack_troll.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.o `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-stack_troll.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo -c -o unwind/common/libhpcrun_o-stack_troll.o `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/stack_troll.c' object='unwind/common/libhpcrun_o-stack_troll.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.o `test -f 'unwind/common/stack_troll.c' || echo '$(srcdir)/'`unwind/common/stack_troll.c unwind/common/libhpcrun_o-stack_troll.obj: unwind/common/stack_troll.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.obj `if test -f 'unwind/common/stack_troll.c'; then $(CYGPATH_W) 'unwind/common/stack_troll.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/stack_troll.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-stack_troll.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo -c -o unwind/common/libhpcrun_o-stack_troll.obj `if test -f 'unwind/common/stack_troll.c'; then $(CYGPATH_W) 'unwind/common/stack_troll.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/stack_troll.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-stack_troll.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/stack_troll.c' object='unwind/common/libhpcrun_o-stack_troll.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-stack_troll.obj `if test -f 'unwind/common/stack_troll.c'; then $(CYGPATH_W) 'unwind/common/stack_troll.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/stack_troll.c'; fi` unwind/common/libhpcrun_o-uw_recipe_map.o: unwind/common/uw_recipe_map.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.o `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-uw_recipe_map.o -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo -c -o unwind/common/libhpcrun_o-uw_recipe_map.o `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/uw_recipe_map.c' object='unwind/common/libhpcrun_o-uw_recipe_map.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.o `test -f 'unwind/common/uw_recipe_map.c' || echo '$(srcdir)/'`unwind/common/uw_recipe_map.c unwind/common/libhpcrun_o-uw_recipe_map.obj: unwind/common/uw_recipe_map.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.obj `if test -f 'unwind/common/uw_recipe_map.c'; then $(CYGPATH_W) 'unwind/common/uw_recipe_map.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/uw_recipe_map.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/common/libhpcrun_o-uw_recipe_map.obj -MD -MP -MF unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo -c -o unwind/common/libhpcrun_o-uw_recipe_map.obj `if test -f 'unwind/common/uw_recipe_map.c'; then $(CYGPATH_W) 'unwind/common/uw_recipe_map.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/uw_recipe_map.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Tpo unwind/common/$(DEPDIR)/libhpcrun_o-uw_recipe_map.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/common/uw_recipe_map.c' object='unwind/common/libhpcrun_o-uw_recipe_map.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/common/libhpcrun_o-uw_recipe_map.obj `if test -f 'unwind/common/uw_recipe_map.c'; then $(CYGPATH_W) 'unwind/common/uw_recipe_map.c'; else $(CYGPATH_W) '$(srcdir)/unwind/common/uw_recipe_map.c'; fi` unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o: unwind/generic-libunwind/libunw-unwind.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o -MD -MP -MF unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/generic-libunwind/libunw-unwind.c' object='unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.o `test -f 'unwind/generic-libunwind/libunw-unwind.c' || echo '$(srcdir)/'`unwind/generic-libunwind/libunw-unwind.c unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj: unwind/generic-libunwind/libunw-unwind.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj `if test -f 'unwind/generic-libunwind/libunw-unwind.c'; then $(CYGPATH_W) 'unwind/generic-libunwind/libunw-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/generic-libunwind/libunw-unwind.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj -MD -MP -MF unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj `if test -f 'unwind/generic-libunwind/libunw-unwind.c'; then $(CYGPATH_W) 'unwind/generic-libunwind/libunw-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/generic-libunwind/libunw-unwind.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Tpo unwind/generic-libunwind/$(DEPDIR)/libhpcrun_o-libunw-unwind.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/generic-libunwind/libunw-unwind.c' object='unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/generic-libunwind/libhpcrun_o-libunw-unwind.obj `if test -f 'unwind/generic-libunwind/libunw-unwind.c'; then $(CYGPATH_W) 'unwind/generic-libunwind/libunw-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/generic-libunwind/libunw-unwind.c'; fi` unwind/ppc64/libhpcrun_o-ppc64-unwind.o: unwind/ppc64/ppc64-unwind.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.o `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind.o -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.o `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.o `test -f 'unwind/ppc64/ppc64-unwind.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind.c unwind/ppc64/libhpcrun_o-ppc64-unwind.obj: unwind/ppc64/ppc64-unwind.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.obj `if test -f 'unwind/ppc64/ppc64-unwind.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind.obj -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.obj `if test -f 'unwind/ppc64/ppc64-unwind.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind.obj `if test -f 'unwind/ppc64/ppc64-unwind.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind.c'; fi` unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o: unwind/ppc64/ppc64-unwind-interval.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind-interval.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.o `test -f 'unwind/ppc64/ppc64-unwind-interval.c' || echo '$(srcdir)/'`unwind/ppc64/ppc64-unwind-interval.c unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj: unwind/ppc64/ppc64-unwind-interval.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj `if test -f 'unwind/ppc64/ppc64-unwind-interval.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind-interval.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj -MD -MP -MF unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj `if test -f 'unwind/ppc64/ppc64-unwind-interval.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind-interval.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Tpo unwind/ppc64/$(DEPDIR)/libhpcrun_o-ppc64-unwind-interval.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/ppc64/ppc64-unwind-interval.c' object='unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/ppc64/libhpcrun_o-ppc64-unwind-interval.obj `if test -f 'unwind/ppc64/ppc64-unwind-interval.c'; then $(CYGPATH_W) 'unwind/ppc64/ppc64-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/ppc64/ppc64-unwind-interval.c'; fi` unwind/x86-family/libhpcrun_o-x86-all.o: unwind/x86-family/x86-all.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.o `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-all.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-all.o `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-all.c' object='unwind/x86-family/libhpcrun_o-x86-all.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.o `test -f 'unwind/x86-family/x86-all.c' || echo '$(srcdir)/'`unwind/x86-family/x86-all.c unwind/x86-family/libhpcrun_o-x86-all.obj: unwind/x86-family/x86-all.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.obj `if test -f 'unwind/x86-family/x86-all.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-all.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-all.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-all.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-all.obj `if test -f 'unwind/x86-family/x86-all.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-all.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-all.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-all.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-all.c' object='unwind/x86-family/libhpcrun_o-x86-all.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-all.obj `if test -f 'unwind/x86-family/x86-all.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-all.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-all.c'; fi` unwind/x86-family/libhpcrun_o-amd-xop.o: unwind/x86-family/amd-xop.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.o `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-amd-xop.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo -c -o unwind/x86-family/libhpcrun_o-amd-xop.o `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/amd-xop.c' object='unwind/x86-family/libhpcrun_o-amd-xop.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.o `test -f 'unwind/x86-family/amd-xop.c' || echo '$(srcdir)/'`unwind/x86-family/amd-xop.c unwind/x86-family/libhpcrun_o-amd-xop.obj: unwind/x86-family/amd-xop.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.obj `if test -f 'unwind/x86-family/amd-xop.c'; then $(CYGPATH_W) 'unwind/x86-family/amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/amd-xop.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-amd-xop.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo -c -o unwind/x86-family/libhpcrun_o-amd-xop.obj `if test -f 'unwind/x86-family/amd-xop.c'; then $(CYGPATH_W) 'unwind/x86-family/amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/amd-xop.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-amd-xop.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/amd-xop.c' object='unwind/x86-family/libhpcrun_o-amd-xop.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-amd-xop.obj `if test -f 'unwind/x86-family/amd-xop.c'; then $(CYGPATH_W) 'unwind/x86-family/amd-xop.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/amd-xop.c'; fi` unwind/x86-family/libhpcrun_o-x86-cold-path.o: unwind/x86-family/x86-cold-path.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.o `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-cold-path.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.o `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-cold-path.c' object='unwind/x86-family/libhpcrun_o-x86-cold-path.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.o `test -f 'unwind/x86-family/x86-cold-path.c' || echo '$(srcdir)/'`unwind/x86-family/x86-cold-path.c unwind/x86-family/libhpcrun_o-x86-cold-path.obj: unwind/x86-family/x86-cold-path.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.obj `if test -f 'unwind/x86-family/x86-cold-path.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-cold-path.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-cold-path.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-cold-path.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.obj `if test -f 'unwind/x86-family/x86-cold-path.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-cold-path.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-cold-path.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-cold-path.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-cold-path.c' object='unwind/x86-family/libhpcrun_o-x86-cold-path.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-cold-path.obj `if test -f 'unwind/x86-family/x86-cold-path.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-cold-path.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-cold-path.c'; fi` unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o: unwind/x86-family/x86-validate-retn-addr.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-validate-retn-addr.c' object='unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.o `test -f 'unwind/x86-family/x86-validate-retn-addr.c' || echo '$(srcdir)/'`unwind/x86-family/x86-validate-retn-addr.c unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj: unwind/x86-family/x86-validate-retn-addr.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj `if test -f 'unwind/x86-family/x86-validate-retn-addr.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-validate-retn-addr.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-validate-retn-addr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj `if test -f 'unwind/x86-family/x86-validate-retn-addr.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-validate-retn-addr.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-validate-retn-addr.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-validate-retn-addr.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-validate-retn-addr.c' object='unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-validate-retn-addr.obj `if test -f 'unwind/x86-family/x86-validate-retn-addr.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-validate-retn-addr.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-validate-retn-addr.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind-interval.o: unwind/x86-family/x86-unwind-interval.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.o `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.o `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.o `test -f 'unwind/x86-family/x86-unwind-interval.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval.c unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj: unwind/x86-family/x86-unwind-interval.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj `if test -f 'unwind/x86-family/x86-unwind-interval.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj `if test -f 'unwind/x86-family/x86-unwind-interval.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval.obj `if test -f 'unwind/x86-family/x86-unwind-interval.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o: unwind/x86-family/x86-unwind-interval-fixup.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval-fixup.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.o `test -f 'unwind/x86-family/x86-unwind-interval-fixup.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-interval-fixup.c unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj: unwind/x86-family/x86-unwind-interval-fixup.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj `if test -f 'unwind/x86-family/x86-unwind-interval-fixup.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval-fixup.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval-fixup.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj `if test -f 'unwind/x86-family/x86-unwind-interval-fixup.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval-fixup.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval-fixup.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-interval-fixup.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-interval-fixup.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-interval-fixup.obj `if test -f 'unwind/x86-family/x86-unwind-interval-fixup.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-interval-fixup.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-interval-fixup.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind.o: unwind/x86-family/x86-unwind.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.o `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind.o `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind.c' object='unwind/x86-family/libhpcrun_o-x86-unwind.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.o `test -f 'unwind/x86-family/x86-unwind.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind.c unwind/x86-family/libhpcrun_o-x86-unwind.obj: unwind/x86-family/x86-unwind.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.obj `if test -f 'unwind/x86-family/x86-unwind.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind.obj `if test -f 'unwind/x86-family/x86-unwind.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind.c' object='unwind/x86-family/libhpcrun_o-x86-unwind.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind.obj `if test -f 'unwind/x86-family/x86-unwind.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind.c'; fi` unwind/x86-family/libhpcrun_o-x86-unwind-support.o: unwind/x86-family/x86-unwind-support.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.o `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-support.o -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.o `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-support.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-support.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.o `test -f 'unwind/x86-family/x86-unwind-support.c' || echo '$(srcdir)/'`unwind/x86-family/x86-unwind-support.c unwind/x86-family/libhpcrun_o-x86-unwind-support.obj: unwind/x86-family/x86-unwind-support.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.obj `if test -f 'unwind/x86-family/x86-unwind-support.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-support.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-support.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/libhpcrun_o-x86-unwind-support.obj -MD -MP -MF unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.obj `if test -f 'unwind/x86-family/x86-unwind-support.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-support.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-support.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Tpo unwind/x86-family/$(DEPDIR)/libhpcrun_o-x86-unwind-support.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/x86-unwind-support.c' object='unwind/x86-family/libhpcrun_o-x86-unwind-support.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/libhpcrun_o-x86-unwind-support.obj `if test -f 'unwind/x86-family/x86-unwind-support.c'; then $(CYGPATH_W) 'unwind/x86-family/x86-unwind-support.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/x86-unwind-support.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o: unwind/x86-family/manual-intervals/x86-gcc-main64.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-gcc-main64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.o `test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-gcc-main64.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj: unwind/x86-family/manual-intervals/x86-gcc-main64.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-gcc-main64.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-gcc-main64.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-gcc-main64.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-gcc-main64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-gcc-main64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-gcc-main64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-gcc-main64.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o: unwind/x86-family/manual-intervals/x86-linux-dlresolver.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.o `test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-linux-dlresolver.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj: unwind/x86-family/manual-intervals/x86-linux-dlresolver.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj `if test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj `if test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-linux-dlresolver.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-linux-dlresolver.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-linux-dlresolver.obj `if test -f 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-linux-dlresolver.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o: unwind/x86-family/manual-intervals/x86-intel11-f90main.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel11-f90main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.o `test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel11-f90main.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj: unwind/x86-family/manual-intervals/x86-intel11-f90main.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel11-f90main.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel11-f90main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel11-f90main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel11-f90main.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o: unwind/x86-family/manual-intervals/x86-intel-align32.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align32.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align32.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj: unwind/x86-family/manual-intervals/x86-intel-align32.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align32.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align32.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align32.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align32.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align32.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align32.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align32.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o: unwind/x86-family/manual-intervals/x86-intel-align64.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-align64.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj: unwind/x86-family/manual-intervals/x86-intel-align64.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align64.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align64.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-align64.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-align64.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-align64.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-align64.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-align64.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o: unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.o `test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj: unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-intel-composer2013-mic.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-intel-composer2013-mic.obj `if test -f 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-intel-composer2013-mic.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o: unwind/x86-family/manual-intervals/x86-32bit-main.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-main.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj: unwind/x86-family/manual-intervals/x86-32bit-main.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-main.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-main.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-main.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-main.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-main.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-main.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-main.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o: unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.o `test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj: unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-32bit-icc-variant.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-32bit-icc-variant.obj `if test -f 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-32bit-icc-variant.c'; fi` unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o: unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.o `test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' || echo '$(srcdir)/'`unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj: unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj `if test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj -MD -MP -MF unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj `if test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Tpo unwind/x86-family/manual-intervals/$(DEPDIR)/libhpcrun_o-x86-pgi-mp_pexit.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c' object='unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o unwind/x86-family/manual-intervals/libhpcrun_o-x86-pgi-mp_pexit.obj `if test -f 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; then $(CYGPATH_W) 'unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; else $(CYGPATH_W) '$(srcdir)/unwind/x86-family/manual-intervals/x86-pgi-mp_pexit.c'; fi` utilities/libhpcrun_o-last_func.o: utilities/last_func.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.o `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-last_func.o -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo -c -o utilities/libhpcrun_o-last_func.o `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-last_func.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/last_func.c' object='utilities/libhpcrun_o-last_func.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.o `test -f 'utilities/last_func.c' || echo '$(srcdir)/'`utilities/last_func.c utilities/libhpcrun_o-last_func.obj: utilities/last_func.c - $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.obj `if test -f 'utilities/last_func.c'; then $(CYGPATH_W) 'utilities/last_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/last_func.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -MT utilities/libhpcrun_o-last_func.obj -MD -MP -MF utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo -c -o utilities/libhpcrun_o-last_func.obj `if test -f 'utilities/last_func.c'; then $(CYGPATH_W) 'utilities/last_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/last_func.c'; fi` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) utilities/$(DEPDIR)/libhpcrun_o-last_func.Tpo utilities/$(DEPDIR)/libhpcrun_o-last_func.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='utilities/last_func.c' object='utilities/libhpcrun_o-last_func.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libhpcrun_o_CPPFLAGS) $(CPPFLAGS) $(libhpcrun_o_CFLAGS) $(CFLAGS) -c -o utilities/libhpcrun_o-last_func.obj `if test -f 'utilities/last_func.c'; then $(CYGPATH_W) 'utilities/last_func.c'; else $(CYGPATH_W) '$(srcdir)/utilities/last_func.c'; fi` .s.o: $(AM_V_CCAS)$(CCASCOMPILE) -c -o $@ $< @@ -3859,32 +5765,59 @@ distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f ./$(am__dirstamp) + -rm -f cct/$(DEPDIR)/$(am__dirstamp) -rm -f cct/$(am__dirstamp) + -rm -f fnbounds/$(DEPDIR)/$(am__dirstamp) -rm -f fnbounds/$(am__dirstamp) + -rm -f lush-agents/$(DEPDIR)/$(am__dirstamp) -rm -f lush-agents/$(am__dirstamp) + -rm -f lush/$(DEPDIR)/$(am__dirstamp) -rm -f lush/$(am__dirstamp) + -rm -f memory/$(DEPDIR)/$(am__dirstamp) -rm -f memory/$(am__dirstamp) + -rm -f messages/$(DEPDIR)/$(am__dirstamp) -rm -f messages/$(am__dirstamp) + -rm -f monitor-exts/$(DEPDIR)/$(am__dirstamp) -rm -f monitor-exts/$(am__dirstamp) + -rm -f os/linux/$(DEPDIR)/$(am__dirstamp) -rm -f os/linux/$(am__dirstamp) + -rm -f plugins/$(DEPDIR)/$(am__dirstamp) -rm -f plugins/$(am__dirstamp) + -rm -f sample-sources/$(DEPDIR)/$(am__dirstamp) -rm -f sample-sources/$(am__dirstamp) + -rm -f sample-sources/blame-shift/$(DEPDIR)/$(am__dirstamp) -rm -f sample-sources/blame-shift/$(am__dirstamp) + -rm -f trampoline/aarch64/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/aarch64/$(am__dirstamp) + -rm -f trampoline/common/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/common/$(am__dirstamp) + -rm -f trampoline/ia64/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/ia64/$(am__dirstamp) + -rm -f trampoline/ppc64/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/ppc64/$(am__dirstamp) + -rm -f trampoline/x86-family/$(DEPDIR)/$(am__dirstamp) -rm -f trampoline/x86-family/$(am__dirstamp) + -rm -f unwind/common/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/common/$(am__dirstamp) + -rm -f unwind/generic-libunwind/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/generic-libunwind/$(am__dirstamp) + -rm -f unwind/ppc64/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/ppc64/$(am__dirstamp) + -rm -f unwind/x86-family/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/x86-family/$(am__dirstamp) + -rm -f unwind/x86-family/manual-intervals/$(DEPDIR)/$(am__dirstamp) -rm -f unwind/x86-family/manual-intervals/$(am__dirstamp) + -rm -f utilities/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/$(am__dirstamp) + -rm -f utilities/arch/ia64/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/ia64/$(am__dirstamp) + -rm -f utilities/arch/libunwind/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/libunwind/$(am__dirstamp) + -rm -f utilities/arch/ppc64/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/ppc64/$(am__dirstamp) + -rm -f utilities/arch/x86-family/$(DEPDIR)/$(am__dirstamp) -rm -f utilities/arch/x86-family/$(am__dirstamp) + -test -z "$(DEPDIR)/$(am__dirstamp)" || rm -f $(DEPDIR)/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @@ -3898,6 +5831,7 @@ clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \ clean-pkglibexecPROGRAMS mostlyclean-am distclean: distclean-recursive + -rm -rf ./$(DEPDIR) cct/$(DEPDIR) fnbounds/$(DEPDIR) lush-agents/$(DEPDIR) lush/$(DEPDIR) memory/$(DEPDIR) messages/$(DEPDIR) monitor-exts/$(DEPDIR) os/linux/$(DEPDIR) plugins/$(DEPDIR) sample-sources/$(DEPDIR) sample-sources/blame-shift/$(DEPDIR) trampoline/aarch64/$(DEPDIR) trampoline/common/$(DEPDIR) trampoline/x86-family/$(DEPDIR) unwind/common/$(DEPDIR) unwind/generic-libunwind/$(DEPDIR) unwind/ppc64/$(DEPDIR) unwind/x86-family/$(DEPDIR) unwind/x86-family/manual-intervals/$(DEPDIR) utilities/$(DEPDIR) utilities/arch/ia64/$(DEPDIR) utilities/arch/libunwind/$(DEPDIR) utilities/arch/ppc64/$(DEPDIR) utilities/arch/x86-family/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -3947,6 +5881,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive + -rm -rf ./$(DEPDIR) cct/$(DEPDIR) fnbounds/$(DEPDIR) lush-agents/$(DEPDIR) lush/$(DEPDIR) memory/$(DEPDIR) messages/$(DEPDIR) monitor-exts/$(DEPDIR) os/linux/$(DEPDIR) plugins/$(DEPDIR) sample-sources/$(DEPDIR) sample-sources/blame-shift/$(DEPDIR) trampoline/aarch64/$(DEPDIR) trampoline/common/$(DEPDIR) trampoline/x86-family/$(DEPDIR) unwind/common/$(DEPDIR) unwind/generic-libunwind/$(DEPDIR) unwind/ppc64/$(DEPDIR) unwind/x86-family/$(DEPDIR) unwind/x86-family/manual-intervals/$(DEPDIR) utilities/$(DEPDIR) utilities/arch/ia64/$(DEPDIR) utilities/arch/libunwind/$(DEPDIR) utilities/arch/ppc64/$(DEPDIR) utilities/arch/x86-family/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in b/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in index f4bc5e9e70..13543db3de 100644 --- a/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in +++ b/src/tool/hpcrun/utilities/bgq-cnk/Makefile.in @@ -127,8 +127,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ @@ -173,7 +174,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ @@ -421,9 +422,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__confi exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu --ignore-deps src/tool/hpcrun/utilities/bgq-cnk/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/tool/hpcrun/utilities/bgq-cnk/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --gnu --ignore-deps src/tool/hpcrun/utilities/bgq-cnk/Makefile + $(AUTOMAKE) --gnu src/tool/hpcrun/utilities/bgq-cnk/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -462,14 +463,28 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hardware-thread-id.Plo@am__quote@ + .c.o: - $(AM_V_CC)$(COMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: - $(AM_V_CC)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: - $(AM_V_CC)$(LTCOMPILE) -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo @@ -599,6 +614,7 @@ clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -644,6 +660,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcserver/Makefile.in b/src/tool/hpcserver/Makefile.in index e0d432fede..4705fa811c 100644 --- a/src/tool/hpcserver/Makefile.in +++ b/src/tool/hpcserver/Makefile.in @@ -177,8 +177,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -223,7 +224,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -554,9 +555,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcserver/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/Makefile + $(AUTOMAKE) --foreign src/tool/hpcserver/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -635,116 +636,282 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-BaseDataFile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-Communication-SingleThreaded.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DBOpener.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DataCompressionLayer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DataOutputFileStream.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-DataSocketStream.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-FilteredBaseData.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-LargeByteBuffer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-MergeDataFiles.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-ProcessTimeline.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-ProgressBar.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-Server.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-SpaceTimeDataController.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-TraceDataByRank.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-VersatileMemoryPage.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcserver-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcserver-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Args.o -MD -MP -MF $(DEPDIR)/hpcserver-Args.Tpo -c -o hpcserver-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Args.Tpo $(DEPDIR)/hpcserver-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcserver-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcserver-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Args.obj -MD -MP -MF $(DEPDIR)/hpcserver-Args.Tpo -c -o hpcserver-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Args.Tpo $(DEPDIR)/hpcserver-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcserver-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` hpcserver-BaseDataFile.o: BaseDataFile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.o `test -f 'BaseDataFile.cpp' || echo '$(srcdir)/'`BaseDataFile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-BaseDataFile.o -MD -MP -MF $(DEPDIR)/hpcserver-BaseDataFile.Tpo -c -o hpcserver-BaseDataFile.o `test -f 'BaseDataFile.cpp' || echo '$(srcdir)/'`BaseDataFile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-BaseDataFile.Tpo $(DEPDIR)/hpcserver-BaseDataFile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BaseDataFile.cpp' object='hpcserver-BaseDataFile.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.o `test -f 'BaseDataFile.cpp' || echo '$(srcdir)/'`BaseDataFile.cpp hpcserver-BaseDataFile.obj: BaseDataFile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.obj `if test -f 'BaseDataFile.cpp'; then $(CYGPATH_W) 'BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/BaseDataFile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-BaseDataFile.obj -MD -MP -MF $(DEPDIR)/hpcserver-BaseDataFile.Tpo -c -o hpcserver-BaseDataFile.obj `if test -f 'BaseDataFile.cpp'; then $(CYGPATH_W) 'BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/BaseDataFile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-BaseDataFile.Tpo $(DEPDIR)/hpcserver-BaseDataFile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='BaseDataFile.cpp' object='hpcserver-BaseDataFile.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-BaseDataFile.obj `if test -f 'BaseDataFile.cpp'; then $(CYGPATH_W) 'BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/BaseDataFile.cpp'; fi` hpcserver-Communication-SingleThreaded.o: Communication-SingleThreaded.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.o `test -f 'Communication-SingleThreaded.cpp' || echo '$(srcdir)/'`Communication-SingleThreaded.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Communication-SingleThreaded.o -MD -MP -MF $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo -c -o hpcserver-Communication-SingleThreaded.o `test -f 'Communication-SingleThreaded.cpp' || echo '$(srcdir)/'`Communication-SingleThreaded.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo $(DEPDIR)/hpcserver-Communication-SingleThreaded.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Communication-SingleThreaded.cpp' object='hpcserver-Communication-SingleThreaded.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.o `test -f 'Communication-SingleThreaded.cpp' || echo '$(srcdir)/'`Communication-SingleThreaded.cpp hpcserver-Communication-SingleThreaded.obj: Communication-SingleThreaded.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.obj `if test -f 'Communication-SingleThreaded.cpp'; then $(CYGPATH_W) 'Communication-SingleThreaded.cpp'; else $(CYGPATH_W) '$(srcdir)/Communication-SingleThreaded.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Communication-SingleThreaded.obj -MD -MP -MF $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo -c -o hpcserver-Communication-SingleThreaded.obj `if test -f 'Communication-SingleThreaded.cpp'; then $(CYGPATH_W) 'Communication-SingleThreaded.cpp'; else $(CYGPATH_W) '$(srcdir)/Communication-SingleThreaded.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Communication-SingleThreaded.Tpo $(DEPDIR)/hpcserver-Communication-SingleThreaded.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Communication-SingleThreaded.cpp' object='hpcserver-Communication-SingleThreaded.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Communication-SingleThreaded.obj `if test -f 'Communication-SingleThreaded.cpp'; then $(CYGPATH_W) 'Communication-SingleThreaded.cpp'; else $(CYGPATH_W) '$(srcdir)/Communication-SingleThreaded.cpp'; fi` hpcserver-DataCompressionLayer.o: DataCompressionLayer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.o `test -f 'DataCompressionLayer.cpp' || echo '$(srcdir)/'`DataCompressionLayer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataCompressionLayer.o -MD -MP -MF $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo -c -o hpcserver-DataCompressionLayer.o `test -f 'DataCompressionLayer.cpp' || echo '$(srcdir)/'`DataCompressionLayer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo $(DEPDIR)/hpcserver-DataCompressionLayer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataCompressionLayer.cpp' object='hpcserver-DataCompressionLayer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.o `test -f 'DataCompressionLayer.cpp' || echo '$(srcdir)/'`DataCompressionLayer.cpp hpcserver-DataCompressionLayer.obj: DataCompressionLayer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.obj `if test -f 'DataCompressionLayer.cpp'; then $(CYGPATH_W) 'DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/DataCompressionLayer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataCompressionLayer.obj -MD -MP -MF $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo -c -o hpcserver-DataCompressionLayer.obj `if test -f 'DataCompressionLayer.cpp'; then $(CYGPATH_W) 'DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/DataCompressionLayer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataCompressionLayer.Tpo $(DEPDIR)/hpcserver-DataCompressionLayer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataCompressionLayer.cpp' object='hpcserver-DataCompressionLayer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataCompressionLayer.obj `if test -f 'DataCompressionLayer.cpp'; then $(CYGPATH_W) 'DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/DataCompressionLayer.cpp'; fi` hpcserver-DataOutputFileStream.o: DataOutputFileStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.o `test -f 'DataOutputFileStream.cpp' || echo '$(srcdir)/'`DataOutputFileStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataOutputFileStream.o -MD -MP -MF $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo -c -o hpcserver-DataOutputFileStream.o `test -f 'DataOutputFileStream.cpp' || echo '$(srcdir)/'`DataOutputFileStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo $(DEPDIR)/hpcserver-DataOutputFileStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataOutputFileStream.cpp' object='hpcserver-DataOutputFileStream.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.o `test -f 'DataOutputFileStream.cpp' || echo '$(srcdir)/'`DataOutputFileStream.cpp hpcserver-DataOutputFileStream.obj: DataOutputFileStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.obj `if test -f 'DataOutputFileStream.cpp'; then $(CYGPATH_W) 'DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataOutputFileStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataOutputFileStream.obj -MD -MP -MF $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo -c -o hpcserver-DataOutputFileStream.obj `if test -f 'DataOutputFileStream.cpp'; then $(CYGPATH_W) 'DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataOutputFileStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataOutputFileStream.Tpo $(DEPDIR)/hpcserver-DataOutputFileStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataOutputFileStream.cpp' object='hpcserver-DataOutputFileStream.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataOutputFileStream.obj `if test -f 'DataOutputFileStream.cpp'; then $(CYGPATH_W) 'DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataOutputFileStream.cpp'; fi` hpcserver-DataSocketStream.o: DataSocketStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.o `test -f 'DataSocketStream.cpp' || echo '$(srcdir)/'`DataSocketStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataSocketStream.o -MD -MP -MF $(DEPDIR)/hpcserver-DataSocketStream.Tpo -c -o hpcserver-DataSocketStream.o `test -f 'DataSocketStream.cpp' || echo '$(srcdir)/'`DataSocketStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataSocketStream.Tpo $(DEPDIR)/hpcserver-DataSocketStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataSocketStream.cpp' object='hpcserver-DataSocketStream.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.o `test -f 'DataSocketStream.cpp' || echo '$(srcdir)/'`DataSocketStream.cpp hpcserver-DataSocketStream.obj: DataSocketStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.obj `if test -f 'DataSocketStream.cpp'; then $(CYGPATH_W) 'DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataSocketStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DataSocketStream.obj -MD -MP -MF $(DEPDIR)/hpcserver-DataSocketStream.Tpo -c -o hpcserver-DataSocketStream.obj `if test -f 'DataSocketStream.cpp'; then $(CYGPATH_W) 'DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataSocketStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DataSocketStream.Tpo $(DEPDIR)/hpcserver-DataSocketStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DataSocketStream.cpp' object='hpcserver-DataSocketStream.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DataSocketStream.obj `if test -f 'DataSocketStream.cpp'; then $(CYGPATH_W) 'DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/DataSocketStream.cpp'; fi` hpcserver-DBOpener.o: DBOpener.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.o `test -f 'DBOpener.cpp' || echo '$(srcdir)/'`DBOpener.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DBOpener.o -MD -MP -MF $(DEPDIR)/hpcserver-DBOpener.Tpo -c -o hpcserver-DBOpener.o `test -f 'DBOpener.cpp' || echo '$(srcdir)/'`DBOpener.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DBOpener.Tpo $(DEPDIR)/hpcserver-DBOpener.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBOpener.cpp' object='hpcserver-DBOpener.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.o `test -f 'DBOpener.cpp' || echo '$(srcdir)/'`DBOpener.cpp hpcserver-DBOpener.obj: DBOpener.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.obj `if test -f 'DBOpener.cpp'; then $(CYGPATH_W) 'DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/DBOpener.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-DBOpener.obj -MD -MP -MF $(DEPDIR)/hpcserver-DBOpener.Tpo -c -o hpcserver-DBOpener.obj `if test -f 'DBOpener.cpp'; then $(CYGPATH_W) 'DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/DBOpener.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-DBOpener.Tpo $(DEPDIR)/hpcserver-DBOpener.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DBOpener.cpp' object='hpcserver-DBOpener.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-DBOpener.obj `if test -f 'DBOpener.cpp'; then $(CYGPATH_W) 'DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/DBOpener.cpp'; fi` hpcserver-FilteredBaseData.o: FilteredBaseData.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.o `test -f 'FilteredBaseData.cpp' || echo '$(srcdir)/'`FilteredBaseData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-FilteredBaseData.o -MD -MP -MF $(DEPDIR)/hpcserver-FilteredBaseData.Tpo -c -o hpcserver-FilteredBaseData.o `test -f 'FilteredBaseData.cpp' || echo '$(srcdir)/'`FilteredBaseData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-FilteredBaseData.Tpo $(DEPDIR)/hpcserver-FilteredBaseData.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FilteredBaseData.cpp' object='hpcserver-FilteredBaseData.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.o `test -f 'FilteredBaseData.cpp' || echo '$(srcdir)/'`FilteredBaseData.cpp hpcserver-FilteredBaseData.obj: FilteredBaseData.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.obj `if test -f 'FilteredBaseData.cpp'; then $(CYGPATH_W) 'FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/FilteredBaseData.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-FilteredBaseData.obj -MD -MP -MF $(DEPDIR)/hpcserver-FilteredBaseData.Tpo -c -o hpcserver-FilteredBaseData.obj `if test -f 'FilteredBaseData.cpp'; then $(CYGPATH_W) 'FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/FilteredBaseData.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-FilteredBaseData.Tpo $(DEPDIR)/hpcserver-FilteredBaseData.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='FilteredBaseData.cpp' object='hpcserver-FilteredBaseData.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-FilteredBaseData.obj `if test -f 'FilteredBaseData.cpp'; then $(CYGPATH_W) 'FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/FilteredBaseData.cpp'; fi` hpcserver-LargeByteBuffer.o: LargeByteBuffer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.o `test -f 'LargeByteBuffer.cpp' || echo '$(srcdir)/'`LargeByteBuffer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-LargeByteBuffer.o -MD -MP -MF $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo -c -o hpcserver-LargeByteBuffer.o `test -f 'LargeByteBuffer.cpp' || echo '$(srcdir)/'`LargeByteBuffer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo $(DEPDIR)/hpcserver-LargeByteBuffer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LargeByteBuffer.cpp' object='hpcserver-LargeByteBuffer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.o `test -f 'LargeByteBuffer.cpp' || echo '$(srcdir)/'`LargeByteBuffer.cpp hpcserver-LargeByteBuffer.obj: LargeByteBuffer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.obj `if test -f 'LargeByteBuffer.cpp'; then $(CYGPATH_W) 'LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/LargeByteBuffer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-LargeByteBuffer.obj -MD -MP -MF $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo -c -o hpcserver-LargeByteBuffer.obj `if test -f 'LargeByteBuffer.cpp'; then $(CYGPATH_W) 'LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/LargeByteBuffer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-LargeByteBuffer.Tpo $(DEPDIR)/hpcserver-LargeByteBuffer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='LargeByteBuffer.cpp' object='hpcserver-LargeByteBuffer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-LargeByteBuffer.obj `if test -f 'LargeByteBuffer.cpp'; then $(CYGPATH_W) 'LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/LargeByteBuffer.cpp'; fi` hpcserver-MergeDataFiles.o: MergeDataFiles.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.o `test -f 'MergeDataFiles.cpp' || echo '$(srcdir)/'`MergeDataFiles.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-MergeDataFiles.o -MD -MP -MF $(DEPDIR)/hpcserver-MergeDataFiles.Tpo -c -o hpcserver-MergeDataFiles.o `test -f 'MergeDataFiles.cpp' || echo '$(srcdir)/'`MergeDataFiles.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-MergeDataFiles.Tpo $(DEPDIR)/hpcserver-MergeDataFiles.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MergeDataFiles.cpp' object='hpcserver-MergeDataFiles.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.o `test -f 'MergeDataFiles.cpp' || echo '$(srcdir)/'`MergeDataFiles.cpp hpcserver-MergeDataFiles.obj: MergeDataFiles.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.obj `if test -f 'MergeDataFiles.cpp'; then $(CYGPATH_W) 'MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/MergeDataFiles.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-MergeDataFiles.obj -MD -MP -MF $(DEPDIR)/hpcserver-MergeDataFiles.Tpo -c -o hpcserver-MergeDataFiles.obj `if test -f 'MergeDataFiles.cpp'; then $(CYGPATH_W) 'MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/MergeDataFiles.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-MergeDataFiles.Tpo $(DEPDIR)/hpcserver-MergeDataFiles.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='MergeDataFiles.cpp' object='hpcserver-MergeDataFiles.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-MergeDataFiles.obj `if test -f 'MergeDataFiles.cpp'; then $(CYGPATH_W) 'MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/MergeDataFiles.cpp'; fi` hpcserver-ProcessTimeline.o: ProcessTimeline.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.o `test -f 'ProcessTimeline.cpp' || echo '$(srcdir)/'`ProcessTimeline.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProcessTimeline.o -MD -MP -MF $(DEPDIR)/hpcserver-ProcessTimeline.Tpo -c -o hpcserver-ProcessTimeline.o `test -f 'ProcessTimeline.cpp' || echo '$(srcdir)/'`ProcessTimeline.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProcessTimeline.Tpo $(DEPDIR)/hpcserver-ProcessTimeline.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProcessTimeline.cpp' object='hpcserver-ProcessTimeline.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.o `test -f 'ProcessTimeline.cpp' || echo '$(srcdir)/'`ProcessTimeline.cpp hpcserver-ProcessTimeline.obj: ProcessTimeline.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.obj `if test -f 'ProcessTimeline.cpp'; then $(CYGPATH_W) 'ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/ProcessTimeline.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProcessTimeline.obj -MD -MP -MF $(DEPDIR)/hpcserver-ProcessTimeline.Tpo -c -o hpcserver-ProcessTimeline.obj `if test -f 'ProcessTimeline.cpp'; then $(CYGPATH_W) 'ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/ProcessTimeline.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProcessTimeline.Tpo $(DEPDIR)/hpcserver-ProcessTimeline.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProcessTimeline.cpp' object='hpcserver-ProcessTimeline.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProcessTimeline.obj `if test -f 'ProcessTimeline.cpp'; then $(CYGPATH_W) 'ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/ProcessTimeline.cpp'; fi` hpcserver-ProgressBar.o: ProgressBar.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.o `test -f 'ProgressBar.cpp' || echo '$(srcdir)/'`ProgressBar.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProgressBar.o -MD -MP -MF $(DEPDIR)/hpcserver-ProgressBar.Tpo -c -o hpcserver-ProgressBar.o `test -f 'ProgressBar.cpp' || echo '$(srcdir)/'`ProgressBar.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProgressBar.Tpo $(DEPDIR)/hpcserver-ProgressBar.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProgressBar.cpp' object='hpcserver-ProgressBar.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.o `test -f 'ProgressBar.cpp' || echo '$(srcdir)/'`ProgressBar.cpp hpcserver-ProgressBar.obj: ProgressBar.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.obj `if test -f 'ProgressBar.cpp'; then $(CYGPATH_W) 'ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/ProgressBar.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-ProgressBar.obj -MD -MP -MF $(DEPDIR)/hpcserver-ProgressBar.Tpo -c -o hpcserver-ProgressBar.obj `if test -f 'ProgressBar.cpp'; then $(CYGPATH_W) 'ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/ProgressBar.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-ProgressBar.Tpo $(DEPDIR)/hpcserver-ProgressBar.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProgressBar.cpp' object='hpcserver-ProgressBar.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-ProgressBar.obj `if test -f 'ProgressBar.cpp'; then $(CYGPATH_W) 'ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/ProgressBar.cpp'; fi` hpcserver-Server.o: Server.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Server.o -MD -MP -MF $(DEPDIR)/hpcserver-Server.Tpo -c -o hpcserver-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Server.Tpo $(DEPDIR)/hpcserver-Server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Server.cpp' object='hpcserver-Server.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.o `test -f 'Server.cpp' || echo '$(srcdir)/'`Server.cpp hpcserver-Server.obj: Server.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-Server.obj -MD -MP -MF $(DEPDIR)/hpcserver-Server.Tpo -c -o hpcserver-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-Server.Tpo $(DEPDIR)/hpcserver-Server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Server.cpp' object='hpcserver-Server.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-Server.obj `if test -f 'Server.cpp'; then $(CYGPATH_W) 'Server.cpp'; else $(CYGPATH_W) '$(srcdir)/Server.cpp'; fi` hpcserver-SpaceTimeDataController.o: SpaceTimeDataController.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.o `test -f 'SpaceTimeDataController.cpp' || echo '$(srcdir)/'`SpaceTimeDataController.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-SpaceTimeDataController.o -MD -MP -MF $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo -c -o hpcserver-SpaceTimeDataController.o `test -f 'SpaceTimeDataController.cpp' || echo '$(srcdir)/'`SpaceTimeDataController.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo $(DEPDIR)/hpcserver-SpaceTimeDataController.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SpaceTimeDataController.cpp' object='hpcserver-SpaceTimeDataController.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.o `test -f 'SpaceTimeDataController.cpp' || echo '$(srcdir)/'`SpaceTimeDataController.cpp hpcserver-SpaceTimeDataController.obj: SpaceTimeDataController.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.obj `if test -f 'SpaceTimeDataController.cpp'; then $(CYGPATH_W) 'SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/SpaceTimeDataController.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-SpaceTimeDataController.obj -MD -MP -MF $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo -c -o hpcserver-SpaceTimeDataController.obj `if test -f 'SpaceTimeDataController.cpp'; then $(CYGPATH_W) 'SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/SpaceTimeDataController.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-SpaceTimeDataController.Tpo $(DEPDIR)/hpcserver-SpaceTimeDataController.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SpaceTimeDataController.cpp' object='hpcserver-SpaceTimeDataController.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-SpaceTimeDataController.obj `if test -f 'SpaceTimeDataController.cpp'; then $(CYGPATH_W) 'SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/SpaceTimeDataController.cpp'; fi` hpcserver-TraceDataByRank.o: TraceDataByRank.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.o `test -f 'TraceDataByRank.cpp' || echo '$(srcdir)/'`TraceDataByRank.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-TraceDataByRank.o -MD -MP -MF $(DEPDIR)/hpcserver-TraceDataByRank.Tpo -c -o hpcserver-TraceDataByRank.o `test -f 'TraceDataByRank.cpp' || echo '$(srcdir)/'`TraceDataByRank.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-TraceDataByRank.Tpo $(DEPDIR)/hpcserver-TraceDataByRank.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TraceDataByRank.cpp' object='hpcserver-TraceDataByRank.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.o `test -f 'TraceDataByRank.cpp' || echo '$(srcdir)/'`TraceDataByRank.cpp hpcserver-TraceDataByRank.obj: TraceDataByRank.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.obj `if test -f 'TraceDataByRank.cpp'; then $(CYGPATH_W) 'TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/TraceDataByRank.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-TraceDataByRank.obj -MD -MP -MF $(DEPDIR)/hpcserver-TraceDataByRank.Tpo -c -o hpcserver-TraceDataByRank.obj `if test -f 'TraceDataByRank.cpp'; then $(CYGPATH_W) 'TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/TraceDataByRank.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-TraceDataByRank.Tpo $(DEPDIR)/hpcserver-TraceDataByRank.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='TraceDataByRank.cpp' object='hpcserver-TraceDataByRank.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-TraceDataByRank.obj `if test -f 'TraceDataByRank.cpp'; then $(CYGPATH_W) 'TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/TraceDataByRank.cpp'; fi` hpcserver-VersatileMemoryPage.o: VersatileMemoryPage.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.o `test -f 'VersatileMemoryPage.cpp' || echo '$(srcdir)/'`VersatileMemoryPage.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-VersatileMemoryPage.o -MD -MP -MF $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo -c -o hpcserver-VersatileMemoryPage.o `test -f 'VersatileMemoryPage.cpp' || echo '$(srcdir)/'`VersatileMemoryPage.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo $(DEPDIR)/hpcserver-VersatileMemoryPage.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='VersatileMemoryPage.cpp' object='hpcserver-VersatileMemoryPage.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.o `test -f 'VersatileMemoryPage.cpp' || echo '$(srcdir)/'`VersatileMemoryPage.cpp hpcserver-VersatileMemoryPage.obj: VersatileMemoryPage.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.obj `if test -f 'VersatileMemoryPage.cpp'; then $(CYGPATH_W) 'VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/VersatileMemoryPage.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-VersatileMemoryPage.obj -MD -MP -MF $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo -c -o hpcserver-VersatileMemoryPage.obj `if test -f 'VersatileMemoryPage.cpp'; then $(CYGPATH_W) 'VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/VersatileMemoryPage.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-VersatileMemoryPage.Tpo $(DEPDIR)/hpcserver-VersatileMemoryPage.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='VersatileMemoryPage.cpp' object='hpcserver-VersatileMemoryPage.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-VersatileMemoryPage.obj `if test -f 'VersatileMemoryPage.cpp'; then $(CYGPATH_W) 'VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/VersatileMemoryPage.cpp'; fi` hpcserver-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-main.o -MD -MP -MF $(DEPDIR)/hpcserver-main.Tpo -c -o hpcserver-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-main.Tpo $(DEPDIR)/hpcserver-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcserver-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcserver-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -MT hpcserver-main.obj -MD -MP -MF $(DEPDIR)/hpcserver-main.Tpo -c -o hpcserver-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcserver-main.Tpo $(DEPDIR)/hpcserver-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcserver-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_CXXFLAGS) $(CXXFLAGS) -c -o hpcserver-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -877,6 +1044,7 @@ clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -922,6 +1090,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcserver/mpi/Makefile.in b/src/tool/hpcserver/mpi/Makefile.in index cf3b8cae5c..6223922438 100644 --- a/src/tool/hpcserver/mpi/Makefile.in +++ b/src/tool/hpcserver/mpi/Makefile.in @@ -181,8 +181,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -227,7 +228,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -559,9 +560,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/mpi/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcserver/mpi/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcserver/mpi/Makefile + $(AUTOMAKE) --foreign src/tool/hpcserver/mpi/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -632,25 +633,45 @@ clean-binPROGRAMS: ../$(am__dirstamp): @$(MKDIR_P) .. @: > ../$(am__dirstamp) -../hpcserver_mpi-Args.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-BaseDataFile.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-Communication-MPI.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-DataCompressionLayer.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-DBOpener.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-DataOutputFileStream.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-DataSocketStream.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-FilteredBaseData.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-LargeByteBuffer.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-MergeDataFiles.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-ProcessTimeline.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-ProgressBar.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-Server.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-Slave.$(OBJEXT): ../$(am__dirstamp) +../$(DEPDIR)/$(am__dirstamp): + @$(MKDIR_P) ../$(DEPDIR) + @: > ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-Args.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-BaseDataFile.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-Communication-MPI.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-DataCompressionLayer.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-DBOpener.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-DataOutputFileStream.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-DataSocketStream.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-FilteredBaseData.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-LargeByteBuffer.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-MergeDataFiles.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-ProcessTimeline.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-ProgressBar.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-Server.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-Slave.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) ../hpcserver_mpi-SpaceTimeDataController.$(OBJEXT): \ - ../$(am__dirstamp) -../hpcserver_mpi-TraceDataByRank.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-VersatileMemoryPage.$(OBJEXT): ../$(am__dirstamp) -../hpcserver_mpi-main.$(OBJEXT): ../$(am__dirstamp) + ../$(am__dirstamp) ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-TraceDataByRank.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-VersatileMemoryPage.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) +../hpcserver_mpi-main.$(OBJEXT): ../$(am__dirstamp) \ + ../$(DEPDIR)/$(am__dirstamp) hpcserver-mpi$(EXEEXT): $(hpcserver_mpi_OBJECTS) $(hpcserver_mpi_DEPENDENCIES) $(EXTRA_hpcserver_mpi_DEPENDENCIES) @rm -f hpcserver-mpi$(EXEEXT) @@ -663,122 +684,300 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DBOpener.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-ProgressBar.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Server.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-Slave.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@../$(DEPDIR)/hpcserver_mpi-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ +@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ +@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ +@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< ../hpcserver_mpi-Args.o: ../Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.o `test -f '../Args.cpp' || echo '$(srcdir)/'`../Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Args.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Args.Tpo -c -o ../hpcserver_mpi-Args.o `test -f '../Args.cpp' || echo '$(srcdir)/'`../Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Args.Tpo ../$(DEPDIR)/hpcserver_mpi-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Args.cpp' object='../hpcserver_mpi-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.o `test -f '../Args.cpp' || echo '$(srcdir)/'`../Args.cpp ../hpcserver_mpi-Args.obj: ../Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.obj `if test -f '../Args.cpp'; then $(CYGPATH_W) '../Args.cpp'; else $(CYGPATH_W) '$(srcdir)/../Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Args.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Args.Tpo -c -o ../hpcserver_mpi-Args.obj `if test -f '../Args.cpp'; then $(CYGPATH_W) '../Args.cpp'; else $(CYGPATH_W) '$(srcdir)/../Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Args.Tpo ../$(DEPDIR)/hpcserver_mpi-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Args.cpp' object='../hpcserver_mpi-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Args.obj `if test -f '../Args.cpp'; then $(CYGPATH_W) '../Args.cpp'; else $(CYGPATH_W) '$(srcdir)/../Args.cpp'; fi` ../hpcserver_mpi-BaseDataFile.o: ../BaseDataFile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.o `test -f '../BaseDataFile.cpp' || echo '$(srcdir)/'`../BaseDataFile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-BaseDataFile.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo -c -o ../hpcserver_mpi-BaseDataFile.o `test -f '../BaseDataFile.cpp' || echo '$(srcdir)/'`../BaseDataFile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../BaseDataFile.cpp' object='../hpcserver_mpi-BaseDataFile.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.o `test -f '../BaseDataFile.cpp' || echo '$(srcdir)/'`../BaseDataFile.cpp ../hpcserver_mpi-BaseDataFile.obj: ../BaseDataFile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.obj `if test -f '../BaseDataFile.cpp'; then $(CYGPATH_W) '../BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/../BaseDataFile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-BaseDataFile.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo -c -o ../hpcserver_mpi-BaseDataFile.obj `if test -f '../BaseDataFile.cpp'; then $(CYGPATH_W) '../BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/../BaseDataFile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Tpo ../$(DEPDIR)/hpcserver_mpi-BaseDataFile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../BaseDataFile.cpp' object='../hpcserver_mpi-BaseDataFile.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-BaseDataFile.obj `if test -f '../BaseDataFile.cpp'; then $(CYGPATH_W) '../BaseDataFile.cpp'; else $(CYGPATH_W) '$(srcdir)/../BaseDataFile.cpp'; fi` ../hpcserver_mpi-Communication-MPI.o: ../Communication-MPI.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.o `test -f '../Communication-MPI.cpp' || echo '$(srcdir)/'`../Communication-MPI.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Communication-MPI.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo -c -o ../hpcserver_mpi-Communication-MPI.o `test -f '../Communication-MPI.cpp' || echo '$(srcdir)/'`../Communication-MPI.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Communication-MPI.cpp' object='../hpcserver_mpi-Communication-MPI.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.o `test -f '../Communication-MPI.cpp' || echo '$(srcdir)/'`../Communication-MPI.cpp ../hpcserver_mpi-Communication-MPI.obj: ../Communication-MPI.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.obj `if test -f '../Communication-MPI.cpp'; then $(CYGPATH_W) '../Communication-MPI.cpp'; else $(CYGPATH_W) '$(srcdir)/../Communication-MPI.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Communication-MPI.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo -c -o ../hpcserver_mpi-Communication-MPI.obj `if test -f '../Communication-MPI.cpp'; then $(CYGPATH_W) '../Communication-MPI.cpp'; else $(CYGPATH_W) '$(srcdir)/../Communication-MPI.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Tpo ../$(DEPDIR)/hpcserver_mpi-Communication-MPI.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Communication-MPI.cpp' object='../hpcserver_mpi-Communication-MPI.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Communication-MPI.obj `if test -f '../Communication-MPI.cpp'; then $(CYGPATH_W) '../Communication-MPI.cpp'; else $(CYGPATH_W) '$(srcdir)/../Communication-MPI.cpp'; fi` ../hpcserver_mpi-DataCompressionLayer.o: ../DataCompressionLayer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.o `test -f '../DataCompressionLayer.cpp' || echo '$(srcdir)/'`../DataCompressionLayer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataCompressionLayer.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo -c -o ../hpcserver_mpi-DataCompressionLayer.o `test -f '../DataCompressionLayer.cpp' || echo '$(srcdir)/'`../DataCompressionLayer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataCompressionLayer.cpp' object='../hpcserver_mpi-DataCompressionLayer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.o `test -f '../DataCompressionLayer.cpp' || echo '$(srcdir)/'`../DataCompressionLayer.cpp ../hpcserver_mpi-DataCompressionLayer.obj: ../DataCompressionLayer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.obj `if test -f '../DataCompressionLayer.cpp'; then $(CYGPATH_W) '../DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataCompressionLayer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataCompressionLayer.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo -c -o ../hpcserver_mpi-DataCompressionLayer.obj `if test -f '../DataCompressionLayer.cpp'; then $(CYGPATH_W) '../DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataCompressionLayer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Tpo ../$(DEPDIR)/hpcserver_mpi-DataCompressionLayer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataCompressionLayer.cpp' object='../hpcserver_mpi-DataCompressionLayer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataCompressionLayer.obj `if test -f '../DataCompressionLayer.cpp'; then $(CYGPATH_W) '../DataCompressionLayer.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataCompressionLayer.cpp'; fi` ../hpcserver_mpi-DBOpener.o: ../DBOpener.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.o `test -f '../DBOpener.cpp' || echo '$(srcdir)/'`../DBOpener.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DBOpener.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo -c -o ../hpcserver_mpi-DBOpener.o `test -f '../DBOpener.cpp' || echo '$(srcdir)/'`../DBOpener.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo ../$(DEPDIR)/hpcserver_mpi-DBOpener.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DBOpener.cpp' object='../hpcserver_mpi-DBOpener.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.o `test -f '../DBOpener.cpp' || echo '$(srcdir)/'`../DBOpener.cpp ../hpcserver_mpi-DBOpener.obj: ../DBOpener.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.obj `if test -f '../DBOpener.cpp'; then $(CYGPATH_W) '../DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/../DBOpener.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DBOpener.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo -c -o ../hpcserver_mpi-DBOpener.obj `if test -f '../DBOpener.cpp'; then $(CYGPATH_W) '../DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/../DBOpener.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DBOpener.Tpo ../$(DEPDIR)/hpcserver_mpi-DBOpener.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DBOpener.cpp' object='../hpcserver_mpi-DBOpener.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DBOpener.obj `if test -f '../DBOpener.cpp'; then $(CYGPATH_W) '../DBOpener.cpp'; else $(CYGPATH_W) '$(srcdir)/../DBOpener.cpp'; fi` ../hpcserver_mpi-DataOutputFileStream.o: ../DataOutputFileStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.o `test -f '../DataOutputFileStream.cpp' || echo '$(srcdir)/'`../DataOutputFileStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataOutputFileStream.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo -c -o ../hpcserver_mpi-DataOutputFileStream.o `test -f '../DataOutputFileStream.cpp' || echo '$(srcdir)/'`../DataOutputFileStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataOutputFileStream.cpp' object='../hpcserver_mpi-DataOutputFileStream.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.o `test -f '../DataOutputFileStream.cpp' || echo '$(srcdir)/'`../DataOutputFileStream.cpp ../hpcserver_mpi-DataOutputFileStream.obj: ../DataOutputFileStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.obj `if test -f '../DataOutputFileStream.cpp'; then $(CYGPATH_W) '../DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataOutputFileStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataOutputFileStream.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo -c -o ../hpcserver_mpi-DataOutputFileStream.obj `if test -f '../DataOutputFileStream.cpp'; then $(CYGPATH_W) '../DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataOutputFileStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataOutputFileStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataOutputFileStream.cpp' object='../hpcserver_mpi-DataOutputFileStream.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataOutputFileStream.obj `if test -f '../DataOutputFileStream.cpp'; then $(CYGPATH_W) '../DataOutputFileStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataOutputFileStream.cpp'; fi` ../hpcserver_mpi-DataSocketStream.o: ../DataSocketStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.o `test -f '../DataSocketStream.cpp' || echo '$(srcdir)/'`../DataSocketStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataSocketStream.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo -c -o ../hpcserver_mpi-DataSocketStream.o `test -f '../DataSocketStream.cpp' || echo '$(srcdir)/'`../DataSocketStream.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataSocketStream.cpp' object='../hpcserver_mpi-DataSocketStream.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.o `test -f '../DataSocketStream.cpp' || echo '$(srcdir)/'`../DataSocketStream.cpp ../hpcserver_mpi-DataSocketStream.obj: ../DataSocketStream.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.obj `if test -f '../DataSocketStream.cpp'; then $(CYGPATH_W) '../DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataSocketStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-DataSocketStream.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo -c -o ../hpcserver_mpi-DataSocketStream.obj `if test -f '../DataSocketStream.cpp'; then $(CYGPATH_W) '../DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataSocketStream.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Tpo ../$(DEPDIR)/hpcserver_mpi-DataSocketStream.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../DataSocketStream.cpp' object='../hpcserver_mpi-DataSocketStream.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-DataSocketStream.obj `if test -f '../DataSocketStream.cpp'; then $(CYGPATH_W) '../DataSocketStream.cpp'; else $(CYGPATH_W) '$(srcdir)/../DataSocketStream.cpp'; fi` ../hpcserver_mpi-FilteredBaseData.o: ../FilteredBaseData.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.o `test -f '../FilteredBaseData.cpp' || echo '$(srcdir)/'`../FilteredBaseData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-FilteredBaseData.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo -c -o ../hpcserver_mpi-FilteredBaseData.o `test -f '../FilteredBaseData.cpp' || echo '$(srcdir)/'`../FilteredBaseData.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../FilteredBaseData.cpp' object='../hpcserver_mpi-FilteredBaseData.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.o `test -f '../FilteredBaseData.cpp' || echo '$(srcdir)/'`../FilteredBaseData.cpp ../hpcserver_mpi-FilteredBaseData.obj: ../FilteredBaseData.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.obj `if test -f '../FilteredBaseData.cpp'; then $(CYGPATH_W) '../FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/../FilteredBaseData.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-FilteredBaseData.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo -c -o ../hpcserver_mpi-FilteredBaseData.obj `if test -f '../FilteredBaseData.cpp'; then $(CYGPATH_W) '../FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/../FilteredBaseData.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Tpo ../$(DEPDIR)/hpcserver_mpi-FilteredBaseData.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../FilteredBaseData.cpp' object='../hpcserver_mpi-FilteredBaseData.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-FilteredBaseData.obj `if test -f '../FilteredBaseData.cpp'; then $(CYGPATH_W) '../FilteredBaseData.cpp'; else $(CYGPATH_W) '$(srcdir)/../FilteredBaseData.cpp'; fi` ../hpcserver_mpi-LargeByteBuffer.o: ../LargeByteBuffer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.o `test -f '../LargeByteBuffer.cpp' || echo '$(srcdir)/'`../LargeByteBuffer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-LargeByteBuffer.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo -c -o ../hpcserver_mpi-LargeByteBuffer.o `test -f '../LargeByteBuffer.cpp' || echo '$(srcdir)/'`../LargeByteBuffer.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../LargeByteBuffer.cpp' object='../hpcserver_mpi-LargeByteBuffer.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.o `test -f '../LargeByteBuffer.cpp' || echo '$(srcdir)/'`../LargeByteBuffer.cpp ../hpcserver_mpi-LargeByteBuffer.obj: ../LargeByteBuffer.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.obj `if test -f '../LargeByteBuffer.cpp'; then $(CYGPATH_W) '../LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../LargeByteBuffer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-LargeByteBuffer.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo -c -o ../hpcserver_mpi-LargeByteBuffer.obj `if test -f '../LargeByteBuffer.cpp'; then $(CYGPATH_W) '../LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../LargeByteBuffer.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Tpo ../$(DEPDIR)/hpcserver_mpi-LargeByteBuffer.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../LargeByteBuffer.cpp' object='../hpcserver_mpi-LargeByteBuffer.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-LargeByteBuffer.obj `if test -f '../LargeByteBuffer.cpp'; then $(CYGPATH_W) '../LargeByteBuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/../LargeByteBuffer.cpp'; fi` ../hpcserver_mpi-MergeDataFiles.o: ../MergeDataFiles.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.o `test -f '../MergeDataFiles.cpp' || echo '$(srcdir)/'`../MergeDataFiles.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-MergeDataFiles.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo -c -o ../hpcserver_mpi-MergeDataFiles.o `test -f '../MergeDataFiles.cpp' || echo '$(srcdir)/'`../MergeDataFiles.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../MergeDataFiles.cpp' object='../hpcserver_mpi-MergeDataFiles.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.o `test -f '../MergeDataFiles.cpp' || echo '$(srcdir)/'`../MergeDataFiles.cpp ../hpcserver_mpi-MergeDataFiles.obj: ../MergeDataFiles.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.obj `if test -f '../MergeDataFiles.cpp'; then $(CYGPATH_W) '../MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../MergeDataFiles.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-MergeDataFiles.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo -c -o ../hpcserver_mpi-MergeDataFiles.obj `if test -f '../MergeDataFiles.cpp'; then $(CYGPATH_W) '../MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../MergeDataFiles.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Tpo ../$(DEPDIR)/hpcserver_mpi-MergeDataFiles.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../MergeDataFiles.cpp' object='../hpcserver_mpi-MergeDataFiles.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-MergeDataFiles.obj `if test -f '../MergeDataFiles.cpp'; then $(CYGPATH_W) '../MergeDataFiles.cpp'; else $(CYGPATH_W) '$(srcdir)/../MergeDataFiles.cpp'; fi` ../hpcserver_mpi-ProcessTimeline.o: ../ProcessTimeline.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.o `test -f '../ProcessTimeline.cpp' || echo '$(srcdir)/'`../ProcessTimeline.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProcessTimeline.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo -c -o ../hpcserver_mpi-ProcessTimeline.o `test -f '../ProcessTimeline.cpp' || echo '$(srcdir)/'`../ProcessTimeline.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProcessTimeline.cpp' object='../hpcserver_mpi-ProcessTimeline.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.o `test -f '../ProcessTimeline.cpp' || echo '$(srcdir)/'`../ProcessTimeline.cpp ../hpcserver_mpi-ProcessTimeline.obj: ../ProcessTimeline.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.obj `if test -f '../ProcessTimeline.cpp'; then $(CYGPATH_W) '../ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProcessTimeline.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProcessTimeline.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo -c -o ../hpcserver_mpi-ProcessTimeline.obj `if test -f '../ProcessTimeline.cpp'; then $(CYGPATH_W) '../ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProcessTimeline.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Tpo ../$(DEPDIR)/hpcserver_mpi-ProcessTimeline.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProcessTimeline.cpp' object='../hpcserver_mpi-ProcessTimeline.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProcessTimeline.obj `if test -f '../ProcessTimeline.cpp'; then $(CYGPATH_W) '../ProcessTimeline.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProcessTimeline.cpp'; fi` ../hpcserver_mpi-ProgressBar.o: ../ProgressBar.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.o `test -f '../ProgressBar.cpp' || echo '$(srcdir)/'`../ProgressBar.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProgressBar.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo -c -o ../hpcserver_mpi-ProgressBar.o `test -f '../ProgressBar.cpp' || echo '$(srcdir)/'`../ProgressBar.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProgressBar.cpp' object='../hpcserver_mpi-ProgressBar.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.o `test -f '../ProgressBar.cpp' || echo '$(srcdir)/'`../ProgressBar.cpp ../hpcserver_mpi-ProgressBar.obj: ../ProgressBar.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.obj `if test -f '../ProgressBar.cpp'; then $(CYGPATH_W) '../ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProgressBar.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-ProgressBar.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo -c -o ../hpcserver_mpi-ProgressBar.obj `if test -f '../ProgressBar.cpp'; then $(CYGPATH_W) '../ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProgressBar.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Tpo ../$(DEPDIR)/hpcserver_mpi-ProgressBar.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../ProgressBar.cpp' object='../hpcserver_mpi-ProgressBar.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-ProgressBar.obj `if test -f '../ProgressBar.cpp'; then $(CYGPATH_W) '../ProgressBar.cpp'; else $(CYGPATH_W) '$(srcdir)/../ProgressBar.cpp'; fi` ../hpcserver_mpi-Server.o: ../Server.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.o `test -f '../Server.cpp' || echo '$(srcdir)/'`../Server.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Server.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Server.Tpo -c -o ../hpcserver_mpi-Server.o `test -f '../Server.cpp' || echo '$(srcdir)/'`../Server.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Server.Tpo ../$(DEPDIR)/hpcserver_mpi-Server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Server.cpp' object='../hpcserver_mpi-Server.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.o `test -f '../Server.cpp' || echo '$(srcdir)/'`../Server.cpp ../hpcserver_mpi-Server.obj: ../Server.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.obj `if test -f '../Server.cpp'; then $(CYGPATH_W) '../Server.cpp'; else $(CYGPATH_W) '$(srcdir)/../Server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Server.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Server.Tpo -c -o ../hpcserver_mpi-Server.obj `if test -f '../Server.cpp'; then $(CYGPATH_W) '../Server.cpp'; else $(CYGPATH_W) '$(srcdir)/../Server.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Server.Tpo ../$(DEPDIR)/hpcserver_mpi-Server.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Server.cpp' object='../hpcserver_mpi-Server.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Server.obj `if test -f '../Server.cpp'; then $(CYGPATH_W) '../Server.cpp'; else $(CYGPATH_W) '$(srcdir)/../Server.cpp'; fi` ../hpcserver_mpi-Slave.o: ../Slave.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.o `test -f '../Slave.cpp' || echo '$(srcdir)/'`../Slave.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Slave.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo -c -o ../hpcserver_mpi-Slave.o `test -f '../Slave.cpp' || echo '$(srcdir)/'`../Slave.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo ../$(DEPDIR)/hpcserver_mpi-Slave.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Slave.cpp' object='../hpcserver_mpi-Slave.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.o `test -f '../Slave.cpp' || echo '$(srcdir)/'`../Slave.cpp ../hpcserver_mpi-Slave.obj: ../Slave.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.obj `if test -f '../Slave.cpp'; then $(CYGPATH_W) '../Slave.cpp'; else $(CYGPATH_W) '$(srcdir)/../Slave.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-Slave.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo -c -o ../hpcserver_mpi-Slave.obj `if test -f '../Slave.cpp'; then $(CYGPATH_W) '../Slave.cpp'; else $(CYGPATH_W) '$(srcdir)/../Slave.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-Slave.Tpo ../$(DEPDIR)/hpcserver_mpi-Slave.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../Slave.cpp' object='../hpcserver_mpi-Slave.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-Slave.obj `if test -f '../Slave.cpp'; then $(CYGPATH_W) '../Slave.cpp'; else $(CYGPATH_W) '$(srcdir)/../Slave.cpp'; fi` ../hpcserver_mpi-SpaceTimeDataController.o: ../SpaceTimeDataController.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.o `test -f '../SpaceTimeDataController.cpp' || echo '$(srcdir)/'`../SpaceTimeDataController.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-SpaceTimeDataController.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo -c -o ../hpcserver_mpi-SpaceTimeDataController.o `test -f '../SpaceTimeDataController.cpp' || echo '$(srcdir)/'`../SpaceTimeDataController.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../SpaceTimeDataController.cpp' object='../hpcserver_mpi-SpaceTimeDataController.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.o `test -f '../SpaceTimeDataController.cpp' || echo '$(srcdir)/'`../SpaceTimeDataController.cpp ../hpcserver_mpi-SpaceTimeDataController.obj: ../SpaceTimeDataController.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.obj `if test -f '../SpaceTimeDataController.cpp'; then $(CYGPATH_W) '../SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/../SpaceTimeDataController.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-SpaceTimeDataController.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo -c -o ../hpcserver_mpi-SpaceTimeDataController.obj `if test -f '../SpaceTimeDataController.cpp'; then $(CYGPATH_W) '../SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/../SpaceTimeDataController.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Tpo ../$(DEPDIR)/hpcserver_mpi-SpaceTimeDataController.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../SpaceTimeDataController.cpp' object='../hpcserver_mpi-SpaceTimeDataController.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-SpaceTimeDataController.obj `if test -f '../SpaceTimeDataController.cpp'; then $(CYGPATH_W) '../SpaceTimeDataController.cpp'; else $(CYGPATH_W) '$(srcdir)/../SpaceTimeDataController.cpp'; fi` ../hpcserver_mpi-TraceDataByRank.o: ../TraceDataByRank.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.o `test -f '../TraceDataByRank.cpp' || echo '$(srcdir)/'`../TraceDataByRank.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-TraceDataByRank.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo -c -o ../hpcserver_mpi-TraceDataByRank.o `test -f '../TraceDataByRank.cpp' || echo '$(srcdir)/'`../TraceDataByRank.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../TraceDataByRank.cpp' object='../hpcserver_mpi-TraceDataByRank.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.o `test -f '../TraceDataByRank.cpp' || echo '$(srcdir)/'`../TraceDataByRank.cpp ../hpcserver_mpi-TraceDataByRank.obj: ../TraceDataByRank.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.obj `if test -f '../TraceDataByRank.cpp'; then $(CYGPATH_W) '../TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/../TraceDataByRank.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-TraceDataByRank.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo -c -o ../hpcserver_mpi-TraceDataByRank.obj `if test -f '../TraceDataByRank.cpp'; then $(CYGPATH_W) '../TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/../TraceDataByRank.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Tpo ../$(DEPDIR)/hpcserver_mpi-TraceDataByRank.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../TraceDataByRank.cpp' object='../hpcserver_mpi-TraceDataByRank.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-TraceDataByRank.obj `if test -f '../TraceDataByRank.cpp'; then $(CYGPATH_W) '../TraceDataByRank.cpp'; else $(CYGPATH_W) '$(srcdir)/../TraceDataByRank.cpp'; fi` ../hpcserver_mpi-VersatileMemoryPage.o: ../VersatileMemoryPage.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.o `test -f '../VersatileMemoryPage.cpp' || echo '$(srcdir)/'`../VersatileMemoryPage.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-VersatileMemoryPage.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo -c -o ../hpcserver_mpi-VersatileMemoryPage.o `test -f '../VersatileMemoryPage.cpp' || echo '$(srcdir)/'`../VersatileMemoryPage.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../VersatileMemoryPage.cpp' object='../hpcserver_mpi-VersatileMemoryPage.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.o `test -f '../VersatileMemoryPage.cpp' || echo '$(srcdir)/'`../VersatileMemoryPage.cpp ../hpcserver_mpi-VersatileMemoryPage.obj: ../VersatileMemoryPage.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.obj `if test -f '../VersatileMemoryPage.cpp'; then $(CYGPATH_W) '../VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/../VersatileMemoryPage.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-VersatileMemoryPage.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo -c -o ../hpcserver_mpi-VersatileMemoryPage.obj `if test -f '../VersatileMemoryPage.cpp'; then $(CYGPATH_W) '../VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/../VersatileMemoryPage.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Tpo ../$(DEPDIR)/hpcserver_mpi-VersatileMemoryPage.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../VersatileMemoryPage.cpp' object='../hpcserver_mpi-VersatileMemoryPage.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-VersatileMemoryPage.obj `if test -f '../VersatileMemoryPage.cpp'; then $(CYGPATH_W) '../VersatileMemoryPage.cpp'; else $(CYGPATH_W) '$(srcdir)/../VersatileMemoryPage.cpp'; fi` ../hpcserver_mpi-main.o: ../main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.o `test -f '../main.cpp' || echo '$(srcdir)/'`../main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-main.o -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-main.Tpo -c -o ../hpcserver_mpi-main.o `test -f '../main.cpp' || echo '$(srcdir)/'`../main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-main.Tpo ../$(DEPDIR)/hpcserver_mpi-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../main.cpp' object='../hpcserver_mpi-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.o `test -f '../main.cpp' || echo '$(srcdir)/'`../main.cpp ../hpcserver_mpi-main.obj: ../main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.obj `if test -f '../main.cpp'; then $(CYGPATH_W) '../main.cpp'; else $(CYGPATH_W) '$(srcdir)/../main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -MT ../hpcserver_mpi-main.obj -MD -MP -MF ../$(DEPDIR)/hpcserver_mpi-main.Tpo -c -o ../hpcserver_mpi-main.obj `if test -f '../main.cpp'; then $(CYGPATH_W) '../main.cpp'; else $(CYGPATH_W) '$(srcdir)/../main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) ../$(DEPDIR)/hpcserver_mpi-main.Tpo ../$(DEPDIR)/hpcserver_mpi-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='../main.cpp' object='../hpcserver_mpi-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcserver_mpi_CXXFLAGS) $(CXXFLAGS) -c -o ../hpcserver_mpi-main.obj `if test -f '../main.cpp'; then $(CYGPATH_W) '../main.cpp'; else $(CYGPATH_W) '$(srcdir)/../main.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -902,6 +1101,7 @@ clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) + -rm -f ../$(DEPDIR)/$(am__dirstamp) -rm -f ../$(am__dirstamp) maintainer-clean-generic: @@ -912,6 +1112,7 @@ clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am + -rm -rf ../$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -957,6 +1158,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ../$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/hpcstruct/Makefile.in b/src/tool/hpcstruct/Makefile.in index 1b0b7c1fd8..45e734bb25 100644 --- a/src/tool/hpcstruct/Makefile.in +++ b/src/tool/hpcstruct/Makefile.in @@ -209,8 +209,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -274,6 +275,7 @@ am__define_uniq_tagged_files = \ ETAGS = etags CTAGS = ctags am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/hpcstruct.in \ + $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules @@ -602,9 +604,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcstruct/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/hpcstruct/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/hpcstruct/Makefile + $(AUTOMAKE) --foreign src/tool/hpcstruct/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -720,26 +722,57 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcstruct_bin-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hpcstruct_bin-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< hpcstruct_bin-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-main.o -MD -MP -MF $(DEPDIR)/hpcstruct_bin-main.Tpo -c -o hpcstruct_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-main.Tpo $(DEPDIR)/hpcstruct_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcstruct_bin-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp hpcstruct_bin-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-main.obj -MD -MP -MF $(DEPDIR)/hpcstruct_bin-main.Tpo -c -o hpcstruct_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-main.Tpo $(DEPDIR)/hpcstruct_bin-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='hpcstruct_bin-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` hpcstruct_bin-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-Args.o -MD -MP -MF $(DEPDIR)/hpcstruct_bin-Args.Tpo -c -o hpcstruct_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-Args.Tpo $(DEPDIR)/hpcstruct_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcstruct_bin-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp hpcstruct_bin-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -MT hpcstruct_bin-Args.obj -MD -MP -MF $(DEPDIR)/hpcstruct_bin-Args.Tpo -c -o hpcstruct_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/hpcstruct_bin-Args.Tpo $(DEPDIR)/hpcstruct_bin-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='hpcstruct_bin-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(hpcstruct_bin_CXXFLAGS) $(CXXFLAGS) -c -o hpcstruct_bin-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -874,6 +907,7 @@ clean-am: clean-generic clean-libtool clean-pkglibexecPROGRAMS \ mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -920,6 +954,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic diff --git a/src/tool/misc/Makefile.in b/src/tool/misc/Makefile.in index 6f347a7ab7..9c2067a7f9 100644 --- a/src/tool/misc/Makefile.in +++ b/src/tool/misc/Makefile.in @@ -164,8 +164,6 @@ AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = -depcomp = -am__depfiles_maybe = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ @@ -461,9 +459,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/misc/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/misc/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/misc/Makefile + $(AUTOMAKE) --foreign src/tool/misc/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ diff --git a/src/tool/xprof/Makefile.in b/src/tool/xprof/Makefile.in index 904db7c8e6..6cecfd3c2f 100644 --- a/src/tool/xprof/Makefile.in +++ b/src/tool/xprof/Makefile.in @@ -172,8 +172,9 @@ am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/src/include -depcomp = -am__depfiles_maybe = +depcomp = $(SHELL) $(top_srcdir)/config/depcomp +am__depfiles_maybe = depfiles +am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ @@ -236,7 +237,7 @@ am__define_uniq_tagged_files = \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags -am__DIST_COMMON = $(srcdir)/Makefile.in \ +am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/mkinstalldirs \ $(top_srcdir)/src/Makeinclude.config \ $(top_srcdir)/src/Makeinclude.rules README @@ -557,9 +558,9 @@ $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir exit 1;; \ esac; \ done; \ - echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign --ignore-deps src/tool/xprof/Makefile'; \ + echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/tool/xprof/Makefile'; \ $(am__cd) $(top_srcdir) && \ - $(AUTOMAKE) --foreign --ignore-deps src/tool/xprof/Makefile + $(AUTOMAKE) --foreign src/tool/xprof/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ @@ -638,86 +639,207 @@ mostlyclean-compile: distclean-compile: -rm -f *.tab.c +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-Args.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIMetricDesc.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIProfile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIProfileFilter.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DCPIProfileMetric.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-DerivedProfile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-PCProfile.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-PCProfileFilter.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-PCProfileMetric.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-ProfileReader.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-ProfileWriter.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xprof-main.Po@am__quote@ + .cpp.o: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cpp.obj: - $(AM_V_CXX)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: - $(AM_V_CXX)$(LTCXXCOMPILE) -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< xprof-main.o: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-main.o -MD -MP -MF $(DEPDIR)/xprof-main.Tpo -c -o xprof-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-main.Tpo $(DEPDIR)/xprof-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='xprof-main.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp xprof-main.obj: main.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-main.obj -MD -MP -MF $(DEPDIR)/xprof-main.Tpo -c -o xprof-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-main.Tpo $(DEPDIR)/xprof-main.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='xprof-main.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` xprof-Args.o: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-Args.o -MD -MP -MF $(DEPDIR)/xprof-Args.Tpo -c -o xprof-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-Args.Tpo $(DEPDIR)/xprof-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='xprof-Args.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.o `test -f 'Args.cpp' || echo '$(srcdir)/'`Args.cpp xprof-Args.obj: Args.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-Args.obj -MD -MP -MF $(DEPDIR)/xprof-Args.Tpo -c -o xprof-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-Args.Tpo $(DEPDIR)/xprof-Args.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='Args.cpp' object='xprof-Args.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-Args.obj `if test -f 'Args.cpp'; then $(CYGPATH_W) 'Args.cpp'; else $(CYGPATH_W) '$(srcdir)/Args.cpp'; fi` xprof-DCPIMetricDesc.o: DCPIMetricDesc.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.o `test -f 'DCPIMetricDesc.cpp' || echo '$(srcdir)/'`DCPIMetricDesc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIMetricDesc.o -MD -MP -MF $(DEPDIR)/xprof-DCPIMetricDesc.Tpo -c -o xprof-DCPIMetricDesc.o `test -f 'DCPIMetricDesc.cpp' || echo '$(srcdir)/'`DCPIMetricDesc.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIMetricDesc.Tpo $(DEPDIR)/xprof-DCPIMetricDesc.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIMetricDesc.cpp' object='xprof-DCPIMetricDesc.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.o `test -f 'DCPIMetricDesc.cpp' || echo '$(srcdir)/'`DCPIMetricDesc.cpp xprof-DCPIMetricDesc.obj: DCPIMetricDesc.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.obj `if test -f 'DCPIMetricDesc.cpp'; then $(CYGPATH_W) 'DCPIMetricDesc.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIMetricDesc.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIMetricDesc.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIMetricDesc.Tpo -c -o xprof-DCPIMetricDesc.obj `if test -f 'DCPIMetricDesc.cpp'; then $(CYGPATH_W) 'DCPIMetricDesc.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIMetricDesc.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIMetricDesc.Tpo $(DEPDIR)/xprof-DCPIMetricDesc.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIMetricDesc.cpp' object='xprof-DCPIMetricDesc.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIMetricDesc.obj `if test -f 'DCPIMetricDesc.cpp'; then $(CYGPATH_W) 'DCPIMetricDesc.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIMetricDesc.cpp'; fi` xprof-DCPIProfile.o: DCPIProfile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.o `test -f 'DCPIProfile.cpp' || echo '$(srcdir)/'`DCPIProfile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfile.o -MD -MP -MF $(DEPDIR)/xprof-DCPIProfile.Tpo -c -o xprof-DCPIProfile.o `test -f 'DCPIProfile.cpp' || echo '$(srcdir)/'`DCPIProfile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfile.Tpo $(DEPDIR)/xprof-DCPIProfile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfile.cpp' object='xprof-DCPIProfile.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.o `test -f 'DCPIProfile.cpp' || echo '$(srcdir)/'`DCPIProfile.cpp xprof-DCPIProfile.obj: DCPIProfile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.obj `if test -f 'DCPIProfile.cpp'; then $(CYGPATH_W) 'DCPIProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfile.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIProfile.Tpo -c -o xprof-DCPIProfile.obj `if test -f 'DCPIProfile.cpp'; then $(CYGPATH_W) 'DCPIProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfile.Tpo $(DEPDIR)/xprof-DCPIProfile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfile.cpp' object='xprof-DCPIProfile.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfile.obj `if test -f 'DCPIProfile.cpp'; then $(CYGPATH_W) 'DCPIProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfile.cpp'; fi` xprof-DCPIProfileFilter.o: DCPIProfileFilter.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.o `test -f 'DCPIProfileFilter.cpp' || echo '$(srcdir)/'`DCPIProfileFilter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileFilter.o -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileFilter.Tpo -c -o xprof-DCPIProfileFilter.o `test -f 'DCPIProfileFilter.cpp' || echo '$(srcdir)/'`DCPIProfileFilter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileFilter.Tpo $(DEPDIR)/xprof-DCPIProfileFilter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileFilter.cpp' object='xprof-DCPIProfileFilter.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.o `test -f 'DCPIProfileFilter.cpp' || echo '$(srcdir)/'`DCPIProfileFilter.cpp xprof-DCPIProfileFilter.obj: DCPIProfileFilter.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.obj `if test -f 'DCPIProfileFilter.cpp'; then $(CYGPATH_W) 'DCPIProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileFilter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileFilter.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileFilter.Tpo -c -o xprof-DCPIProfileFilter.obj `if test -f 'DCPIProfileFilter.cpp'; then $(CYGPATH_W) 'DCPIProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileFilter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileFilter.Tpo $(DEPDIR)/xprof-DCPIProfileFilter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileFilter.cpp' object='xprof-DCPIProfileFilter.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileFilter.obj `if test -f 'DCPIProfileFilter.cpp'; then $(CYGPATH_W) 'DCPIProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileFilter.cpp'; fi` xprof-DCPIProfileMetric.o: DCPIProfileMetric.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.o `test -f 'DCPIProfileMetric.cpp' || echo '$(srcdir)/'`DCPIProfileMetric.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileMetric.o -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileMetric.Tpo -c -o xprof-DCPIProfileMetric.o `test -f 'DCPIProfileMetric.cpp' || echo '$(srcdir)/'`DCPIProfileMetric.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileMetric.Tpo $(DEPDIR)/xprof-DCPIProfileMetric.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileMetric.cpp' object='xprof-DCPIProfileMetric.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.o `test -f 'DCPIProfileMetric.cpp' || echo '$(srcdir)/'`DCPIProfileMetric.cpp xprof-DCPIProfileMetric.obj: DCPIProfileMetric.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.obj `if test -f 'DCPIProfileMetric.cpp'; then $(CYGPATH_W) 'DCPIProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileMetric.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DCPIProfileMetric.obj -MD -MP -MF $(DEPDIR)/xprof-DCPIProfileMetric.Tpo -c -o xprof-DCPIProfileMetric.obj `if test -f 'DCPIProfileMetric.cpp'; then $(CYGPATH_W) 'DCPIProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileMetric.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DCPIProfileMetric.Tpo $(DEPDIR)/xprof-DCPIProfileMetric.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DCPIProfileMetric.cpp' object='xprof-DCPIProfileMetric.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DCPIProfileMetric.obj `if test -f 'DCPIProfileMetric.cpp'; then $(CYGPATH_W) 'DCPIProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/DCPIProfileMetric.cpp'; fi` xprof-DerivedProfile.o: DerivedProfile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.o `test -f 'DerivedProfile.cpp' || echo '$(srcdir)/'`DerivedProfile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DerivedProfile.o -MD -MP -MF $(DEPDIR)/xprof-DerivedProfile.Tpo -c -o xprof-DerivedProfile.o `test -f 'DerivedProfile.cpp' || echo '$(srcdir)/'`DerivedProfile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DerivedProfile.Tpo $(DEPDIR)/xprof-DerivedProfile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DerivedProfile.cpp' object='xprof-DerivedProfile.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.o `test -f 'DerivedProfile.cpp' || echo '$(srcdir)/'`DerivedProfile.cpp xprof-DerivedProfile.obj: DerivedProfile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.obj `if test -f 'DerivedProfile.cpp'; then $(CYGPATH_W) 'DerivedProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DerivedProfile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-DerivedProfile.obj -MD -MP -MF $(DEPDIR)/xprof-DerivedProfile.Tpo -c -o xprof-DerivedProfile.obj `if test -f 'DerivedProfile.cpp'; then $(CYGPATH_W) 'DerivedProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DerivedProfile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-DerivedProfile.Tpo $(DEPDIR)/xprof-DerivedProfile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='DerivedProfile.cpp' object='xprof-DerivedProfile.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-DerivedProfile.obj `if test -f 'DerivedProfile.cpp'; then $(CYGPATH_W) 'DerivedProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/DerivedProfile.cpp'; fi` xprof-PCProfile.o: PCProfile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.o `test -f 'PCProfile.cpp' || echo '$(srcdir)/'`PCProfile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfile.o -MD -MP -MF $(DEPDIR)/xprof-PCProfile.Tpo -c -o xprof-PCProfile.o `test -f 'PCProfile.cpp' || echo '$(srcdir)/'`PCProfile.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfile.Tpo $(DEPDIR)/xprof-PCProfile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfile.cpp' object='xprof-PCProfile.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.o `test -f 'PCProfile.cpp' || echo '$(srcdir)/'`PCProfile.cpp xprof-PCProfile.obj: PCProfile.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.obj `if test -f 'PCProfile.cpp'; then $(CYGPATH_W) 'PCProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfile.obj -MD -MP -MF $(DEPDIR)/xprof-PCProfile.Tpo -c -o xprof-PCProfile.obj `if test -f 'PCProfile.cpp'; then $(CYGPATH_W) 'PCProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfile.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfile.Tpo $(DEPDIR)/xprof-PCProfile.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfile.cpp' object='xprof-PCProfile.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfile.obj `if test -f 'PCProfile.cpp'; then $(CYGPATH_W) 'PCProfile.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfile.cpp'; fi` xprof-PCProfileFilter.o: PCProfileFilter.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.o `test -f 'PCProfileFilter.cpp' || echo '$(srcdir)/'`PCProfileFilter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileFilter.o -MD -MP -MF $(DEPDIR)/xprof-PCProfileFilter.Tpo -c -o xprof-PCProfileFilter.o `test -f 'PCProfileFilter.cpp' || echo '$(srcdir)/'`PCProfileFilter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileFilter.Tpo $(DEPDIR)/xprof-PCProfileFilter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileFilter.cpp' object='xprof-PCProfileFilter.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.o `test -f 'PCProfileFilter.cpp' || echo '$(srcdir)/'`PCProfileFilter.cpp xprof-PCProfileFilter.obj: PCProfileFilter.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.obj `if test -f 'PCProfileFilter.cpp'; then $(CYGPATH_W) 'PCProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileFilter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileFilter.obj -MD -MP -MF $(DEPDIR)/xprof-PCProfileFilter.Tpo -c -o xprof-PCProfileFilter.obj `if test -f 'PCProfileFilter.cpp'; then $(CYGPATH_W) 'PCProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileFilter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileFilter.Tpo $(DEPDIR)/xprof-PCProfileFilter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileFilter.cpp' object='xprof-PCProfileFilter.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileFilter.obj `if test -f 'PCProfileFilter.cpp'; then $(CYGPATH_W) 'PCProfileFilter.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileFilter.cpp'; fi` xprof-PCProfileMetric.o: PCProfileMetric.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.o `test -f 'PCProfileMetric.cpp' || echo '$(srcdir)/'`PCProfileMetric.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileMetric.o -MD -MP -MF $(DEPDIR)/xprof-PCProfileMetric.Tpo -c -o xprof-PCProfileMetric.o `test -f 'PCProfileMetric.cpp' || echo '$(srcdir)/'`PCProfileMetric.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileMetric.Tpo $(DEPDIR)/xprof-PCProfileMetric.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileMetric.cpp' object='xprof-PCProfileMetric.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.o `test -f 'PCProfileMetric.cpp' || echo '$(srcdir)/'`PCProfileMetric.cpp xprof-PCProfileMetric.obj: PCProfileMetric.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.obj `if test -f 'PCProfileMetric.cpp'; then $(CYGPATH_W) 'PCProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileMetric.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-PCProfileMetric.obj -MD -MP -MF $(DEPDIR)/xprof-PCProfileMetric.Tpo -c -o xprof-PCProfileMetric.obj `if test -f 'PCProfileMetric.cpp'; then $(CYGPATH_W) 'PCProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileMetric.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-PCProfileMetric.Tpo $(DEPDIR)/xprof-PCProfileMetric.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='PCProfileMetric.cpp' object='xprof-PCProfileMetric.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-PCProfileMetric.obj `if test -f 'PCProfileMetric.cpp'; then $(CYGPATH_W) 'PCProfileMetric.cpp'; else $(CYGPATH_W) '$(srcdir)/PCProfileMetric.cpp'; fi` xprof-ProfileReader.o: ProfileReader.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.o `test -f 'ProfileReader.cpp' || echo '$(srcdir)/'`ProfileReader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileReader.o -MD -MP -MF $(DEPDIR)/xprof-ProfileReader.Tpo -c -o xprof-ProfileReader.o `test -f 'ProfileReader.cpp' || echo '$(srcdir)/'`ProfileReader.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileReader.Tpo $(DEPDIR)/xprof-ProfileReader.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileReader.cpp' object='xprof-ProfileReader.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.o `test -f 'ProfileReader.cpp' || echo '$(srcdir)/'`ProfileReader.cpp xprof-ProfileReader.obj: ProfileReader.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.obj `if test -f 'ProfileReader.cpp'; then $(CYGPATH_W) 'ProfileReader.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileReader.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileReader.obj -MD -MP -MF $(DEPDIR)/xprof-ProfileReader.Tpo -c -o xprof-ProfileReader.obj `if test -f 'ProfileReader.cpp'; then $(CYGPATH_W) 'ProfileReader.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileReader.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileReader.Tpo $(DEPDIR)/xprof-ProfileReader.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileReader.cpp' object='xprof-ProfileReader.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileReader.obj `if test -f 'ProfileReader.cpp'; then $(CYGPATH_W) 'ProfileReader.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileReader.cpp'; fi` xprof-ProfileWriter.o: ProfileWriter.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.o `test -f 'ProfileWriter.cpp' || echo '$(srcdir)/'`ProfileWriter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileWriter.o -MD -MP -MF $(DEPDIR)/xprof-ProfileWriter.Tpo -c -o xprof-ProfileWriter.o `test -f 'ProfileWriter.cpp' || echo '$(srcdir)/'`ProfileWriter.cpp +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileWriter.Tpo $(DEPDIR)/xprof-ProfileWriter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileWriter.cpp' object='xprof-ProfileWriter.o' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.o `test -f 'ProfileWriter.cpp' || echo '$(srcdir)/'`ProfileWriter.cpp xprof-ProfileWriter.obj: ProfileWriter.cpp - $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.obj `if test -f 'ProfileWriter.cpp'; then $(CYGPATH_W) 'ProfileWriter.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileWriter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -MT xprof-ProfileWriter.obj -MD -MP -MF $(DEPDIR)/xprof-ProfileWriter.Tpo -c -o xprof-ProfileWriter.obj `if test -f 'ProfileWriter.cpp'; then $(CYGPATH_W) 'ProfileWriter.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileWriter.cpp'; fi` +@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/xprof-ProfileWriter.Tpo $(DEPDIR)/xprof-ProfileWriter.Po +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ProfileWriter.cpp' object='xprof-ProfileWriter.obj' libtool=no @AMDEPBACKSLASH@ +@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ +@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(xprof_CXXFLAGS) $(CXXFLAGS) -c -o xprof-ProfileWriter.obj `if test -f 'ProfileWriter.cpp'; then $(CYGPATH_W) 'ProfileWriter.cpp'; else $(CYGPATH_W) '$(srcdir)/ProfileWriter.cpp'; fi` mostlyclean-libtool: -rm -f *.lo @@ -850,6 +972,7 @@ clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags @@ -895,6 +1018,7 @@ install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am + -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic From e7ed83ebad96d369097af960281dea7a2d311faf Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Fri, 7 Jul 2017 16:17:49 -0500 Subject: [PATCH 78/85] Make a function static. --- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 97a752ce6f..f2cc82bffe 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -275,7 +275,7 @@ struct builder int count; }; -int +static int dwarf_reg_states_callback(void *token, void *rs, size_t size, From e1ef0513da07aebbbd14054f0d8e9cf5dad5e2dc Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 10 Jul 2017 16:44:12 -0500 Subject: [PATCH 79/85] Drop leftover call to bitree_uwi_finalize. --- src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c index 488dd76a46..a0ccf4e1d9 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-build-intervals.c @@ -92,7 +92,6 @@ btuwi_status_t build_intervals(char *ins, unsigned int len, mem_alloc m_alloc) { btuwi_status_t status = x86_build_intervals(ins, len, 0, m_alloc); - bitree_uwi_finalize(status.first); return status; } From 8bc815b2bcc5a3ced999b073fc63edcc04c5056f Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Mon, 10 Jul 2017 18:39:56 -0500 Subject: [PATCH 80/85] A piece of merge-from-master introduces backwards pointers, which mess up my memory allocator. Undo that. --- src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c index f1136a9105..2c3e685a5c 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind-interval.c @@ -137,7 +137,6 @@ link_ui(unwind_interval *current, unwind_interval *next) { UWI_END_ADDR(current) = UWI_START_ADDR(next); bitree_uwi_set_rightsubtree(current, next); - bitree_uwi_set_leftsubtree(next, current); } static void From 05b9496be79106b0ac0899d81fab958054b47cd4 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 11 Jul 2017 15:50:59 -0500 Subject: [PATCH 81/85] Restore field to libunw cursor that aren't used by libunw unwinding, but are used, even uninitialized, in common/backtrace.c. --- .../unwind/generic-libunwind/unw-datatypes-specific.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h index b21435c48d..2cefe2fc49 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h @@ -27,6 +27,12 @@ typedef struct hpcrun_unw_cursor_t { ip_normalized_t the_function; ip_normalized_t pc_norm; + + //unused, but forced by common/backtrace.c + void *sp; + void *bp; + fence_enum_t fence; + } hpcrun_unw_cursor_t; #endif // UNW_DATATYPES_SPECIFIC_H From ef60bd72b1ab96680dbf0f23236a9af4096d0807 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 11 Jul 2017 15:58:13 -0500 Subject: [PATCH 82/85] Eliminate the use of unw_word_t outside of code working with libunwind. Currently, the definition of unw_word_t for native code unwinding is incompatible with the definition libunwind uses, making blending the two methods difficult. --- src/tool/hpcrun/unwind/common/backtrace-lite.c | 2 +- src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c | 2 +- src/tool/hpcrun/unwind/ppc64/unw-datatypes-specific.h | 1 - src/tool/hpcrun/unwind/x86-family/unw-datatypes-specific.h | 1 - src/tool/hpcrun/unwind/x86-family/x86-unwind.c | 2 +- 5 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace-lite.c b/src/tool/hpcrun/unwind/common/backtrace-lite.c index 6a2d8f973f..9165e47731 100644 --- a/src/tool/hpcrun/unwind/common/backtrace-lite.c +++ b/src/tool/hpcrun/unwind/common/backtrace-lite.c @@ -97,7 +97,7 @@ hpcrun_backtrace_lite(void** buffer, int size, ucontext_t* context) while (my_size < size) { int ret; - unw_word_t ip = 0; + void *ip = 0; ret = hpcrun_unw_get_ip_reg(&cursor, &ip); if (ret < 0) { /* ignore error */ } diff --git a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c index 3198556567..93a3280e35 100644 --- a/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c +++ b/src/tool/hpcrun/unwind/ppc64/ppc64-unwind.c @@ -199,7 +199,7 @@ hpcrun_unw_get_ip_norm_reg(hpcrun_unw_cursor_t* c, ip_normalized_t* reg_value) int -hpcrun_unw_get_ip_unnorm_reg(hpcrun_unw_cursor_t* c, unw_word_t* reg_value) +hpcrun_unw_get_ip_unnorm_reg(hpcrun_unw_cursor_t* c, void** reg_value) { return hpcrun_unw_get_unnorm_reg(c, UNW_REG_IP, reg_value); } diff --git a/src/tool/hpcrun/unwind/ppc64/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/ppc64/unw-datatypes-specific.h index 6ab08e13df..b5de87c177 100644 --- a/src/tool/hpcrun/unwind/ppc64/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/ppc64/unw-datatypes-specific.h @@ -48,6 +48,5 @@ #define UNW_DATATYPES_SPECIFIC_H #include -typedef void* unw_word_t; #endif // UNW_DATATYPES_SPECIFIC_H diff --git a/src/tool/hpcrun/unwind/x86-family/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/x86-family/unw-datatypes-specific.h index 228b28ad7f..8100b18681 100644 --- a/src/tool/hpcrun/unwind/x86-family/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/x86-family/unw-datatypes-specific.h @@ -48,6 +48,5 @@ #define UNW_DATATYPES_SPECIFIC_H #include -typedef void* unw_word_t; #endif // UNW_DATATYPES_SPECIFIC_H diff --git a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c index 6f76ae1897..341a9e8b0f 100644 --- a/src/tool/hpcrun/unwind/x86-family/x86-unwind.c +++ b/src/tool/hpcrun/unwind/x86-family/x86-unwind.c @@ -232,7 +232,7 @@ hpcrun_unw_get_ip_norm_reg(hpcrun_unw_cursor_t* c, ip_normalized_t* reg_value) } int -hpcrun_unw_get_ip_unnorm_reg(hpcrun_unw_cursor_t* c, unw_word_t* reg_value) +hpcrun_unw_get_ip_unnorm_reg(hpcrun_unw_cursor_t* c, void** reg_value) { return hpcrun_unw_get_unnorm_reg(c, UNW_REG_IP, reg_value); } From ee9c6bfb613c762da8cdae732a359090f6f8c4d2 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 11 Jul 2017 17:02:19 -0500 Subject: [PATCH 83/85] For whatever it's worth, set the fence value for libunwinding in the same way it is set for x86 and ppc unwinding. --- .../hpcrun/unwind/generic-libunwind/libunw-unwind.c | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index f2cc82bffe..405dd2d941 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -230,12 +230,13 @@ hpcrun_unw_step(hpcrun_unw_cursor_t* cursor) // full unwind: stop at libmonitor fence. this is where we hope the // unwind stops. - if (monitor_unwind_process_bottom_frame(pc) - || monitor_unwind_thread_bottom_frame(pc)) - { - TMSG(UNW, "unw_step: stop at monitor fence: %p\n", pc); - return STEP_STOP; - } + cursor->fence = (monitor_unwind_process_bottom_frame(pc) ? FENCE_MAIN : + monitor_unwind_thread_bottom_frame(pc)? FENCE_THREAD : FENCE_NONE); + if (cursor->fence != FENCE_NONE) + { + TMSG(UNW, "unw_step: stop at monitor fence: %p\n", pc); + return STEP_STOP; + } //----------------------------------------------------------- // compute unwind information for the caller's pc From 1cbbf18582d3957ca04fe5e341caa179cdf67006 Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Tue, 11 Jul 2017 17:26:18 -0500 Subject: [PATCH 84/85] Drop a debug message from backtrace.c, so that two fields can be dropped from cursor for libunwind. Fill in the cursor fence field for libunwind, so that when backtrace.c copies the value, there will be a value to copy. --- src/tool/hpcrun/unwind/common/backtrace.c | 1 - .../hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h | 5 ----- 2 files changed, 6 deletions(-) diff --git a/src/tool/hpcrun/unwind/common/backtrace.c b/src/tool/hpcrun/unwind/common/backtrace.c index f856fa69db..fb3439e238 100644 --- a/src/tool/hpcrun/unwind/common/backtrace.c +++ b/src/tool/hpcrun/unwind/common/backtrace.c @@ -227,7 +227,6 @@ hpcrun_generate_backtrace_no_trampoline(backtrace_info_t* bt, else { // we have encountered a trampoline in the middle of an unwind. bt->has_tramp = true; - TMSG(TRAMP, "--CURRENT UNWIND FINDS TRAMPOLINE @ (sp:%p, bp:%p", cursor.sp, cursor.bp); // no need to unwind further. the outer frames are already known. bt->fence = FENCE_TRAMP; diff --git a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h index 2cefe2fc49..fa36daa9d1 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h +++ b/src/tool/hpcrun/unwind/generic-libunwind/unw-datatypes-specific.h @@ -25,12 +25,7 @@ typedef struct hpcrun_unw_cursor_t { unw_cursor_t uc; // normalized ip for first instruction in enclosing function ip_normalized_t the_function; - ip_normalized_t pc_norm; - - //unused, but forced by common/backtrace.c - void *sp; - void *bp; fence_enum_t fence; } hpcrun_unw_cursor_t; From 0d65c37a403868f56fa547277ba0f638dbde855a Mon Sep 17 00:00:00 2001 From: Doug Moore Date: Wed, 16 Aug 2017 16:02:37 -0500 Subject: [PATCH 85/85] Handle the possibility that the last range that libunwind presents us for a procedure ends before the end of the procedure, by raising its upper bound to match the end of the procedure. Otherwise, we may complete build_intervals and find that the lookup for the interval containing the instruction address fails. Return the status from the libunwind call as the status from the build_intervals call. --- src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c index 405dd2d941..3e7fe81c0a 100644 --- a/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c +++ b/src/tool/hpcrun/unwind/generic-libunwind/libunw-unwind.c @@ -307,13 +307,17 @@ libunw_build_intervals(char *beg_insn, unsigned int len, mem_alloc m_alloc) void *space[2]; // enough space for any binarytree bitree_uwi_t *dummy = (bitree_uwi_t*)space; struct builder b = {m_alloc, dummy, 0}; - unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); + int status = unw_reg_states_iterate(&c, dwarf_reg_states_callback, &b); + /* whatever libutils says about the last address range, + * we insist that it extend to the last address of this + * function range. */ + bitree_uwi_rootval(b.latest)->interval.end = (uintptr_t)(beg_insn + len); bitree_uwi_set_rightsubtree(b.latest, NULL); btuwi_status_t stat; stat.first_undecoded_ins = NULL; stat.count = b.count; - stat.errcode = 0; + stat.errcode = status; stat.first = bitree_uwi_rightsubtree(dummy); return stat;