├── src └── plugins │ └── acct_gather_profile │ ├── Makefile.am │ └── influxdb │ ├── Makefile.am │ ├── acct_gather_profile_influxdb.c │ └── Makefile.in └── configure.ac /src/plugins/acct_gather_profile/Makefile.am: -------------------------------------------------------------------------------- 1 | # Makefile for accounting gather profile plugins 2 | 3 | SUBDIRS = none influxdb 4 | if BUILD_HDF5 5 | SUBDIRS += hdf5 6 | endif 7 | -------------------------------------------------------------------------------- /src/plugins/acct_gather_profile/influxdb/Makefile.am: -------------------------------------------------------------------------------- 1 | # Makefile for acct_gather_profile/influxdb plugin 2 | 3 | AUTOMAKE_OPTIONS = foreign 4 | 5 | PLUGIN_FLAGS = -module -avoid-version --export-dynamic 6 | 7 | # Do not put a link to common here. src/common contains an mpi.h which 8 | # hdf5 could of been installed with a link to the generic mpi.h. 9 | AM_CPPFLAGS = -I$(top_srcdir) 10 | 11 | # cpu/core energy accounting plugin. 12 | 13 | if WITH_CURL 14 | pkglib_LTLIBRARIES = acct_gather_profile_influxdb.la 15 | endif 16 | 17 | 18 | acct_gather_profile_influxdb_la_SOURCES = acct_gather_profile_influxdb.c 19 | acct_gather_profile_influxdb_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) 20 | acct_gather_profile_influxdb_la_LIBADD = $(LIBCURL) 21 | -------------------------------------------------------------------------------- /src/plugins/acct_gather_profile/influxdb/acct_gather_profile_influxdb.c: -------------------------------------------------------------------------------- 1 | /*****************************************************************************\ 2 | * acct_gather_profile_influxdb.c - slurm accounting plugin for 3 | * influxdb profiling. 4 | ***************************************************************************** 5 | * Author: Carlos Fenoy Garcia 6 | * Copyright (C) 2016 F. Hoffmann - La Roche 7 | * 8 | * Based on the HDF5 profiling plugin and Elasticsearch job completion plugin 9 | * 10 | * Portions Copyright (C) 2013 Bull S. A. S. 11 | * Bull, Rue Jean Jaures, B.P.68, 78340, Les Clayes-sous-Bois. 12 | * 13 | * Portions Copyright (C) 2013 SchedMD LLC. 14 | * 15 | * This file is part of SLURM, a resource management program. 16 | * For details, see . 17 | * Please also read the included file: DISCLAIMER. 18 | * 19 | * SLURM is free software; you can redistribute it and/or modify it under 20 | * the terms of the GNU General Public License as published by the Free 21 | * Software Foundation; either version 2 of the License, or (at your option) 22 | * any later version. 23 | * 24 | * In addition, as a special exception, the copyright holders give permission 25 | * to link the code of portions of this program with the OpenSSL library under 26 | * certain conditions as described in each individual source file, and 27 | * distribute linked combinations including the two. You must obey the GNU 28 | * General Public License in all respects for all of the code used other than 29 | * OpenSSL. If you modify file(s) with this exception, you may extend this 30 | * exception to your version of the file(s), but you are not obligated to do 31 | * so. If you do not wish to do so, delete this exception statement from your 32 | * version. If you delete this exception statement from all source files in 33 | * the program, then also delete it here. 34 | * 35 | * SLURM is distributed in the hope that it will be useful, but WITHOUT ANY 36 | * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 37 | * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more 38 | * details. 39 | * 40 | * You should have received a copy of the GNU General Public License along 41 | * with SLURM; if not, write to the Free Software Foundation, Inc., 42 | * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 43 | * 44 | * This file is patterned after jobcomp_linux.c, written by Morris Jette and 45 | * Copyright (C) 2002 The Regents of the University of California. 46 | \*****************************************************************************/ 47 | 48 | #include 49 | #include 50 | #include 51 | #include 52 | #include 53 | #include 54 | #include 55 | #include 56 | #include 57 | #include 58 | #include 59 | 60 | #include "src/common/slurm_xlator.h" 61 | #include "src/common/fd.h" 62 | #include "src/common/slurm_acct_gather_profile.h" 63 | #include "src/common/slurm_protocol_api.h" 64 | #include "src/common/slurm_protocol_defs.h" 65 | #include "src/common/slurm_time.h" 66 | #include "src/common/macros.h" 67 | #include "src/slurmd/common/proctrack.h" 68 | 69 | /* 70 | * These variables are required by the generic plugin interface. If they 71 | * are not found in the plugin, the plugin loader will ignore it. 72 | * 73 | * plugin_name - a string giving a human-readable description of the 74 | * plugin. There is no maximum length, but the symbol must refer to 75 | * a valid string. 76 | * 77 | * plugin_type - a string suggesting the type of the plugin or its 78 | * applicability to a particular form of data or method of data handling. 79 | * If the low-level plugin API is used, the contents of this string are 80 | * unimportant and may be anything. SLURM uses the higher-level plugin 81 | * interface which requires this string to be of the form 82 | * 83 | * / 84 | * 85 | * where is a description of the intended application of 86 | * the plugin (e.g., "jobacct" for SLURM job completion logging) and 87 | * is a description of how this plugin satisfies that application. SLURM will 88 | * only load job completion logging plugins if the plugin_type string has a 89 | * prefix of "jobacct/". 90 | * 91 | * plugin_version - an unsigned 32-bit integer containing the Slurm version 92 | * (major.minor.micro combined into a single number). 93 | */ 94 | const char plugin_name[] = "AcctGatherProfile influxdb plugin"; 95 | const char plugin_type[] = "acct_gather_profile/influxdb"; 96 | const uint32_t plugin_version = SLURM_VERSION_NUMBER; 97 | 98 | typedef struct { 99 | char *host; 100 | char *database; 101 | uint32_t def; 102 | } slurm_influxdb_conf_t; 103 | 104 | typedef struct { 105 | char ** names; 106 | uint32_t *types; 107 | size_t size; 108 | char * name; 109 | } table_t; 110 | 111 | static slurm_influxdb_conf_t influxdb_conf; 112 | static uint64_t debug_flags = 0; 113 | static uint32_t g_profile_running = ACCT_GATHER_PROFILE_NOT_SET; 114 | static stepd_step_rec_t *g_job = NULL; 115 | 116 | static char *datastr; 117 | static int datastrlen; 118 | 119 | static table_t *tables = NULL; 120 | static size_t tables_max_len = 0; 121 | static size_t tables_cur_len = 0; 122 | 123 | static void _reset_slurm_profile_conf(void) 124 | { 125 | xfree(influxdb_conf.host); 126 | influxdb_conf.def = ACCT_GATHER_PROFILE_ALL; 127 | } 128 | 129 | static uint32_t _determine_profile(void) 130 | { 131 | uint32_t profile; 132 | 133 | xassert(g_job); 134 | 135 | if (g_profile_running != ACCT_GATHER_PROFILE_NOT_SET) 136 | profile = g_profile_running; 137 | else if (g_job->profile >= ACCT_GATHER_PROFILE_NONE) 138 | profile = g_job->profile; 139 | else 140 | profile = influxdb_conf.def; 141 | 142 | return profile; 143 | } 144 | 145 | static bool _run_in_daemon(void) 146 | { 147 | static bool set = false; 148 | static bool run = false; 149 | 150 | if (!set) { 151 | set = 1; 152 | run = run_in_daemon("slurmstepd"); 153 | } 154 | 155 | return run; 156 | } 157 | 158 | /* Type for handling HTTP responses */ 159 | struct http_response { 160 | char *message; 161 | size_t size; 162 | }; 163 | 164 | /* Callback to handle the HTTP response */ 165 | static size_t _write_callback(void *contents, size_t size, size_t nmemb, 166 | void *userp) 167 | { 168 | size_t realsize = size * nmemb; 169 | struct http_response *mem = (struct http_response *) userp; 170 | 171 | mem->message = xrealloc(mem->message, mem->size + realsize + 1); 172 | 173 | memcpy(&(mem->message[mem->size]), contents, realsize); 174 | mem->size += realsize; 175 | mem->message[mem->size] = 0; 176 | 177 | return realsize; 178 | } 179 | 180 | /* Try to index job into elasticsearch */ 181 | static int _send_data(const char *data) 182 | { 183 | if(data!=NULL && datastrlen+strlen(data) <= BUF_SIZE){ 184 | xstrcat(datastr,data); 185 | datastrlen += strlen(data); 186 | return SLURM_SUCCESS; 187 | } 188 | 189 | CURL *curl_handle = NULL; 190 | CURLcode res; 191 | struct http_response chunk; 192 | int rc = SLURM_SUCCESS; 193 | static int error_cnt = 0; 194 | 195 | if (curl_global_init(CURL_GLOBAL_ALL) != 0) { 196 | debug("curl_global_init: %m"); 197 | rc = SLURM_ERROR; 198 | } else if ((curl_handle = curl_easy_init()) == NULL) { 199 | debug("curl_easy_init: %m"); 200 | rc = SLURM_ERROR; 201 | } 202 | 203 | if (curl_handle) { 204 | char *url = xstrdup(influxdb_conf.host); 205 | xstrfmtcat(url, "/write?db=%s&rp=default&precision=s", 206 | influxdb_conf.database); 207 | 208 | chunk.message = xmalloc(1); 209 | chunk.size = 0; 210 | 211 | curl_easy_setopt(curl_handle, CURLOPT_URL, url); 212 | curl_easy_setopt(curl_handle, CURLOPT_POST, 1); 213 | curl_easy_setopt(curl_handle, CURLOPT_POSTFIELDS, datastr); 214 | curl_easy_setopt(curl_handle, CURLOPT_POSTFIELDSIZE, 215 | strlen(datastr)); 216 | curl_easy_setopt(curl_handle, CURLOPT_HEADER, 1); 217 | curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, 218 | _write_callback); 219 | curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, 220 | (void *) &chunk); 221 | 222 | res = curl_easy_perform(curl_handle); 223 | if (res != CURLE_OK) { 224 | debug2("Could not connect to: %s , reason: %s", url, 225 | curl_easy_strerror(res)); 226 | rc = SLURM_ERROR; 227 | } else { 228 | char *token, *response; 229 | response = xstrdup(chunk.message); 230 | token = strtok(chunk.message, " "); 231 | if (token == NULL) { 232 | debug("Could not receive the HTTP response " 233 | "status code from %s", url); 234 | rc = SLURM_ERROR; 235 | } else { 236 | token = strtok(NULL, " "); 237 | if ((xstrcmp(token, "100") == 0)) { 238 | (void) strtok(NULL, " "); 239 | token = strtok(NULL, " "); 240 | } 241 | else if ((xstrcmp(token, "400") == 0)) { 242 | debug("400: Bad Request"); 243 | rc = SLURM_ERROR; 244 | } 245 | else if ((xstrcmp(token, "404") == 0)) { 246 | debug("404: Unacceptable request"); 247 | rc = SLURM_ERROR; 248 | } 249 | else if ((xstrcmp(token, "500") == 0)) { 250 | debug("500: Internal Server Error"); 251 | rc = SLURM_ERROR; 252 | } 253 | else if (xstrcmp(token, "204") != 0) { 254 | debug("HTTP status code %s received " 255 | "from %s", token, url); 256 | debug3("HTTP Response:\n%s", response); 257 | rc = SLURM_ERROR; 258 | } else { 259 | debug("Data written"); 260 | } 261 | xfree(response); 262 | } 263 | } 264 | xfree(chunk.message); 265 | curl_easy_cleanup(curl_handle); 266 | xfree(url); 267 | } 268 | curl_global_cleanup(); 269 | 270 | if (rc == SLURM_ERROR) { 271 | if (((error_cnt++) % 100) == 0) { 272 | /* Periodically log errors */ 273 | info("%s: Unable to push data, some data may be lost." 274 | "Error count: %d ",plugin_type, error_cnt); 275 | } 276 | } 277 | 278 | if (data!=NULL) { 279 | strcpy(datastr,data); 280 | datastrlen = strlen(data); 281 | }else{ 282 | strcpy(datastr,""); 283 | datastrlen = 0; 284 | } 285 | return rc; 286 | } 287 | 288 | /* 289 | * init() is called when the plugin is loaded, before any other functions 290 | * are called. Put global initialization here. 291 | */ 292 | extern int init(void) 293 | { 294 | if (!_run_in_daemon()) 295 | return SLURM_SUCCESS; 296 | 297 | debug_flags = slurm_get_debug_flags(); 298 | 299 | datastr = xmalloc(BUF_SIZE); 300 | return SLURM_SUCCESS; 301 | } 302 | 303 | extern int fini(void) 304 | { 305 | xfree(tables); 306 | xfree(datastr); 307 | xfree(influxdb_conf.host); 308 | xfree(influxdb_conf.database); 309 | return SLURM_SUCCESS; 310 | } 311 | 312 | extern void acct_gather_profile_p_conf_options(s_p_options_t **full_options, 313 | int *full_options_cnt) 314 | { 315 | s_p_options_t options[] = { 316 | {"ProfileInfluxDBHost", S_P_STRING}, 317 | {"ProfileInfluxDBDatabase", S_P_STRING}, 318 | {"ProfileInfluxDBDefault", S_P_STRING}, 319 | {NULL} }; 320 | 321 | transfer_s_p_options(full_options, options, full_options_cnt); 322 | return; 323 | } 324 | 325 | extern void acct_gather_profile_p_conf_set(s_p_hashtbl_t *tbl) 326 | { 327 | char *tmp = NULL; 328 | _reset_slurm_profile_conf(); 329 | if (tbl) { 330 | s_p_get_string(&influxdb_conf.host, "ProfileInfluxDBHost", tbl); 331 | if (s_p_get_string(&tmp, "ProfileInfluxDBDefault", tbl)) { 332 | influxdb_conf.def = 333 | acct_gather_profile_from_string(tmp); 334 | if (influxdb_conf.def == ACCT_GATHER_PROFILE_NOT_SET) { 335 | fatal("ProfileInfluxDBDefault can not be " 336 | "set to %s, please specify a valid " 337 | "option", tmp); 338 | } 339 | xfree(tmp); 340 | } 341 | s_p_get_string(&influxdb_conf.database, 342 | "ProfileInfluxDBDatabase", tbl); 343 | } 344 | 345 | if (!influxdb_conf.host) 346 | fatal("No ProfileInfluxDBHost in your acct_gather.conf file. " 347 | "This is required to use the %s plugin", 348 | plugin_type); 349 | if (!influxdb_conf.database) 350 | fatal("No ProfileInfluxDBDatabase in your acct_gather.conf " 351 | "file. This is required to use the %s plugin", 352 | plugin_type); 353 | 354 | debug("%s loaded", plugin_name); 355 | } 356 | 357 | extern void acct_gather_profile_p_get(enum acct_gather_profile_info info_type, 358 | void *data) 359 | { 360 | uint32_t *uint32 = (uint32_t *) data; 361 | char **tmp_char = (char **) data; 362 | 363 | switch (info_type) { 364 | case ACCT_GATHER_PROFILE_DIR: 365 | *tmp_char = xstrdup(influxdb_conf.host); 366 | break; 367 | case ACCT_GATHER_PROFILE_DEFAULT: 368 | *uint32 = influxdb_conf.def; 369 | break; 370 | case ACCT_GATHER_PROFILE_RUNNING: 371 | *uint32 = g_profile_running; 372 | break; 373 | default: 374 | debug2("acct_gather_profile_p_get info_type %d invalid", 375 | info_type); 376 | } 377 | } 378 | 379 | extern int acct_gather_profile_p_node_step_start(stepd_step_rec_t* job) 380 | { 381 | int rc = SLURM_SUCCESS; 382 | 383 | char *profile_str; 384 | 385 | xassert(_run_in_daemon()); 386 | 387 | g_job = job; 388 | profile_str = acct_gather_profile_to_string(g_job->profile); 389 | info("PROFILE: option --profile=%s", profile_str); 390 | g_profile_running = _determine_profile(); 391 | return rc; 392 | } 393 | 394 | extern int acct_gather_profile_p_child_forked(void) 395 | { 396 | return SLURM_SUCCESS; 397 | } 398 | 399 | extern int acct_gather_profile_p_node_step_end(void) 400 | { 401 | int rc = SLURM_SUCCESS; 402 | 403 | xassert(_run_in_daemon()); 404 | 405 | 406 | return rc; 407 | } 408 | 409 | extern int acct_gather_profile_p_task_start(uint32_t taskid) 410 | { 411 | int rc = SLURM_SUCCESS; 412 | 413 | info("PROFILE: task_start with %d prof",g_profile_running); 414 | xassert(_run_in_daemon()); 415 | xassert(g_job); 416 | 417 | xassert(g_profile_running != ACCT_GATHER_PROFILE_NOT_SET); 418 | 419 | if (g_profile_running <= ACCT_GATHER_PROFILE_NONE) 420 | return rc; 421 | 422 | if (debug_flags & DEBUG_FLAG_PROFILE) 423 | info("PROFILE: task_start"); 424 | 425 | return rc; 426 | } 427 | 428 | extern int acct_gather_profile_p_task_end(pid_t taskpid) 429 | { 430 | if (debug_flags & DEBUG_FLAG_PROFILE) 431 | info("PROFILE: task_end"); 432 | DEF_TIMERS; 433 | START_TIMER; 434 | _send_data(NULL); 435 | END_TIMER; 436 | debug("PROFILE: task_end took %s",TIME_STR); 437 | return SLURM_SUCCESS; 438 | } 439 | 440 | extern int acct_gather_profile_p_create_group(const char* name) 441 | { 442 | return 0; 443 | } 444 | 445 | extern int acct_gather_profile_p_create_dataset( 446 | const char* name, int parent, 447 | acct_gather_profile_dataset_t *dataset) 448 | { 449 | table_t * table; 450 | acct_gather_profile_dataset_t *dataset_loc = dataset; 451 | 452 | if (g_profile_running <= ACCT_GATHER_PROFILE_NONE) 453 | return SLURM_ERROR; 454 | 455 | debug("acct_gather_profile_p_create_dataset %s", name); 456 | 457 | // compute the size of the type needed to create the table 458 | if (tables_cur_len == tables_max_len) { 459 | if (tables_max_len == 0) 460 | ++tables_max_len; 461 | tables_max_len *= 2; 462 | tables = xrealloc(tables, tables_max_len * sizeof(table_t)); 463 | } 464 | table = &(tables[tables_cur_len]); 465 | table->name = xstrdup(name); 466 | table->size = 0; 467 | while (dataset_loc && (dataset_loc->type != PROFILE_FIELD_NOT_SET)) { 468 | table->names = xrealloc(table->names, 469 | (table->size+1) * sizeof(char *)); 470 | table->types = xrealloc(table->types, 471 | (table->size+1) * sizeof(char *)); 472 | (table->names)[table->size] = xstrdup(dataset_loc->name); 473 | switch (dataset_loc->type) { 474 | case PROFILE_FIELD_UINT64: 475 | table->types[table->size] = 476 | PROFILE_FIELD_UINT64; 477 | break; 478 | case PROFILE_FIELD_DOUBLE: 479 | table->types[table->size] = 480 | PROFILE_FIELD_DOUBLE; 481 | break; 482 | case PROFILE_FIELD_NOT_SET: 483 | break; 484 | } 485 | table->size++; 486 | dataset_loc++; 487 | } 488 | ++tables_cur_len; 489 | return tables_cur_len - 1; 490 | } 491 | 492 | union data_t{ 493 | uint64_t u; 494 | double d; 495 | }; 496 | 497 | extern int acct_gather_profile_p_add_sample_data(int table_id, void *data, 498 | time_t sample_time) 499 | { 500 | 501 | 502 | 503 | table_t *table = &tables[table_id]; 504 | 505 | int i = 0; 506 | char *str = NULL; 507 | for(;isize;i++){ 508 | switch (table->types[i]) { 509 | case PROFILE_FIELD_UINT64: 510 | xstrfmtcat(str,"%s,job=%d,step=%d,task=%s," 511 | "host=%s value=%"PRIu64" " 512 | "%"PRIu64"\n", 513 | table->names[i],g_job->jobid, 514 | g_job->stepid,table->name, 515 | g_job->node_name, 516 | ((union data_t*)data)[i].u, 517 | sample_time); 518 | break; 519 | case PROFILE_FIELD_DOUBLE: 520 | xstrfmtcat(str,"%s,job=%d,step=%d,task=%s," 521 | "host=%s value=%.2f %"PRIu64"" 522 | "\n",table->names[i], 523 | g_job->jobid,g_job->stepid, 524 | table->name,g_job->node_name, 525 | ((union data_t*)data)[i].d, 526 | sample_time); 527 | break; 528 | case PROFILE_FIELD_NOT_SET: 529 | break; 530 | } 531 | } 532 | 533 | DEF_TIMERS; 534 | START_TIMER; 535 | _send_data(str); 536 | END_TIMER; 537 | xfree(str); 538 | debug("PROFILE: took %s",TIME_STR); 539 | debug("PROFILE: data sent"); 540 | 541 | return SLURM_SUCCESS; 542 | } 543 | 544 | extern void acct_gather_profile_p_conf_values(List *data) 545 | { 546 | config_key_pair_t *key_pair; 547 | 548 | xassert(*data); 549 | 550 | key_pair = xmalloc(sizeof(config_key_pair_t)); 551 | key_pair->name = xstrdup("ProfileInfluxDBHost"); 552 | key_pair->value = xstrdup(influxdb_conf.host); 553 | list_append(*data, key_pair); 554 | 555 | key_pair = xmalloc(sizeof(config_key_pair_t)); 556 | key_pair->name = xstrdup("ProfileInfluxDBDatabase"); 557 | key_pair->value = xstrdup(influxdb_conf.database); 558 | list_append(*data, key_pair); 559 | 560 | key_pair = xmalloc(sizeof(config_key_pair_t)); 561 | key_pair->name = xstrdup("ProfileInfluxDBDefault"); 562 | key_pair->value = 563 | xstrdup(acct_gather_profile_to_string(influxdb_conf.def)); 564 | list_append(*data, key_pair); 565 | return; 566 | 567 | } 568 | 569 | extern bool acct_gather_profile_p_is_active(uint32_t type) 570 | { 571 | if (g_profile_running <= ACCT_GATHER_PROFILE_NONE) 572 | return false; 573 | return (type == ACCT_GATHER_PROFILE_NOT_SET) 574 | || (g_profile_running & type); 575 | } 576 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- 1 | # This file is to be processed with autoconf to generate a configure script 2 | 3 | dnl Prologue 4 | dnl 5 | 6 | AC_INIT(slurm, m4_esyscmd([perl -ne 'print,exit if s/^\s*VERSION:\s*(\d*.\d*).\S*/\1/i' ./META | sed 's/^v//' | tr '-' '_' | tr -d '\n']), [slurm-dev@schedmd.com], [], [https://slurm.schedmd.com]) 7 | AC_PREREQ(2.59) 8 | AC_CONFIG_SRCDIR([configure.ac]) 9 | AC_CONFIG_AUX_DIR([auxdir]) 10 | AC_CANONICAL_TARGET([]) 11 | 12 | dnl the is a generic flag to avoid building things 13 | AM_CONDITIONAL(DONT_BUILD, test "1" = "0") 14 | 15 | X_AC_GPL_LICENSED 16 | 17 | # Determine project/version from META file. 18 | # Sets PACKAGE, VERSION, SLURM_VERSION 19 | X_AC_SLURM_VERSION 20 | 21 | dnl Initialize Automake 22 | dnl 23 | dnl If you ever change to use AM_INIT_AUTOMAKE(subdir-objects) edit 24 | dnl auxdir/slurm.m4 to not define VERSION 25 | dnl 26 | AM_INIT_AUTOMAKE(no-define) 27 | AM_MAINTAINER_MODE 28 | AC_CONFIG_HEADERS([config.h]) 29 | AC_CONFIG_HEADERS([slurm/slurm.h]) 30 | 31 | X_AC_RPATH 32 | 33 | dnl This sets the first compiler to be C instead of C++ (which would happen 34 | dnl if X_AC_BGQ was the first thing called. 35 | X_AC_DATABASES 36 | 37 | X_AC_BG 38 | 39 | dnl This needs to be close to the front to set CFLAGS=-m64, but needs to 40 | dnl be after something that does a AC_LINK_IFELSE or the compiler configure 41 | dnl checks for will be C++ instead of C. 42 | X_AC_BGQ 43 | 44 | dnl We need to know if this is a Q system 45 | AM_CONDITIONAL(BGQ_LOADED, test "x$ac_bgq_loaded" = "xyes") 46 | AC_SUBST(BGQ_LOADED) 47 | 48 | dnl ok now check if We are on a real L or P system, (test if to build srun 49 | dnl or not. If we are emulating things we should build it. 50 | AM_CONDITIONAL(REAL_BGQ_LOADED, test "x$ac_real_bluegene_loaded" = "xyes") 51 | AC_SUBST(REAL_BGQ_LOADED) 52 | 53 | 54 | dnl ok now check if any bluegene was loaded. 55 | AM_CONDITIONAL(BLUEGENE_LOADED, test "x$ac_bluegene_loaded" = "xyes") 56 | AC_SUBST(BLUEGENE_LOADED) 57 | 58 | 59 | dnl 60 | dnl Check to see if this architecture should use slurm_* prefix function 61 | dnl aliases for plugins. 62 | dnl 63 | case "$host" in 64 | *darwin*) AC_DEFINE(USE_ALIAS, 0, 65 | [Define slurm_ prefix function aliases for plugins]) ;; 66 | *) AC_DEFINE(USE_ALIAS, 1, 67 | [Define slurm_ prefix function aliases for plugins]) ;; 68 | esac 69 | 70 | ac_have_cygwin=no 71 | dnl 72 | dnl add some flags for Solaris and cygwin 73 | dnl 74 | case "$host" in 75 | *cygwin) LDFLAGS="$LDFLAGS -no-undefined" 76 | SO_LDFLAGS="$SO_LDFLAGS \$(top_builddir)/src/api/libslurmhelper.la" 77 | AC_SUBST(SO_LDFLAGS) 78 | ac_have_cygwin=yes 79 | ;; 80 | *solaris*) CC="/usr/sfw/bin/gcc" 81 | CFLAGS="$CFLAGS -D_POSIX_PTHREAD_SEMANTICS -I/usr/sfw/include" 82 | LDFLAGS="$LDFLAGS -L/usr/sfw/lib" 83 | ;; 84 | esac 85 | AM_CONDITIONAL(WITH_CYGWIN, test x"$ac_have_cygwin" = x"yes") 86 | 87 | dnl Checks for programs. 88 | dnl 89 | AC_PROG_CC 90 | AC_PROG_CXX 91 | AC_PROG_MAKE_SET 92 | AC_PROG_LIBTOOL 93 | PKG_PROG_PKG_CONFIG([0.9.0]) 94 | 95 | AM_CONDITIONAL(WITH_CXX, test -n "$ac_ct_CXX") 96 | AM_CONDITIONAL(WITH_GNU_LD, test "$with_gnu_ld" = "yes") 97 | 98 | AC_PATH_PROG([SLEEP_CMD], [sleep], [/bin/sleep]) 99 | AC_DEFINE_UNQUOTED([SLEEP_CMD], ["$SLEEP_CMD"], [Define path to sleep command]) 100 | 101 | AC_PATH_PROG([SUCMD], [su], [/bin/su]) 102 | AC_DEFINE_UNQUOTED([SUCMD], ["$SUCMD"], [Define path to su command]) 103 | 104 | dnl Checks for libraries 105 | dnl 106 | AC_SEARCH_LIBS([socket], [socket]) 107 | AC_SEARCH_LIBS([gethostbyname], [nsl]) 108 | AC_SEARCH_LIBS([hstrerror], [resolv]) 109 | AC_SEARCH_LIBS([kstat_open], [kstat]) 110 | 111 | dnl Checks for header files. 112 | dnl 113 | AC_CHECK_HEADERS(mcheck.h values.h socket.h sys/socket.h \ 114 | stdbool.h sys/ipc.h sys/shm.h sys/sem.h errno.h \ 115 | stdlib.h dirent.h pthread.h sys/prctl.h \ 116 | sysint.h inttypes.h termcap.h netdb.h sys/socket.h \ 117 | sys/systemcfg.h ncurses.h curses.h sys/dr.h sys/vfs.h \ 118 | pam/pam_appl.h security/pam_appl.h sys/sysctl.h \ 119 | pty.h utmp.h \ 120 | sys/syslog.h linux/sched.h \ 121 | kstat.h paths.h limits.h sys/statfs.h sys/ptrace.h \ 122 | float.h sys/statvfs.h 123 | ) 124 | AC_HEADER_SYS_WAIT 125 | AC_HEADER_TIME 126 | AC_HEADER_STDC 127 | 128 | 129 | dnl Checks for structures. 130 | dnl 131 | X_AC__SYSTEM_CONFIGURATION 132 | 133 | dnl Check for dlfcn 134 | dnl 135 | X_AC_DLFCN 136 | 137 | dnl check to see if glibc's program_invocation_name is available: 138 | dnl 139 | X_AC_SLURM_PROGRAM_INVOCATION_NAME 140 | 141 | dnl Check if ptrace takes four or five arguments 142 | dnl 143 | X_AC_PTRACE 144 | 145 | dnl Check of sched_getaffinity exists and it's argument count 146 | dnl 147 | X_AC_AFFINITY 148 | 149 | dnl 150 | dnl Check for PAM module support 151 | X_AC_PAM 152 | 153 | dnl 154 | dnl Check for ISO compliance 155 | X_AC_ISO 156 | 157 | dnl 158 | dnl Check if we want to load .login with sbatch --get-user-env option 159 | X_AC_ENV_LOGIC 160 | 161 | dnl Checks for types. 162 | dnl 163 | X_AC_SLURM_BIGENDIAN 164 | 165 | dnl Check for JSON parser 166 | X_AC_JSON 167 | 168 | dnl Checks for compiler characteristics. 169 | dnl 170 | AC_PROG_GCC_TRADITIONAL([]) 171 | 172 | AX_GCC_BUILTIN(__builtin_clzll) 173 | AX_GCC_BUILTIN(__builtin_ctzll) 174 | AX_GCC_BUILTIN(__builtin_popcountll) 175 | 176 | dnl checks for library functions. 177 | dnl 178 | AC_FUNC_MALLOC 179 | AC_FUNC_STRERROR_R 180 | AC_CHECK_FUNCS( \ 181 | fdatasync \ 182 | hstrerror \ 183 | strerror \ 184 | mtrace \ 185 | strndup \ 186 | strlcpy \ 187 | strsignal \ 188 | inet_aton \ 189 | inet_ntop \ 190 | inet_pton \ 191 | setproctitle \ 192 | sysctlbyname \ 193 | cfmakeraw \ 194 | setresuid \ 195 | get_current_dir_name \ 196 | faccessat \ 197 | eaccess \ 198 | statvfs \ 199 | statfs \ 200 | ) 201 | 202 | AC_CHECK_DECLS([hstrerror, strsignal, sys_siglist]) 203 | 204 | ACX_PTHREAD([], AC_MSG_ERROR([Error: Cannot figure out how to use pthreads!])) 205 | 206 | LDFLAGS="$LDFLAGS " 207 | CFLAGS="$CFLAGS $PTHREAD_CFLAGS" 208 | LIBS="$PTHREAD_LIBS $LIBS" 209 | 210 | X_AC_DIMENSIONS 211 | 212 | X_AC_OFED 213 | 214 | AX_LIB_HDF5() 215 | AM_CONDITIONAL(BUILD_HDF5, test "$with_hdf5" = "yes") 216 | # Some older systems (Debian/Ubuntu/...) configure HDF5 with 217 | # --with-default-api-version=v16 which creates problems for slurm 218 | # because slurm uses the 1.8 API. By defining this CPP macro we get 219 | # the 1.8 API. 220 | AC_DEFINE([H5_NO_DEPRECATED_SYMBOLS], [1], [Make sure we get the 1.8 HDF5 API]) 221 | 222 | AX_CHECK_ZLIB([], []) 223 | X_AC_LZ4 224 | X_AC_HWLOC 225 | X_AC_PMIX 226 | X_AC_FREEIPMI 227 | X_AC_SLURM_SEMAPHORE 228 | X_AC_RRDTOOL 229 | 230 | X_AC_NCURSES 231 | AM_CONDITIONAL(HAVE_SOME_CURSES, test "x$ac_have_some_curses" = "xyes") 232 | AC_SUBST(HAVE_SOME_CURSES) 233 | 234 | # 235 | # Tests for Check 236 | # 237 | 238 | PKG_CHECK_MODULES([CHECK], [check >= 0.9.8], [ac_have_check="yes"], [ac_have_check="no"]) 239 | AM_CONDITIONAL(HAVE_CHECK, test "x$ac_have_check" = "xyes") 240 | 241 | # 242 | # Tests for GTK+ 243 | # 244 | 245 | # use the correct libs if running on 64bit 246 | if test -d "/usr/lib64/pkgconfig"; then 247 | PKG_CONFIG_PATH="/usr/lib64/pkgconfig/:$PKG_CONFIG_PATH" 248 | fi 249 | 250 | if test -d "/opt/gnome/lib64/pkgconfig"; then 251 | PKG_CONFIG_PATH="/opt/gnome/lib64/pkgconfig/:$PKG_CONFIG_PATH" 252 | fi 253 | 254 | AM_PATH_GLIB_2_0([2.7.1], [ac_glib_test="yes"], [ac_glib_test="no"], [gthread]) 255 | 256 | if test ${glib_config_minor_version=0} -ge 32 ; then 257 | AC_DEFINE([GLIB_NEW_THREADS], 1, [Define to 1 if using glib-2.32.0 or higher]) 258 | fi 259 | 260 | AM_PATH_GTK_2_0([2.7.1], [ac_gtk_test="yes"], [ac_gtk_test="no"], [gthread]) 261 | if test ${gtk_config_minor_version=0} -ge 10 ; then 262 | AC_DEFINE([GTK2_USE_RADIO_SET], 1, [Define to 1 if using gtk+-2.10.0 or higher]) 263 | fi 264 | 265 | if test ${gtk_config_minor_version=0} -ge 12 ; then 266 | AC_DEFINE([GTK2_USE_TOOLTIP], 1, [Define to 1 if using gtk+-2.12.0 or higher]) 267 | fi 268 | 269 | if test ${gtk_config_minor_version=0} -ge 14 ; then 270 | AC_DEFINE([GTK2_USE_GET_FOCUS], 1, [Define to 1 if using gtk+-2.14.0 or higher]) 271 | fi 272 | 273 | if test "x$ac_glib_test" != "xyes" -o "x$ac_gtk_test" != "xyes"; then 274 | AC_MSG_WARN([cannot build sview without gtk library]); 275 | fi 276 | 277 | AM_CONDITIONAL(BUILD_SVIEW, [test "x$ac_glib_test" = "xyes"] && [test "x$ac_gtk_test" = "xyes"]) 278 | 279 | dnl Cray ALPS/Basil support depends on mySQL 280 | X_AC_CRAY 281 | 282 | dnl checks for system services. 283 | dnl 284 | 285 | 286 | dnl checks for system-specific stuff. 287 | dnl 288 | 289 | dnl check for how to emulate setproctitle 290 | dnl 291 | X_AC_SETPROCTITLE 292 | 293 | dnl check for debug compilation, must follow X_AC_CRAY 294 | dnl 295 | X_AC_DEBUG 296 | AM_CONDITIONAL(DEBUG_MODULES, test "x$ac_debug" = "xtrue") 297 | 298 | 299 | dnl check for slurmctld, slurmd and slurmdbd default ports, 300 | dnl and default number of slurmctld ports 301 | dnl 302 | X_AC_SLURM_PORTS([6817], [6818], [6819], [1]) 303 | 304 | 305 | dnl add SLURM_PREFIX to config.h 306 | dnl 307 | if test "x$prefix" = "xNONE" ; then 308 | AC_DEFINE_UNQUOTED(SLURM_PREFIX, "/usr/local", [Define Slurm installation prefix]) 309 | else 310 | AC_DEFINE_UNQUOTED(SLURM_PREFIX, "$prefix", [Define Slurm installation prefix]) 311 | fi 312 | AC_SUBST(SLURM_PREFIX) 313 | 314 | dnl check for whether to include IBM NRT (Network Resource Table) support 315 | dnl 316 | X_AC_NRT 317 | 318 | dnl check for SGI job container support 319 | dnl 320 | X_AC_SGI_JOB 321 | 322 | 323 | dnl check for netloc library 324 | dnl 325 | X_AC_NETLOC 326 | 327 | dnl check for lua library 328 | dnl 329 | X_AC_LUA 330 | 331 | dnl check for presence of the man2html command 332 | dnl 333 | X_AC_MAN2HTML 334 | AM_CONDITIONAL(HAVE_MAN2HTML, test "x$ac_have_man2html" = "xyes") 335 | AC_SUBST(HAVE_MAN2HTML) 336 | 337 | dnl check if we can use standard printf functions 338 | dnl 339 | X_AC_PRINTF_NULL 340 | 341 | dnl Check for whether to include readline support 342 | dnl 343 | X_AC_READLINE 344 | 345 | dnl 346 | dnl 347 | X_AC_SLURM_WITH_SSL 348 | AM_CONDITIONAL(HAVE_OPENSSL, test "x$ac_have_openssl" = "xyes") 349 | AC_SUBST(HAVE_OPENSSL) 350 | 351 | dnl 352 | dnl Check for compilation of SLURM auth modules: 353 | dnl 354 | X_AC_MUNGE 355 | 356 | dnl 357 | dnl Check if multiple-slurmd support is requested and define MULTIPLE_SLURMD 358 | dnl if it is. 359 | dnl 360 | AC_MSG_CHECKING(whether to enable multiple-slurmd support) 361 | AC_ARG_ENABLE([multiple-slurmd], 362 | AS_HELP_STRING(--enable-multiple-slurmd,enable multiple-slurmd support), 363 | [ case "$enableval" in 364 | yes) multiple_slurmd=yes ;; 365 | no) multiple_slurmd=no ;; 366 | *) AC_MSG_ERROR([bad value "$enableval" for --enable-multiple-slurmd]);; 367 | esac ] 368 | ) 369 | if test "x$multiple_slurmd" = "xyes"; then 370 | AC_DEFINE([MULTIPLE_SLURMD], [1], [Enable multiple slurmd on one node]) 371 | AC_MSG_RESULT([yes]) 372 | else 373 | AC_MSG_RESULT([no]) 374 | fi 375 | 376 | 377 | savedLIBS="$LIBS" 378 | savedCFLAGS="$CFLAGS" 379 | LIBS="$SSL_LIBS $LIBS" 380 | CFLAGS="$SSL_CPPFLAGS $CFLAGS" 381 | LIBS="$savedLIBS" 382 | CFLAGS="$savedCFLAGS" 383 | 384 | savedLIBS="$LIBS" 385 | LIBS="-lutil $LIBS" 386 | AC_CHECK_LIB(util, openpty, [UTIL_LIBS="-lutil"], []) 387 | AC_SUBST(UTIL_LIBS) 388 | LIBS="$savedLIBS" 389 | 390 | dnl 391 | dnl Check for compilation of SLURM with BLCR support: 392 | dnl 393 | X_AC_BLCR 394 | 395 | dnl 396 | dnl Check for compilation of SLURM with CURL support: 397 | dnl 398 | LIBCURL_CHECK_CONFIG 399 | 400 | dnl 401 | dnl Set some configuration based upon multiple configuration parameters 402 | dnl 403 | ac_build_smap="no" 404 | if test "x$ac_have_some_curses" = "xyes" ; then 405 | ac_build_smap="yes" 406 | fi 407 | AM_CONDITIONAL(BUILD_SMAP, test "x$ac_build_smap" = "xyes") 408 | 409 | dnl All slurm Makefiles: 410 | 411 | AC_CONFIG_FILES([Makefile 412 | auxdir/Makefile 413 | contribs/Makefile 414 | contribs/cray/Makefile 415 | contribs/cray/csm/Makefile 416 | contribs/lua/Makefile 417 | contribs/mic/Makefile 418 | contribs/pam/Makefile 419 | contribs/pam_slurm_adopt/Makefile 420 | contribs/perlapi/Makefile 421 | contribs/perlapi/libslurm/Makefile 422 | contribs/perlapi/libslurm/perl/Makefile.PL 423 | contribs/perlapi/libslurmdb/Makefile 424 | contribs/perlapi/libslurmdb/perl/Makefile.PL 425 | contribs/seff/Makefile 426 | contribs/torque/Makefile 427 | contribs/openlava/Makefile 428 | contribs/phpext/Makefile 429 | contribs/phpext/slurm_php/config.m4 430 | contribs/sgather/Makefile 431 | contribs/sgi/Makefile 432 | contribs/sjobexit/Makefile 433 | contribs/pmi2/Makefile 434 | doc/Makefile 435 | doc/man/Makefile 436 | doc/man/man1/Makefile 437 | doc/man/man3/Makefile 438 | doc/man/man5/Makefile 439 | doc/man/man8/Makefile 440 | doc/html/Makefile 441 | doc/html/configurator.html 442 | doc/html/configurator.easy.html 443 | etc/Makefile 444 | src/Makefile 445 | src/api/Makefile 446 | src/bcast/Makefile 447 | src/common/Makefile 448 | src/db_api/Makefile 449 | src/layouts/Makefile 450 | src/layouts/power/Makefile 451 | src/layouts/unit/Makefile 452 | src/database/Makefile 453 | src/sacct/Makefile 454 | src/sacctmgr/Makefile 455 | src/sreport/Makefile 456 | src/salloc/Makefile 457 | src/sbatch/Makefile 458 | src/sbcast/Makefile 459 | src/sattach/Makefile 460 | src/scancel/Makefile 461 | src/scontrol/Makefile 462 | src/sdiag/Makefile 463 | src/sinfo/Makefile 464 | src/slurmctld/Makefile 465 | src/slurmd/Makefile 466 | src/slurmd/common/Makefile 467 | src/slurmd/slurmd/Makefile 468 | src/slurmd/slurmstepd/Makefile 469 | src/slurmdbd/Makefile 470 | src/smap/Makefile 471 | src/smd/Makefile 472 | src/sprio/Makefile 473 | src/squeue/Makefile 474 | src/srun/Makefile 475 | src/srun/libsrun/Makefile 476 | src/srun_cr/Makefile 477 | src/sshare/Makefile 478 | src/sstat/Makefile 479 | src/strigger/Makefile 480 | src/sview/Makefile 481 | src/plugins/Makefile 482 | src/plugins/accounting_storage/Makefile 483 | src/plugins/accounting_storage/common/Makefile 484 | src/plugins/accounting_storage/filetxt/Makefile 485 | src/plugins/accounting_storage/mysql/Makefile 486 | src/plugins/accounting_storage/none/Makefile 487 | src/plugins/accounting_storage/slurmdbd/Makefile 488 | src/plugins/acct_gather_energy/Makefile 489 | src/plugins/acct_gather_energy/cray/Makefile 490 | src/plugins/acct_gather_energy/rapl/Makefile 491 | src/plugins/acct_gather_energy/ibmaem/Makefile 492 | src/plugins/acct_gather_energy/ipmi/Makefile 493 | src/plugins/acct_gather_energy/none/Makefile 494 | src/plugins/acct_gather_infiniband/Makefile 495 | src/plugins/acct_gather_infiniband/ofed/Makefile 496 | src/plugins/acct_gather_infiniband/none/Makefile 497 | src/plugins/acct_gather_filesystem/Makefile 498 | src/plugins/acct_gather_filesystem/lustre/Makefile 499 | src/plugins/acct_gather_filesystem/none/Makefile 500 | src/plugins/acct_gather_profile/Makefile 501 | src/plugins/acct_gather_profile/hdf5/Makefile 502 | src/plugins/acct_gather_profile/hdf5/sh5util/Makefile 503 | src/plugins/acct_gather_profile/hdf5/sh5util/libsh5util_old/Makefile 504 | src/plugins/acct_gather_profile/influxdb/Makefile 505 | src/plugins/acct_gather_profile/none/Makefile 506 | src/plugins/auth/Makefile 507 | src/plugins/auth/munge/Makefile 508 | src/plugins/auth/none/Makefile 509 | src/plugins/burst_buffer/Makefile 510 | src/plugins/burst_buffer/common/Makefile 511 | src/plugins/burst_buffer/cray/Makefile 512 | src/plugins/burst_buffer/generic/Makefile 513 | src/plugins/checkpoint/Makefile 514 | src/plugins/checkpoint/blcr/Makefile 515 | src/plugins/checkpoint/blcr/cr_checkpoint.sh 516 | src/plugins/checkpoint/blcr/cr_restart.sh 517 | src/plugins/checkpoint/none/Makefile 518 | src/plugins/checkpoint/ompi/Makefile 519 | src/plugins/checkpoint/poe/Makefile 520 | src/plugins/core_spec/Makefile 521 | src/plugins/core_spec/cray/Makefile 522 | src/plugins/core_spec/none/Makefile 523 | src/plugins/crypto/Makefile 524 | src/plugins/crypto/munge/Makefile 525 | src/plugins/crypto/openssl/Makefile 526 | src/plugins/ext_sensors/Makefile 527 | src/plugins/ext_sensors/rrd/Makefile 528 | src/plugins/ext_sensors/none/Makefile 529 | src/plugins/gres/Makefile 530 | src/plugins/gres/gpu/Makefile 531 | src/plugins/gres/nic/Makefile 532 | src/plugins/gres/mic/Makefile 533 | src/plugins/jobacct_gather/Makefile 534 | src/plugins/jobacct_gather/common/Makefile 535 | src/plugins/jobacct_gather/linux/Makefile 536 | src/plugins/jobacct_gather/cgroup/Makefile 537 | src/plugins/jobacct_gather/none/Makefile 538 | src/plugins/jobcomp/Makefile 539 | src/plugins/jobcomp/elasticsearch/Makefile 540 | src/plugins/jobcomp/filetxt/Makefile 541 | src/plugins/jobcomp/none/Makefile 542 | src/plugins/jobcomp/script/Makefile 543 | src/plugins/jobcomp/mysql/Makefile 544 | src/plugins/job_container/Makefile 545 | src/plugins/job_container/cncu/Makefile 546 | src/plugins/job_container/none/Makefile 547 | src/plugins/job_submit/Makefile 548 | src/plugins/job_submit/all_partitions/Makefile 549 | src/plugins/job_submit/cray/Makefile 550 | src/plugins/job_submit/defaults/Makefile 551 | src/plugins/job_submit/logging/Makefile 552 | src/plugins/job_submit/lua/Makefile 553 | src/plugins/job_submit/partition/Makefile 554 | src/plugins/job_submit/pbs/Makefile 555 | src/plugins/job_submit/require_timelimit/Makefile 556 | src/plugins/job_submit/throttle/Makefile 557 | src/plugins/launch/Makefile 558 | src/plugins/launch/aprun/Makefile 559 | src/plugins/launch/poe/Makefile 560 | src/plugins/launch/runjob/Makefile 561 | src/plugins/launch/slurm/Makefile 562 | src/plugins/mcs/Makefile 563 | src/plugins/mcs/account/Makefile 564 | src/plugins/mcs/group/Makefile 565 | src/plugins/mcs/none/Makefile 566 | src/plugins/mcs/user/Makefile 567 | src/plugins/node_features/Makefile 568 | src/plugins/node_features/knl_cray/Makefile 569 | src/plugins/node_features/knl_generic/Makefile 570 | src/plugins/power/Makefile 571 | src/plugins/power/common/Makefile 572 | src/plugins/power/cray/Makefile 573 | src/plugins/power/none/Makefile 574 | src/plugins/preempt/Makefile 575 | src/plugins/preempt/job_prio/Makefile 576 | src/plugins/preempt/none/Makefile 577 | src/plugins/preempt/partition_prio/Makefile 578 | src/plugins/preempt/qos/Makefile 579 | src/plugins/priority/Makefile 580 | src/plugins/priority/basic/Makefile 581 | src/plugins/priority/multifactor/Makefile 582 | src/plugins/proctrack/Makefile 583 | src/plugins/proctrack/cray/Makefile 584 | src/plugins/proctrack/cgroup/Makefile 585 | src/plugins/proctrack/pgid/Makefile 586 | src/plugins/proctrack/linuxproc/Makefile 587 | src/plugins/proctrack/sgi_job/Makefile 588 | src/plugins/proctrack/lua/Makefile 589 | src/plugins/route/Makefile 590 | src/plugins/route/default/Makefile 591 | src/plugins/route/topology/Makefile 592 | src/plugins/sched/Makefile 593 | src/plugins/sched/backfill/Makefile 594 | src/plugins/sched/builtin/Makefile 595 | src/plugins/sched/hold/Makefile 596 | src/plugins/select/Makefile 597 | src/plugins/select/alps/Makefile 598 | src/plugins/select/alps/libalps/Makefile 599 | src/plugins/select/alps/libemulate/Makefile 600 | src/plugins/select/bluegene/Makefile 601 | src/plugins/select/bluegene/ba_bgq/Makefile 602 | src/plugins/select/bluegene/bl_bgq/Makefile 603 | src/plugins/select/bluegene/sfree/Makefile 604 | src/plugins/select/cons_res/Makefile 605 | src/plugins/select/cray/Makefile 606 | src/plugins/select/linear/Makefile 607 | src/plugins/select/other/Makefile 608 | src/plugins/select/serial/Makefile 609 | src/plugins/slurmctld/Makefile 610 | src/plugins/slurmctld/nonstop/Makefile 611 | src/plugins/slurmd/Makefile 612 | src/plugins/switch/Makefile 613 | src/plugins/switch/cray/Makefile 614 | src/plugins/switch/generic/Makefile 615 | src/plugins/switch/none/Makefile 616 | src/plugins/switch/nrt/Makefile 617 | src/plugins/switch/nrt/libpermapi/Makefile 618 | src/plugins/mpi/Makefile 619 | src/plugins/mpi/mpich1_p4/Makefile 620 | src/plugins/mpi/mpich1_shmem/Makefile 621 | src/plugins/mpi/mpichgm/Makefile 622 | src/plugins/mpi/mpichmx/Makefile 623 | src/plugins/mpi/mvapich/Makefile 624 | src/plugins/mpi/lam/Makefile 625 | src/plugins/mpi/none/Makefile 626 | src/plugins/mpi/openmpi/Makefile 627 | src/plugins/mpi/pmi2/Makefile 628 | src/plugins/mpi/pmix/Makefile 629 | src/plugins/task/Makefile 630 | src/plugins/task/affinity/Makefile 631 | src/plugins/task/cgroup/Makefile 632 | src/plugins/task/cray/Makefile 633 | src/plugins/task/none/Makefile 634 | src/plugins/topology/Makefile 635 | src/plugins/topology/3d_torus/Makefile 636 | src/plugins/topology/hypercube/Makefile 637 | src/plugins/topology/node_rank/Makefile 638 | src/plugins/topology/none/Makefile 639 | src/plugins/topology/tree/Makefile 640 | testsuite/Makefile 641 | testsuite/expect/Makefile 642 | testsuite/slurm_unit/Makefile 643 | testsuite/slurm_unit/api/Makefile 644 | testsuite/slurm_unit/api/manual/Makefile 645 | testsuite/slurm_unit/common/Makefile 646 | ] 647 | ) 648 | 649 | AC_OUTPUT 650 | -------------------------------------------------------------------------------- /src/plugins/acct_gather_profile/influxdb/Makefile.in: -------------------------------------------------------------------------------- 1 | # Makefile.in generated by automake 1.13.4 from Makefile.am. 2 | # @configure_input@ 3 | 4 | # Copyright (C) 1994-2013 Free Software Foundation, Inc. 5 | 6 | # This Makefile.in is free software; the Free Software Foundation 7 | # gives unlimited permission to copy and/or distribute it, 8 | # with or without modifications, as long as this notice is preserved. 9 | 10 | # This program is distributed in the hope that it will be useful, 11 | # but WITHOUT ANY WARRANTY, to the extent permitted by law; without 12 | # even the implied warranty of MERCHANTABILITY or FITNESS FOR A 13 | # PARTICULAR PURPOSE. 14 | 15 | @SET_MAKE@ 16 | 17 | # Makefile for acct_gather_profile/influxdb plugin 18 | 19 | VPATH = @srcdir@ 20 | am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' 21 | am__make_running_with_option = \ 22 | case $${target_option-} in \ 23 | ?) ;; \ 24 | *) echo "am__make_running_with_option: internal error: invalid" \ 25 | "target option '$${target_option-}' specified" >&2; \ 26 | exit 1;; \ 27 | esac; \ 28 | has_opt=no; \ 29 | sane_makeflags=$$MAKEFLAGS; \ 30 | if $(am__is_gnu_make); then \ 31 | sane_makeflags=$$MFLAGS; \ 32 | else \ 33 | case $$MAKEFLAGS in \ 34 | *\\[\ \ ]*) \ 35 | bs=\\; \ 36 | sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ 37 | | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ 38 | esac; \ 39 | fi; \ 40 | skip_next=no; \ 41 | strip_trailopt () \ 42 | { \ 43 | flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ 44 | }; \ 45 | for flg in $$sane_makeflags; do \ 46 | test $$skip_next = yes && { skip_next=no; continue; }; \ 47 | case $$flg in \ 48 | *=*|--*) continue;; \ 49 | -*I) strip_trailopt 'I'; skip_next=yes;; \ 50 | -*I?*) strip_trailopt 'I';; \ 51 | -*O) strip_trailopt 'O'; skip_next=yes;; \ 52 | -*O?*) strip_trailopt 'O';; \ 53 | -*l) strip_trailopt 'l'; skip_next=yes;; \ 54 | -*l?*) strip_trailopt 'l';; \ 55 | -[dEDm]) skip_next=yes;; \ 56 | -[JT]) skip_next=yes;; \ 57 | esac; \ 58 | case $$flg in \ 59 | *$$target_option*) has_opt=yes; break;; \ 60 | esac; \ 61 | done; \ 62 | test $$has_opt = yes 63 | am__make_dryrun = (target_option=n; $(am__make_running_with_option)) 64 | am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) 65 | pkgdatadir = $(datadir)/@PACKAGE@ 66 | pkgincludedir = $(includedir)/@PACKAGE@ 67 | pkglibdir = $(libdir)/@PACKAGE@ 68 | pkglibexecdir = $(libexecdir)/@PACKAGE@ 69 | am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 70 | install_sh_DATA = $(install_sh) -c -m 644 71 | install_sh_PROGRAM = $(install_sh) -c 72 | install_sh_SCRIPT = $(install_sh) -c 73 | INSTALL_HEADER = $(INSTALL_DATA) 74 | transform = $(program_transform_name) 75 | NORMAL_INSTALL = : 76 | PRE_INSTALL = : 77 | POST_INSTALL = : 78 | NORMAL_UNINSTALL = : 79 | PRE_UNINSTALL = : 80 | POST_UNINSTALL = : 81 | build_triplet = @build@ 82 | host_triplet = @host@ 83 | target_triplet = @target@ 84 | subdir = src/plugins/acct_gather_profile/influxdb 85 | DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ 86 | $(top_srcdir)/auxdir/depcomp 87 | ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 88 | am__aclocal_m4_deps = $(top_srcdir)/auxdir/ax_lib_hdf5.m4 \ 89 | $(top_srcdir)/auxdir/ax_pthread.m4 \ 90 | $(top_srcdir)/auxdir/libtool.m4 \ 91 | $(top_srcdir)/auxdir/ltoptions.m4 \ 92 | $(top_srcdir)/auxdir/ltsugar.m4 \ 93 | $(top_srcdir)/auxdir/ltversion.m4 \ 94 | $(top_srcdir)/auxdir/lt~obsolete.m4 \ 95 | $(top_srcdir)/auxdir/slurm.m4 \ 96 | $(top_srcdir)/auxdir/x_ac__system_configuration.m4 \ 97 | $(top_srcdir)/auxdir/x_ac_affinity.m4 \ 98 | $(top_srcdir)/auxdir/x_ac_aix.m4 \ 99 | $(top_srcdir)/auxdir/x_ac_blcr.m4 \ 100 | $(top_srcdir)/auxdir/x_ac_bluegene.m4 \ 101 | $(top_srcdir)/auxdir/x_ac_cflags.m4 \ 102 | $(top_srcdir)/auxdir/x_ac_cray.m4 \ 103 | $(top_srcdir)/auxdir/x_ac_curl.m4 \ 104 | $(top_srcdir)/auxdir/x_ac_databases.m4 \ 105 | $(top_srcdir)/auxdir/x_ac_debug.m4 \ 106 | $(top_srcdir)/auxdir/x_ac_dlfcn.m4 \ 107 | $(top_srcdir)/auxdir/x_ac_env.m4 \ 108 | $(top_srcdir)/auxdir/x_ac_freeipmi.m4 \ 109 | $(top_srcdir)/auxdir/x_ac_gpl_licensed.m4 \ 110 | $(top_srcdir)/auxdir/x_ac_hwloc.m4 \ 111 | $(top_srcdir)/auxdir/x_ac_iso.m4 \ 112 | $(top_srcdir)/auxdir/x_ac_json.m4 \ 113 | $(top_srcdir)/auxdir/x_ac_lua.m4 \ 114 | $(top_srcdir)/auxdir/x_ac_man2html.m4 \ 115 | $(top_srcdir)/auxdir/x_ac_munge.m4 \ 116 | $(top_srcdir)/auxdir/x_ac_ncurses.m4 \ 117 | $(top_srcdir)/auxdir/x_ac_netloc.m4 \ 118 | $(top_srcdir)/auxdir/x_ac_nrt.m4 \ 119 | $(top_srcdir)/auxdir/x_ac_ofed.m4 \ 120 | $(top_srcdir)/auxdir/x_ac_pam.m4 \ 121 | $(top_srcdir)/auxdir/x_ac_printf_null.m4 \ 122 | $(top_srcdir)/auxdir/x_ac_ptrace.m4 \ 123 | $(top_srcdir)/auxdir/x_ac_readline.m4 \ 124 | $(top_srcdir)/auxdir/x_ac_rrdtool.m4 \ 125 | $(top_srcdir)/auxdir/x_ac_setpgrp.m4 \ 126 | $(top_srcdir)/auxdir/x_ac_setproctitle.m4 \ 127 | $(top_srcdir)/auxdir/x_ac_sgi_job.m4 \ 128 | $(top_srcdir)/auxdir/x_ac_slurm_ssl.m4 \ 129 | $(top_srcdir)/auxdir/x_ac_sun_const.m4 \ 130 | $(top_srcdir)/configure.ac 131 | am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ 132 | $(ACLOCAL_M4) 133 | mkinstalldirs = $(install_sh) -d 134 | CONFIG_HEADER = $(top_builddir)/config.h $(top_builddir)/slurm/slurm.h 135 | CONFIG_CLEAN_FILES = 136 | CONFIG_CLEAN_VPATH_FILES = 137 | am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; 138 | am__vpath_adj = case $$p in \ 139 | $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ 140 | *) f=$$p;; \ 141 | esac; 142 | am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; 143 | am__install_max = 40 144 | am__nobase_strip_setup = \ 145 | srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` 146 | am__nobase_strip = \ 147 | for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" 148 | am__nobase_list = $(am__nobase_strip_setup); \ 149 | for p in $$list; do echo "$$p $$p"; done | \ 150 | sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ 151 | $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ 152 | if (++n[$$2] == $(am__install_max)) \ 153 | { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ 154 | END { for (dir in files) print dir, files[dir] }' 155 | am__base_list = \ 156 | sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ 157 | sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' 158 | am__uninstall_files_from_dir = { \ 159 | test -z "$$files" \ 160 | || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ 161 | || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ 162 | $(am__cd) "$$dir" && rm -f $$files; }; \ 163 | } 164 | am__installdirs = "$(DESTDIR)$(pkglibdir)" 165 | LTLIBRARIES = $(pkglib_LTLIBRARIES) 166 | am__DEPENDENCIES_1 = 167 | acct_gather_profile_influxdb_la_DEPENDENCIES = $(am__DEPENDENCIES_1) 168 | am_acct_gather_profile_influxdb_la_OBJECTS = \ 169 | acct_gather_profile_influxdb.lo 170 | acct_gather_profile_influxdb_la_OBJECTS = \ 171 | $(am_acct_gather_profile_influxdb_la_OBJECTS) 172 | AM_V_lt = $(am__v_lt_@AM_V@) 173 | am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) 174 | am__v_lt_0 = --silent 175 | am__v_lt_1 = 176 | acct_gather_profile_influxdb_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ 177 | $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ 178 | $(AM_CFLAGS) $(CFLAGS) \ 179 | $(acct_gather_profile_influxdb_la_LDFLAGS) $(LDFLAGS) -o $@ 180 | @WITH_CURL_TRUE@am_acct_gather_profile_influxdb_la_rpath = -rpath \ 181 | @WITH_CURL_TRUE@ $(pkglibdir) 182 | AM_V_P = $(am__v_P_@AM_V@) 183 | am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) 184 | am__v_P_0 = false 185 | am__v_P_1 = : 186 | AM_V_GEN = $(am__v_GEN_@AM_V@) 187 | am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) 188 | am__v_GEN_0 = @echo " GEN " $@; 189 | am__v_GEN_1 = 190 | AM_V_at = $(am__v_at_@AM_V@) 191 | am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) 192 | am__v_at_0 = @ 193 | am__v_at_1 = 194 | DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) -I$(top_builddir)/slurm 195 | depcomp = $(SHELL) $(top_srcdir)/auxdir/depcomp 196 | am__depfiles_maybe = depfiles 197 | am__mv = mv -f 198 | COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ 199 | $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) 200 | LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ 201 | $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ 202 | $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ 203 | $(AM_CFLAGS) $(CFLAGS) 204 | AM_V_CC = $(am__v_CC_@AM_V@) 205 | am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) 206 | am__v_CC_0 = @echo " CC " $@; 207 | am__v_CC_1 = 208 | CCLD = $(CC) 209 | LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ 210 | $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ 211 | $(AM_LDFLAGS) $(LDFLAGS) -o $@ 212 | AM_V_CCLD = $(am__v_CCLD_@AM_V@) 213 | am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) 214 | am__v_CCLD_0 = @echo " CCLD " $@; 215 | am__v_CCLD_1 = 216 | SOURCES = $(acct_gather_profile_influxdb_la_SOURCES) 217 | DIST_SOURCES = $(acct_gather_profile_influxdb_la_SOURCES) 218 | am__can_run_installinfo = \ 219 | case $$AM_UPDATE_INFO_DIR in \ 220 | n|no|NO) false;; \ 221 | *) (install-info --version) >/dev/null 2>&1;; \ 222 | esac 223 | am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) 224 | # Read a list of newline-separated strings from the standard input, 225 | # and print each of them once, without duplicates. Input order is 226 | # *not* preserved. 227 | am__uniquify_input = $(AWK) '\ 228 | BEGIN { nonempty = 0; } \ 229 | { items[$$0] = 1; nonempty = 1; } \ 230 | END { if (nonempty) { for (i in items) print i; }; } \ 231 | ' 232 | # Make sure the list of sources is unique. This is necessary because, 233 | # e.g., the same source file might be shared among _SOURCES variables 234 | # for different programs/libraries. 235 | am__define_uniq_tagged_files = \ 236 | list='$(am__tagged_files)'; \ 237 | unique=`for i in $$list; do \ 238 | if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ 239 | done | $(am__uniquify_input)` 240 | ETAGS = etags 241 | CTAGS = ctags 242 | DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 243 | ACLOCAL = @ACLOCAL@ 244 | AMTAR = @AMTAR@ 245 | AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ 246 | AR = @AR@ 247 | AUTHD_CFLAGS = @AUTHD_CFLAGS@ 248 | AUTHD_LIBS = @AUTHD_LIBS@ 249 | AUTOCONF = @AUTOCONF@ 250 | AUTOHEADER = @AUTOHEADER@ 251 | AUTOMAKE = @AUTOMAKE@ 252 | AWK = @AWK@ 253 | BGL_LOADED = @BGL_LOADED@ 254 | BGQ_LOADED = @BGQ_LOADED@ 255 | BG_INCLUDES = @BG_INCLUDES@ 256 | BG_LDFLAGS = @BG_LDFLAGS@ 257 | BG_L_P_LOADED = @BG_L_P_LOADED@ 258 | BLCR_CPPFLAGS = @BLCR_CPPFLAGS@ 259 | BLCR_HOME = @BLCR_HOME@ 260 | BLCR_LDFLAGS = @BLCR_LDFLAGS@ 261 | BLCR_LIBS = @BLCR_LIBS@ 262 | BLUEGENE_LOADED = @BLUEGENE_LOADED@ 263 | CC = @CC@ 264 | CCDEPMODE = @CCDEPMODE@ 265 | CFLAGS = @CFLAGS@ 266 | CHECK_CFLAGS = @CHECK_CFLAGS@ 267 | CHECK_LIBS = @CHECK_LIBS@ 268 | CMD_LDFLAGS = @CMD_LDFLAGS@ 269 | CPP = @CPP@ 270 | CPPFLAGS = @CPPFLAGS@ 271 | CRAY_JOB_CPPFLAGS = @CRAY_JOB_CPPFLAGS@ 272 | CRAY_JOB_LDFLAGS = @CRAY_JOB_LDFLAGS@ 273 | CRAY_SELECT_CPPFLAGS = @CRAY_SELECT_CPPFLAGS@ 274 | CRAY_SELECT_LDFLAGS = @CRAY_SELECT_LDFLAGS@ 275 | CRAY_SWITCH_CPPFLAGS = @CRAY_SWITCH_CPPFLAGS@ 276 | CRAY_SWITCH_LDFLAGS = @CRAY_SWITCH_LDFLAGS@ 277 | CRAY_TASK_CPPFLAGS = @CRAY_TASK_CPPFLAGS@ 278 | CRAY_TASK_LDFLAGS = @CRAY_TASK_LDFLAGS@ 279 | CXX = @CXX@ 280 | CXXCPP = @CXXCPP@ 281 | CXXDEPMODE = @CXXDEPMODE@ 282 | CXXFLAGS = @CXXFLAGS@ 283 | CYGPATH_W = @CYGPATH_W@ 284 | DATAWARP_CPPFLAGS = @DATAWARP_CPPFLAGS@ 285 | DATAWARP_LDFLAGS = @DATAWARP_LDFLAGS@ 286 | DEFS = @DEFS@ 287 | DEPDIR = @DEPDIR@ 288 | DLLTOOL = @DLLTOOL@ 289 | DL_LIBS = @DL_LIBS@ 290 | DSYMUTIL = @DSYMUTIL@ 291 | DUMPBIN = @DUMPBIN@ 292 | ECHO_C = @ECHO_C@ 293 | ECHO_N = @ECHO_N@ 294 | ECHO_T = @ECHO_T@ 295 | EGREP = @EGREP@ 296 | EXEEXT = @EXEEXT@ 297 | FGREP = @FGREP@ 298 | FREEIPMI_CPPFLAGS = @FREEIPMI_CPPFLAGS@ 299 | FREEIPMI_LDFLAGS = @FREEIPMI_LDFLAGS@ 300 | FREEIPMI_LIBS = @FREEIPMI_LIBS@ 301 | GLIB_CFLAGS = @GLIB_CFLAGS@ 302 | GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ 303 | GLIB_GENMARSHAL = @GLIB_GENMARSHAL@ 304 | GLIB_LIBS = @GLIB_LIBS@ 305 | GLIB_MKENUMS = @GLIB_MKENUMS@ 306 | GOBJECT_QUERY = @GOBJECT_QUERY@ 307 | GREP = @GREP@ 308 | GTK_CFLAGS = @GTK_CFLAGS@ 309 | GTK_LIBS = @GTK_LIBS@ 310 | H5CC = @H5CC@ 311 | H5FC = @H5FC@ 312 | HAVEMYSQLCONFIG = @HAVEMYSQLCONFIG@ 313 | HAVE_AIX = @HAVE_AIX@ 314 | HAVE_MAN2HTML = @HAVE_MAN2HTML@ 315 | HAVE_NRT = @HAVE_NRT@ 316 | HAVE_OPENSSL = @HAVE_OPENSSL@ 317 | HAVE_SOME_CURSES = @HAVE_SOME_CURSES@ 318 | HDF5_CC = @HDF5_CC@ 319 | HDF5_CFLAGS = @HDF5_CFLAGS@ 320 | HDF5_CPPFLAGS = @HDF5_CPPFLAGS@ 321 | HDF5_FC = @HDF5_FC@ 322 | HDF5_FFLAGS = @HDF5_FFLAGS@ 323 | HDF5_FLIBS = @HDF5_FLIBS@ 324 | HDF5_LDFLAGS = @HDF5_LDFLAGS@ 325 | HDF5_LIBS = @HDF5_LIBS@ 326 | HDF5_VERSION = @HDF5_VERSION@ 327 | HWLOC_CPPFLAGS = @HWLOC_CPPFLAGS@ 328 | HWLOC_LDFLAGS = @HWLOC_LDFLAGS@ 329 | HWLOC_LIBS = @HWLOC_LIBS@ 330 | INSTALL = @INSTALL@ 331 | INSTALL_DATA = @INSTALL_DATA@ 332 | INSTALL_PROGRAM = @INSTALL_PROGRAM@ 333 | INSTALL_SCRIPT = @INSTALL_SCRIPT@ 334 | INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ 335 | JSON_CPPFLAGS = @JSON_CPPFLAGS@ 336 | JSON_LDFLAGS = @JSON_LDFLAGS@ 337 | LD = @LD@ 338 | LDFLAGS = @LDFLAGS@ 339 | LIBCURL = @LIBCURL@ 340 | LIBCURL_CPPFLAGS = @LIBCURL_CPPFLAGS@ 341 | LIBOBJS = @LIBOBJS@ 342 | LIBS = @LIBS@ 343 | LIBTOOL = @LIBTOOL@ 344 | LIB_LDFLAGS = @LIB_LDFLAGS@ 345 | LIPO = @LIPO@ 346 | LN_S = @LN_S@ 347 | LTLIBOBJS = @LTLIBOBJS@ 348 | MAINT = @MAINT@ 349 | MAKEINFO = @MAKEINFO@ 350 | MANIFEST_TOOL = @MANIFEST_TOOL@ 351 | MKDIR_P = @MKDIR_P@ 352 | MUNGE_CPPFLAGS = @MUNGE_CPPFLAGS@ 353 | MUNGE_DIR = @MUNGE_DIR@ 354 | MUNGE_LDFLAGS = @MUNGE_LDFLAGS@ 355 | MUNGE_LIBS = @MUNGE_LIBS@ 356 | MYSQL_CFLAGS = @MYSQL_CFLAGS@ 357 | MYSQL_LIBS = @MYSQL_LIBS@ 358 | NCURSES = @NCURSES@ 359 | NETLOC_CPPFLAGS = @NETLOC_CPPFLAGS@ 360 | NETLOC_LDFLAGS = @NETLOC_LDFLAGS@ 361 | NETLOC_LIBS = @NETLOC_LIBS@ 362 | NM = @NM@ 363 | NMEDIT = @NMEDIT@ 364 | NRT_CPPFLAGS = @NRT_CPPFLAGS@ 365 | NUMA_LIBS = @NUMA_LIBS@ 366 | OBJDUMP = @OBJDUMP@ 367 | OBJEXT = @OBJEXT@ 368 | OFED_CPPFLAGS = @OFED_CPPFLAGS@ 369 | OFED_LDFLAGS = @OFED_LDFLAGS@ 370 | OFED_LIBS = @OFED_LIBS@ 371 | OTOOL = @OTOOL@ 372 | OTOOL64 = @OTOOL64@ 373 | PACKAGE = @PACKAGE@ 374 | PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ 375 | PACKAGE_NAME = @PACKAGE_NAME@ 376 | PACKAGE_STRING = @PACKAGE_STRING@ 377 | PACKAGE_TARNAME = @PACKAGE_TARNAME@ 378 | PACKAGE_URL = @PACKAGE_URL@ 379 | PACKAGE_VERSION = @PACKAGE_VERSION@ 380 | PAM_DIR = @PAM_DIR@ 381 | PAM_LIBS = @PAM_LIBS@ 382 | PATH_SEPARATOR = @PATH_SEPARATOR@ 383 | PKG_CONFIG = @PKG_CONFIG@ 384 | PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ 385 | PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ 386 | PROCTRACKDIR = @PROCTRACKDIR@ 387 | PROJECT = @PROJECT@ 388 | PTHREAD_CC = @PTHREAD_CC@ 389 | PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ 390 | PTHREAD_LIBS = @PTHREAD_LIBS@ 391 | RANLIB = @RANLIB@ 392 | READLINE_LIBS = @READLINE_LIBS@ 393 | REAL_BGQ_LOADED = @REAL_BGQ_LOADED@ 394 | REAL_BG_L_P_LOADED = @REAL_BG_L_P_LOADED@ 395 | RELEASE = @RELEASE@ 396 | RRDTOOL_CPPFLAGS = @RRDTOOL_CPPFLAGS@ 397 | RRDTOOL_LDFLAGS = @RRDTOOL_LDFLAGS@ 398 | RRDTOOL_LIBS = @RRDTOOL_LIBS@ 399 | RUNJOB_LDFLAGS = @RUNJOB_LDFLAGS@ 400 | SED = @SED@ 401 | SEMAPHORE_LIBS = @SEMAPHORE_LIBS@ 402 | SEMAPHORE_SOURCES = @SEMAPHORE_SOURCES@ 403 | SET_MAKE = @SET_MAKE@ 404 | SHELL = @SHELL@ 405 | SLEEP_CMD = @SLEEP_CMD@ 406 | SLURMCTLD_PORT = @SLURMCTLD_PORT@ 407 | SLURMCTLD_PORT_COUNT = @SLURMCTLD_PORT_COUNT@ 408 | SLURMDBD_PORT = @SLURMDBD_PORT@ 409 | SLURMD_PORT = @SLURMD_PORT@ 410 | SLURM_API_AGE = @SLURM_API_AGE@ 411 | SLURM_API_CURRENT = @SLURM_API_CURRENT@ 412 | SLURM_API_MAJOR = @SLURM_API_MAJOR@ 413 | SLURM_API_REVISION = @SLURM_API_REVISION@ 414 | SLURM_API_VERSION = @SLURM_API_VERSION@ 415 | SLURM_MAJOR = @SLURM_MAJOR@ 416 | SLURM_MICRO = @SLURM_MICRO@ 417 | SLURM_MINOR = @SLURM_MINOR@ 418 | SLURM_PREFIX = @SLURM_PREFIX@ 419 | SLURM_VERSION_NUMBER = @SLURM_VERSION_NUMBER@ 420 | SLURM_VERSION_STRING = @SLURM_VERSION_STRING@ 421 | SO_LDFLAGS = @SO_LDFLAGS@ 422 | SSL_CPPFLAGS = @SSL_CPPFLAGS@ 423 | SSL_LDFLAGS = @SSL_LDFLAGS@ 424 | SSL_LIBS = @SSL_LIBS@ 425 | STRIP = @STRIP@ 426 | SUCMD = @SUCMD@ 427 | UTIL_LIBS = @UTIL_LIBS@ 428 | VERSION = @VERSION@ 429 | _libcurl_config = @_libcurl_config@ 430 | abs_builddir = @abs_builddir@ 431 | abs_srcdir = @abs_srcdir@ 432 | abs_top_builddir = @abs_top_builddir@ 433 | abs_top_srcdir = @abs_top_srcdir@ 434 | ac_ct_AR = @ac_ct_AR@ 435 | ac_ct_CC = @ac_ct_CC@ 436 | ac_ct_CXX = @ac_ct_CXX@ 437 | ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ 438 | ac_have_man2html = @ac_have_man2html@ 439 | am__include = @am__include@ 440 | am__leading_dot = @am__leading_dot@ 441 | am__quote = @am__quote@ 442 | am__tar = @am__tar@ 443 | am__untar = @am__untar@ 444 | ax_pthread_config = @ax_pthread_config@ 445 | bindir = @bindir@ 446 | build = @build@ 447 | build_alias = @build_alias@ 448 | build_cpu = @build_cpu@ 449 | build_os = @build_os@ 450 | build_vendor = @build_vendor@ 451 | builddir = @builddir@ 452 | datadir = @datadir@ 453 | datarootdir = @datarootdir@ 454 | docdir = @docdir@ 455 | dvidir = @dvidir@ 456 | exec_prefix = @exec_prefix@ 457 | host = @host@ 458 | host_alias = @host_alias@ 459 | host_cpu = @host_cpu@ 460 | host_os = @host_os@ 461 | host_vendor = @host_vendor@ 462 | htmldir = @htmldir@ 463 | includedir = @includedir@ 464 | infodir = @infodir@ 465 | install_sh = @install_sh@ 466 | libdir = @libdir@ 467 | libexecdir = @libexecdir@ 468 | localedir = @localedir@ 469 | localstatedir = @localstatedir@ 470 | lua_CFLAGS = @lua_CFLAGS@ 471 | lua_LIBS = @lua_LIBS@ 472 | mandir = @mandir@ 473 | mkdir_p = @mkdir_p@ 474 | oldincludedir = @oldincludedir@ 475 | pdfdir = @pdfdir@ 476 | prefix = @prefix@ 477 | program_transform_name = @program_transform_name@ 478 | psdir = @psdir@ 479 | sbindir = @sbindir@ 480 | sharedstatedir = @sharedstatedir@ 481 | srcdir = @srcdir@ 482 | sysconfdir = @sysconfdir@ 483 | target = @target@ 484 | target_alias = @target_alias@ 485 | target_cpu = @target_cpu@ 486 | target_os = @target_os@ 487 | target_vendor = @target_vendor@ 488 | top_build_prefix = @top_build_prefix@ 489 | top_builddir = @top_builddir@ 490 | top_srcdir = @top_srcdir@ 491 | AUTOMAKE_OPTIONS = foreign 492 | PLUGIN_FLAGS = -module -avoid-version --export-dynamic 493 | 494 | # Do not put a link to common here. src/common contains an mpi.h which 495 | # hdf5 could of been installed with a link to the generic mpi.h. 496 | AM_CPPFLAGS = -I$(top_srcdir) 497 | 498 | # cpu/core energy accounting plugin. 499 | HDF5_SOURCES = acct_gather_profile_hdf5.c 500 | HDF5_API_SOURCES = hdf5_api.c hdf5_api.h 501 | @WITH_CURL_TRUE@pkglib_LTLIBRARIES = acct_gather_profile_influxdb.la 502 | acct_gather_profile_influxdb_la_SOURCES = acct_gather_profile_influxdb.c 503 | acct_gather_profile_influxdb_la_LDFLAGS = $(SO_LDFLAGS) $(PLUGIN_FLAGS) 504 | acct_gather_profile_influxdb_la_LIBADD = $(LIBCURL) 505 | all: all-am 506 | 507 | .SUFFIXES: 508 | .SUFFIXES: .c .lo .o .obj 509 | $(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps) 510 | @for dep in $?; do \ 511 | case '$(am__configure_deps)' in \ 512 | *$$dep*) \ 513 | ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ 514 | && { if test -f $@; then exit 0; else break; fi; }; \ 515 | exit 1;; \ 516 | esac; \ 517 | done; \ 518 | echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/plugins/acct_gather_profile/influxdb/Makefile'; \ 519 | $(am__cd) $(top_srcdir) && \ 520 | $(AUTOMAKE) --foreign src/plugins/acct_gather_profile/influxdb/Makefile 521 | .PRECIOUS: Makefile 522 | Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status 523 | @case '$?' in \ 524 | *config.status*) \ 525 | cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ 526 | *) \ 527 | echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ 528 | cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 529 | esac; 530 | 531 | $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) 532 | cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 533 | 534 | $(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 535 | cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 536 | $(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps) 537 | cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh 538 | $(am__aclocal_m4_deps): 539 | 540 | install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES) 541 | @$(NORMAL_INSTALL) 542 | @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ 543 | list2=; for p in $$list; do \ 544 | if test -f $$p; then \ 545 | list2="$$list2 $$p"; \ 546 | else :; fi; \ 547 | done; \ 548 | test -z "$$list2" || { \ 549 | echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \ 550 | $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \ 551 | echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \ 552 | $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \ 553 | } 554 | 555 | uninstall-pkglibLTLIBRARIES: 556 | @$(NORMAL_UNINSTALL) 557 | @list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \ 558 | for p in $$list; do \ 559 | $(am__strip_dir) \ 560 | echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \ 561 | $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \ 562 | done 563 | 564 | clean-pkglibLTLIBRARIES: 565 | -test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES) 566 | @list='$(pkglib_LTLIBRARIES)'; \ 567 | locs=`for p in $$list; do echo $$p; done | \ 568 | sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ 569 | sort -u`; \ 570 | test -z "$$locs" || { \ 571 | echo rm -f $${locs}; \ 572 | rm -f $${locs}; \ 573 | } 574 | 575 | acct_gather_profile_influxdb.la: $(acct_gather_profile_influxdb_la_OBJECTS) $(acct_gather_profile_influxdb_la_DEPENDENCIES) $(EXTRA_acct_gather_profile_influxdb_la_DEPENDENCIES) 576 | $(AM_V_CCLD)$(acct_gather_profile_influxdb_la_LINK) $(am_acct_gather_profile_influxdb_la_rpath) $(acct_gather_profile_influxdb_la_OBJECTS) $(acct_gather_profile_influxdb_la_LIBADD) $(LIBS) 577 | 578 | mostlyclean-compile: 579 | -rm -f *.$(OBJEXT) 580 | 581 | distclean-compile: 582 | -rm -f *.tab.c 583 | 584 | @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/acct_gather_profile_influxdb.Plo@am__quote@ 585 | 586 | .c.o: 587 | @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< 588 | @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 589 | @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 590 | @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 591 | @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c $< 592 | 593 | .c.obj: 594 | @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` 595 | @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po 596 | @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ 597 | @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 598 | @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c `$(CYGPATH_W) '$<'` 599 | 600 | .c.lo: 601 | @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< 602 | @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo 603 | @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ 604 | @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 605 | @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< 606 | 607 | mostlyclean-libtool: 608 | -rm -f *.lo 609 | 610 | clean-libtool: 611 | -rm -rf .libs _libs 612 | 613 | ID: $(am__tagged_files) 614 | $(am__define_uniq_tagged_files); mkid -fID $$unique 615 | tags: tags-am 616 | TAGS: tags 617 | 618 | tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) 619 | set x; \ 620 | here=`pwd`; \ 621 | $(am__define_uniq_tagged_files); \ 622 | shift; \ 623 | if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ 624 | test -n "$$unique" || unique=$$empty_fix; \ 625 | if test $$# -gt 0; then \ 626 | $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 627 | "$$@" $$unique; \ 628 | else \ 629 | $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 630 | $$unique; \ 631 | fi; \ 632 | fi 633 | ctags: ctags-am 634 | 635 | CTAGS: ctags 636 | ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) 637 | $(am__define_uniq_tagged_files); \ 638 | test -z "$(CTAGS_ARGS)$$unique" \ 639 | || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ 640 | $$unique 641 | 642 | GTAGS: 643 | here=`$(am__cd) $(top_builddir) && pwd` \ 644 | && $(am__cd) $(top_srcdir) \ 645 | && gtags -i $(GTAGS_ARGS) "$$here" 646 | cscopelist: cscopelist-am 647 | 648 | cscopelist-am: $(am__tagged_files) 649 | list='$(am__tagged_files)'; \ 650 | case "$(srcdir)" in \ 651 | [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ 652 | *) sdir=$(subdir)/$(srcdir) ;; \ 653 | esac; \ 654 | for i in $$list; do \ 655 | if test -f "$$i"; then \ 656 | echo "$(subdir)/$$i"; \ 657 | else \ 658 | echo "$$sdir/$$i"; \ 659 | fi; \ 660 | done >> $(top_builddir)/cscope.files 661 | 662 | distclean-tags: 663 | -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags 664 | 665 | distdir: $(DISTFILES) 666 | @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 667 | topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ 668 | list='$(DISTFILES)'; \ 669 | dist_files=`for file in $$list; do echo $$file; done | \ 670 | sed -e "s|^$$srcdirstrip/||;t" \ 671 | -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ 672 | case $$dist_files in \ 673 | */*) $(MKDIR_P) `echo "$$dist_files" | \ 674 | sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ 675 | sort -u` ;; \ 676 | esac; \ 677 | for file in $$dist_files; do \ 678 | if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ 679 | if test -d $$d/$$file; then \ 680 | dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ 681 | if test -d "$(distdir)/$$file"; then \ 682 | find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 683 | fi; \ 684 | if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ 685 | cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ 686 | find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ 687 | fi; \ 688 | cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ 689 | else \ 690 | test -f "$(distdir)/$$file" \ 691 | || cp -p $$d/$$file "$(distdir)/$$file" \ 692 | || exit 1; \ 693 | fi; \ 694 | done 695 | check-am: all-am 696 | check: check-am 697 | all-am: Makefile $(LTLIBRARIES) 698 | installdirs: 699 | for dir in "$(DESTDIR)$(pkglibdir)"; do \ 700 | test -z "$$dir" || $(MKDIR_P) "$$dir"; \ 701 | done 702 | install: install-am 703 | install-exec: install-exec-am 704 | install-data: install-data-am 705 | uninstall: uninstall-am 706 | 707 | install-am: all-am 708 | @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am 709 | 710 | installcheck: installcheck-am 711 | install-strip: 712 | if test -z '$(STRIP)'; then \ 713 | $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 714 | install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 715 | install; \ 716 | else \ 717 | $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ 718 | install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ 719 | "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ 720 | fi 721 | mostlyclean-generic: 722 | 723 | clean-generic: 724 | 725 | distclean-generic: 726 | -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) 727 | -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) 728 | 729 | maintainer-clean-generic: 730 | @echo "This command is intended for maintainers to use" 731 | @echo "it deletes files that may require special tools to rebuild." 732 | clean: clean-am 733 | 734 | clean-am: clean-generic clean-libtool clean-pkglibLTLIBRARIES \ 735 | mostlyclean-am 736 | 737 | distclean: distclean-am 738 | -rm -rf ./$(DEPDIR) 739 | -rm -f Makefile 740 | distclean-am: clean-am distclean-compile distclean-generic \ 741 | distclean-tags 742 | 743 | dvi: dvi-am 744 | 745 | dvi-am: 746 | 747 | html: html-am 748 | 749 | html-am: 750 | 751 | info: info-am 752 | 753 | info-am: 754 | 755 | install-data-am: 756 | 757 | install-dvi: install-dvi-am 758 | 759 | install-dvi-am: 760 | 761 | install-exec-am: install-pkglibLTLIBRARIES 762 | 763 | install-html: install-html-am 764 | 765 | install-html-am: 766 | 767 | install-info: install-info-am 768 | 769 | install-info-am: 770 | 771 | install-man: 772 | 773 | install-pdf: install-pdf-am 774 | 775 | install-pdf-am: 776 | 777 | install-ps: install-ps-am 778 | 779 | install-ps-am: 780 | 781 | installcheck-am: 782 | 783 | maintainer-clean: maintainer-clean-am 784 | -rm -rf ./$(DEPDIR) 785 | -rm -f Makefile 786 | maintainer-clean-am: distclean-am maintainer-clean-generic 787 | 788 | mostlyclean: mostlyclean-am 789 | 790 | mostlyclean-am: mostlyclean-compile mostlyclean-generic \ 791 | mostlyclean-libtool 792 | 793 | pdf: pdf-am 794 | 795 | pdf-am: 796 | 797 | ps: ps-am 798 | 799 | ps-am: 800 | 801 | uninstall-am: uninstall-pkglibLTLIBRARIES 802 | 803 | .MAKE: install-am install-strip 804 | 805 | .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ 806 | clean-libtool clean-pkglibLTLIBRARIES cscopelist-am ctags \ 807 | ctags-am distclean distclean-compile distclean-generic \ 808 | distclean-libtool distclean-tags distdir dvi dvi-am html \ 809 | html-am info info-am install install-am install-data \ 810 | install-data-am install-dvi install-dvi-am install-exec \ 811 | install-exec-am install-html install-html-am install-info \ 812 | install-info-am install-man install-pdf install-pdf-am \ 813 | install-pkglibLTLIBRARIES install-ps install-ps-am \ 814 | install-strip installcheck installcheck-am installdirs \ 815 | maintainer-clean maintainer-clean-generic mostlyclean \ 816 | mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ 817 | pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \ 818 | uninstall-pkglibLTLIBRARIES 819 | 820 | 821 | # Tell versions [3.59,3.63) of GNU make to not export all variables. 822 | # Otherwise a system limit (for SysV at least) may be exceeded. 823 | .NOEXPORT: 824 | --------------------------------------------------------------------------------