aboutsummaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2014-09-13 13:54:57 +0000
committerChristian Grothoff <christian@grothoff.org>2014-09-13 13:54:57 +0000
commitd94c5185fcdf47c6a57d3233b946fa7e621f7ad9 (patch)
tree1ded577285183d6457bde8787b9bccaa01f12143 /src/util
parente184df6030ab5c5374fe3b8a94482ff5a30c1580 (diff)
downloadgnunet-d94c5185fcdf47c6a57d3233b946fa7e621f7ad9.tar.gz
gnunet-d94c5185fcdf47c6a57d3233b946fa7e621f7ad9.zip
fixing parallel build, getting rid of useless _DEPENDENCIES declarations
Diffstat (limited to 'src/util')
-rw-r--r--src/util/Makefile.am141
1 files changed, 62 insertions, 79 deletions
diff --git a/src/util/Makefile.am b/src/util/Makefile.am
index 3d0632258..6aa32db08 100644
--- a/src/util/Makefile.am
+++ b/src/util/Makefile.am
@@ -43,9 +43,7 @@ gnunet_helper_w32_console_SOURCES = \
43 gnunet-helper-w32-console.c \ 43 gnunet-helper-w32-console.c \
44 gnunet-helper-w32-console.h 44 gnunet-helper-w32-console.h
45gnunet_helper_w32_console_LDADD = \ 45gnunet_helper_w32_console_LDADD = \
46 $(top_builddir)/src/util/libgnunetutil.la 46 libgnunetutil.la
47gnunet_helper_w32_console_DEPENDENCIES = \
48 libgnunetutil.la
49 47
50noinst_PROGRAMS = \ 48noinst_PROGRAMS = \
51 gnunet-config-diff \ 49 gnunet-config-diff \
@@ -56,15 +54,11 @@ noinst_PROGRAMS = \
56gnunet_config_diff_SOURCES = \ 54gnunet_config_diff_SOURCES = \
57 gnunet-config-diff.c 55 gnunet-config-diff.c
58gnunet_config_diff_LDADD = \ 56gnunet_config_diff_LDADD = \
59 $(top_builddir)/src/util/libgnunetutil.la
60gnunet_config_diff_DEPENDENCIES = \
61 libgnunetutil.la 57 libgnunetutil.la
62 58
63test_common_logging_dummy_SOURCES = \ 59test_common_logging_dummy_SOURCES = \
64 test_common_logging_dummy.c 60 test_common_logging_dummy.c
65test_common_logging_dummy_LDADD = \ 61test_common_logging_dummy_LDADD = \
66 $(top_builddir)/src/util/libgnunetutil.la
67test_common_logging_dummy_DEPENDENCIES = \
68 libgnunetutil.la 62 libgnunetutil.la
69 63
70lib_LTLIBRARIES = libgnunetutil.la 64lib_LTLIBRARIES = libgnunetutil.la
@@ -161,54 +155,42 @@ gnunet-qr: gnunet-qr.py.in Makefile
161gnunet_service_resolver_SOURCES = \ 155gnunet_service_resolver_SOURCES = \
162 gnunet-service-resolver.c 156 gnunet-service-resolver.c
163gnunet_service_resolver_LDADD = \ 157gnunet_service_resolver_LDADD = \
164 $(top_builddir)/src/util/libgnunetutil.la \ 158 libgnunetutil.la \
165 $(GN_LIBINTL) 159 $(GN_LIBINTL)
166gnunet_service_resolver_DEPENDENCIES = \
167 libgnunetutil.la
168 160
169 161
170gnunet_resolver_SOURCES = \ 162gnunet_resolver_SOURCES = \
171 gnunet-resolver.c 163 gnunet-resolver.c
172gnunet_resolver_LDADD = \ 164gnunet_resolver_LDADD = \
173 $(top_builddir)/src/util/libgnunetutil.la \ 165 libgnunetutil.la \
174 $(GN_LIBINTL) 166 $(GN_LIBINTL)
175gnunet_resolver_DEPENDENCIES = \
176 libgnunetutil.la
177 167
178 168
179gnunet_ecc_SOURCES = \ 169gnunet_ecc_SOURCES = \
180 gnunet-ecc.c 170 gnunet-ecc.c
181gnunet_ecc_LDADD = \ 171gnunet_ecc_LDADD = \
182 $(top_builddir)/src/util/libgnunetutil.la \ 172 libgnunetutil.la \
183 $(GN_LIBINTL) -lgcrypt 173 $(GN_LIBINTL) -lgcrypt
184gnunet_ecc_DEPENDENCIES = \
185 libgnunetutil.la
186 174
187gnunet_scrypt_SOURCES = \ 175gnunet_scrypt_SOURCES = \
188 gnunet-scrypt.c 176 gnunet-scrypt.c
189gnunet_scrypt_LDADD = \ 177gnunet_scrypt_LDADD = \
190 $(top_builddir)/src/util/libgnunetutil.la \ 178 libgnunetutil.la \
191 $(GN_LIBINTL) -lgcrypt 179 $(GN_LIBINTL) -lgcrypt
192gnunet_scrypt_DEPENDENCIES = \
193 libgnunetutil.la
194 180
195 181
196gnunet_config_SOURCES = \ 182gnunet_config_SOURCES = \
197 gnunet-config.c 183 gnunet-config.c
198gnunet_config_LDADD = \ 184gnunet_config_LDADD = \
199 $(top_builddir)/src/util/libgnunetutil.la \ 185 libgnunetutil.la \
200 $(GN_LIBINTL) 186 $(GN_LIBINTL)
201gnunet_config_DEPENDENCIES = \
202 libgnunetutil.la
203 187
204 188
205gnunet_uri_SOURCES = \ 189gnunet_uri_SOURCES = \
206 gnunet-uri.c 190 gnunet-uri.c
207gnunet_uri_LDADD = \ 191gnunet_uri_LDADD = \
208 $(top_builddir)/src/util/libgnunetutil.la \ 192 libgnunetutil.la \
209 $(GN_LIBINTL) 193 $(GN_LIBINTL)
210gnunet_uri_DEPENDENCIES = \
211 libgnunetutil.la
212 194
213plugin_LTLIBRARIES = \ 195plugin_LTLIBRARIES = \
214 libgnunet_plugin_test.la 196 libgnunet_plugin_test.la
@@ -303,282 +285,283 @@ test_server_mst_interrupt.log: test_server_with_client.log
303test_bio_SOURCES = \ 285test_bio_SOURCES = \
304 test_bio.c 286 test_bio.c
305test_bio_LDADD = \ 287test_bio_LDADD = \
306 $(top_builddir)/src/util/libgnunetutil.la 288 libgnunetutil.la
307 289
308 290
309test_os_start_process_SOURCES = \ 291test_os_start_process_SOURCES = \
310 test_os_start_process.c 292 test_os_start_process.c
311test_os_start_process_LDADD = \ 293test_os_start_process_LDADD = \
312 $(top_builddir)/src/util/libgnunetutil.la 294 libgnunetutil.la
313test_os_start_process_DEPENDENCIES = \ 295test_os_start_process_DEPENDENCIES = \
296 libgnunetutil.la \
314 $(WINCAT) 297 $(WINCAT)
315 298
316test_client_nc_SOURCES = \ 299test_client_nc_SOURCES = \
317 test_client.c 300 test_client.c
318test_client_nc_LDADD = \ 301test_client_nc_LDADD = \
319 $(top_builddir)/src/util/libgnunetutil.la 302 libgnunetutil.la
320 303
321test_common_allocation_SOURCES = \ 304test_common_allocation_SOURCES = \
322 test_common_allocation.c 305 test_common_allocation.c
323test_common_allocation_LDADD = \ 306test_common_allocation_LDADD = \
324 $(top_builddir)/src/util/libgnunetutil.la 307 libgnunetutil.la
325 308
326test_common_endian_SOURCES = \ 309test_common_endian_SOURCES = \
327 test_common_endian.c 310 test_common_endian.c
328test_common_endian_LDADD = \ 311test_common_endian_LDADD = \
329 $(top_builddir)/src/util/libgnunetutil.la 312 libgnunetutil.la
330 313
331test_common_logging_SOURCES = \ 314test_common_logging_SOURCES = \
332 test_common_logging.c 315 test_common_logging.c
333test_common_logging_LDADD = \ 316test_common_logging_LDADD = \
334 $(top_builddir)/src/util/libgnunetutil.la 317 libgnunetutil.la
335 318
336test_common_logging_runtime_loglevels_SOURCES = \ 319test_common_logging_runtime_loglevels_SOURCES = \
337 test_common_logging_runtime_loglevels.c 320 test_common_logging_runtime_loglevels.c
338test_common_logging_runtime_loglevels_LDADD = \ 321test_common_logging_runtime_loglevels_LDADD = \
339 $(top_builddir)/src/util/libgnunetutil.la 322 libgnunetutil.la
340 323
341test_configuration_SOURCES = \ 324test_configuration_SOURCES = \
342 test_configuration.c 325 test_configuration.c
343test_configuration_LDADD = \ 326test_configuration_LDADD = \
344 $(top_builddir)/src/util/libgnunetutil.la 327 libgnunetutil.la
345 328
346test_container_bloomfilter_SOURCES = \ 329test_container_bloomfilter_SOURCES = \
347 test_container_bloomfilter.c 330 test_container_bloomfilter.c
348test_container_bloomfilter_LDADD = \ 331test_container_bloomfilter_LDADD = \
349 $(top_builddir)/src/util/libgnunetutil.la 332 libgnunetutil.la
350 333
351test_container_meta_data_SOURCES = \ 334test_container_meta_data_SOURCES = \
352 test_container_meta_data.c 335 test_container_meta_data.c
353test_container_meta_data_LDADD = \ 336test_container_meta_data_LDADD = \
354 $(top_builddir)/src/util/libgnunetutil.la -lextractor 337 libgnunetutil.la -lextractor
355 338
356test_container_multihashmap_SOURCES = \ 339test_container_multihashmap_SOURCES = \
357 test_container_multihashmap.c 340 test_container_multihashmap.c
358test_container_multihashmap_LDADD = \ 341test_container_multihashmap_LDADD = \
359 $(top_builddir)/src/util/libgnunetutil.la 342 libgnunetutil.la
360 343
361test_container_multihashmap32_SOURCES = \ 344test_container_multihashmap32_SOURCES = \
362 test_container_multihashmap32.c 345 test_container_multihashmap32.c
363test_container_multihashmap32_LDADD = \ 346test_container_multihashmap32_LDADD = \
364 $(top_builddir)/src/util/libgnunetutil.la 347 libgnunetutil.la
365 348
366test_container_multipeermap_SOURCES = \ 349test_container_multipeermap_SOURCES = \
367 test_container_multipeermap.c 350 test_container_multipeermap.c
368test_container_multipeermap_LDADD = \ 351test_container_multipeermap_LDADD = \
369 $(top_builddir)/src/util/libgnunetutil.la 352 libgnunetutil.la
370 353
371test_container_heap_SOURCES = \ 354test_container_heap_SOURCES = \
372 test_container_heap.c 355 test_container_heap.c
373test_container_heap_LDADD = \ 356test_container_heap_LDADD = \
374 $(top_builddir)/src/util/libgnunetutil.la 357 libgnunetutil.la
375 358
376test_container_slist_SOURCES = \ 359test_container_slist_SOURCES = \
377 test_container_slist.c 360 test_container_slist.c
378test_container_slist_LDADD = \ 361test_container_slist_LDADD = \
379 $(top_builddir)/src/util/libgnunetutil.la 362 libgnunetutil.la
380 363
381test_crypto_symmetric_SOURCES = \ 364test_crypto_symmetric_SOURCES = \
382 test_crypto_symmetric.c 365 test_crypto_symmetric.c
383test_crypto_symmetric_LDADD = \ 366test_crypto_symmetric_LDADD = \
384 $(top_builddir)/src/util/libgnunetutil.la 367 libgnunetutil.la
385 368
386test_crypto_crc_SOURCES = \ 369test_crypto_crc_SOURCES = \
387 test_crypto_crc.c 370 test_crypto_crc.c
388test_crypto_crc_LDADD = \ 371test_crypto_crc_LDADD = \
389 $(top_builddir)/src/util/libgnunetutil.la 372 libgnunetutil.la
390 373
391test_crypto_ecdsa_SOURCES = \ 374test_crypto_ecdsa_SOURCES = \
392 test_crypto_ecdsa.c 375 test_crypto_ecdsa.c
393test_crypto_ecdsa_LDADD = \ 376test_crypto_ecdsa_LDADD = \
394 $(top_builddir)/src/util/libgnunetutil.la \ 377 libgnunetutil.la \
395 $(LIBGCRYPT_LIBS) 378 $(LIBGCRYPT_LIBS)
396 379
397test_crypto_eddsa_SOURCES = \ 380test_crypto_eddsa_SOURCES = \
398 test_crypto_eddsa.c 381 test_crypto_eddsa.c
399test_crypto_eddsa_LDADD = \ 382test_crypto_eddsa_LDADD = \
400 $(top_builddir)/src/util/libgnunetutil.la \ 383 libgnunetutil.la \
401 $(LIBGCRYPT_LIBS) 384 $(LIBGCRYPT_LIBS)
402 385
403test_crypto_ecdhe_SOURCES = \ 386test_crypto_ecdhe_SOURCES = \
404 test_crypto_ecdhe.c 387 test_crypto_ecdhe.c
405test_crypto_ecdhe_LDADD = \ 388test_crypto_ecdhe_LDADD = \
406 $(top_builddir)/src/util/libgnunetutil.la \ 389 libgnunetutil.la \
407 $(LIBGCRYPT_LIBS) 390 $(LIBGCRYPT_LIBS)
408 391
409test_crypto_hash_SOURCES = \ 392test_crypto_hash_SOURCES = \
410 test_crypto_hash.c 393 test_crypto_hash.c
411test_crypto_hash_LDADD = \ 394test_crypto_hash_LDADD = \
412 $(top_builddir)/src/util/libgnunetutil.la 395 libgnunetutil.la
413 396
414test_crypto_hkdf_SOURCES = \ 397test_crypto_hkdf_SOURCES = \
415 test_crypto_hkdf.c 398 test_crypto_hkdf.c
416test_crypto_hkdf_LDADD = \ 399test_crypto_hkdf_LDADD = \
417 $(top_builddir)/src/util/libgnunetutil.la 400 libgnunetutil.la
418 401
419test_crypto_paillier_SOURCES = \ 402test_crypto_paillier_SOURCES = \
420 test_crypto_paillier.c 403 test_crypto_paillier.c
421test_crypto_paillier_LDADD = \ 404test_crypto_paillier_LDADD = \
422 $(LIBGCRYPT_LIBS) \ 405 $(LIBGCRYPT_LIBS) \
423 $(top_builddir)/src/util/libgnunetutil.la 406 libgnunetutil.la
424 407
425test_crypto_random_SOURCES = \ 408test_crypto_random_SOURCES = \
426 test_crypto_random.c 409 test_crypto_random.c
427test_crypto_random_LDADD = \ 410test_crypto_random_LDADD = \
428 $(top_builddir)/src/util/libgnunetutil.la 411 libgnunetutil.la
429 412
430test_disk_SOURCES = \ 413test_disk_SOURCES = \
431 test_disk.c 414 test_disk.c
432test_disk_LDADD = \ 415test_disk_LDADD = \
433 $(top_builddir)/src/util/libgnunetutil.la 416 libgnunetutil.la
434 417
435test_getopt_SOURCES = \ 418test_getopt_SOURCES = \
436 test_getopt.c 419 test_getopt.c
437test_getopt_LDADD = \ 420test_getopt_LDADD = \
438 $(top_builddir)/src/util/libgnunetutil.la 421 libgnunetutil.la
439 422
440test_connection_nc_SOURCES = \ 423test_connection_nc_SOURCES = \
441 test_connection.c 424 test_connection.c
442test_connection_nc_LDADD = \ 425test_connection_nc_LDADD = \
443 $(top_builddir)/src/util/libgnunetutil.la 426 libgnunetutil.la
444 427
445test_connection_addressing_nc_SOURCES = \ 428test_connection_addressing_nc_SOURCES = \
446 test_connection_addressing.c 429 test_connection_addressing.c
447test_connection_addressing_nc_LDADD = \ 430test_connection_addressing_nc_LDADD = \
448 $(top_builddir)/src/util/libgnunetutil.la 431 libgnunetutil.la
449 432
450test_connection_receive_cancel_nc_SOURCES = \ 433test_connection_receive_cancel_nc_SOURCES = \
451 test_connection_receive_cancel.c 434 test_connection_receive_cancel.c
452test_connection_receive_cancel_nc_LDADD = \ 435test_connection_receive_cancel_nc_LDADD = \
453 $(top_builddir)/src/util/libgnunetutil.la 436 libgnunetutil.la
454 437
455test_connection_timeout_nc_SOURCES = \ 438test_connection_timeout_nc_SOURCES = \
456 test_connection_timeout.c 439 test_connection_timeout.c
457test_connection_timeout_nc_LDADD = \ 440test_connection_timeout_nc_LDADD = \
458 $(top_builddir)/src/util/libgnunetutil.la 441 libgnunetutil.la
459 442
460test_connection_timeout_no_connect_nc_SOURCES = \ 443test_connection_timeout_no_connect_nc_SOURCES = \
461 test_connection_timeout_no_connect.c 444 test_connection_timeout_no_connect.c
462test_connection_timeout_no_connect_nc_LDADD = \ 445test_connection_timeout_no_connect_nc_LDADD = \
463 $(top_builddir)/src/util/libgnunetutil.la 446 libgnunetutil.la
464 447
465test_connection_transmit_cancel_nc_SOURCES = \ 448test_connection_transmit_cancel_nc_SOURCES = \
466 test_connection_transmit_cancel.c 449 test_connection_transmit_cancel.c
467test_connection_transmit_cancel_nc_LDADD = \ 450test_connection_transmit_cancel_nc_LDADD = \
468 $(top_builddir)/src/util/libgnunetutil.la 451 libgnunetutil.la
469 452
470test_mq_SOURCES = \ 453test_mq_SOURCES = \
471 test_mq.c 454 test_mq.c
472test_mq_LDADD = \ 455test_mq_LDADD = \
473 $(top_builddir)/src/util/libgnunetutil.la 456 libgnunetutil.la
474 457
475test_mq_client_nc_SOURCES = \ 458test_mq_client_nc_SOURCES = \
476 test_mq_client.c 459 test_mq_client.c
477test_mq_client_nc_LDADD = \ 460test_mq_client_nc_LDADD = \
478 $(top_builddir)/src/util/libgnunetutil.la 461 libgnunetutil.la
479 462
480test_os_network_SOURCES = \ 463test_os_network_SOURCES = \
481 test_os_network.c 464 test_os_network.c
482test_os_network_LDADD = \ 465test_os_network_LDADD = \
483 $(top_builddir)/src/util/libgnunetutil.la 466 libgnunetutil.la
484 467
485test_peer_SOURCES = \ 468test_peer_SOURCES = \
486 test_peer.c 469 test_peer.c
487test_peer_LDADD = \ 470test_peer_LDADD = \
488$(top_builddir)/src/util/libgnunetutil.la -lgcrypt 471 libgnunetutil.la -lgcrypt
489 472
490test_plugin_SOURCES = \ 473test_plugin_SOURCES = \
491 test_plugin.c 474 test_plugin.c
492test_plugin_LDADD = \ 475test_plugin_LDADD = \
493 $(top_builddir)/src/util/libgnunetutil.la 476 libgnunetutil.la
494 477
495test_program_SOURCES = \ 478test_program_SOURCES = \
496 test_program.c 479 test_program.c
497test_program_LDADD = \ 480test_program_LDADD = \
498 $(top_builddir)/src/util/libgnunetutil.la 481 libgnunetutil.la
499 482
500test_resolver_api_nc_SOURCES = \ 483test_resolver_api_nc_SOURCES = \
501 test_resolver_api.c 484 test_resolver_api.c
502test_resolver_api_nc_LDADD = \ 485test_resolver_api_nc_LDADD = \
503 $(top_builddir)/src/util/libgnunetutil.la 486 libgnunetutil.la
504 487
505test_scheduler_SOURCES = \ 488test_scheduler_SOURCES = \
506 test_scheduler.c 489 test_scheduler.c
507test_scheduler_LDADD = \ 490test_scheduler_LDADD = \
508 $(top_builddir)/src/util/libgnunetutil.la 491 libgnunetutil.la
509 492
510test_scheduler_delay_SOURCES = \ 493test_scheduler_delay_SOURCES = \
511 test_scheduler_delay.c 494 test_scheduler_delay.c
512test_scheduler_delay_LDADD = \ 495test_scheduler_delay_LDADD = \
513 $(top_builddir)/src/util/libgnunetutil.la 496 libgnunetutil.la
514 497
515test_server_mst_interrupt_nc_SOURCES = \ 498test_server_mst_interrupt_nc_SOURCES = \
516 test_server_mst_interrupt.c 499 test_server_mst_interrupt.c
517test_server_mst_interrupt_nc_LDADD = \ 500test_server_mst_interrupt_nc_LDADD = \
518 $(top_builddir)/src/util/libgnunetutil.la 501 libgnunetutil.la
519 502
520test_server_nc_SOURCES = \ 503test_server_nc_SOURCES = \
521 test_server.c 504 test_server.c
522test_server_nc_LDADD = \ 505test_server_nc_LDADD = \
523 $(top_builddir)/src/util/libgnunetutil.la 506 libgnunetutil.la
524 507
525test_server_disconnect_nc_SOURCES = \ 508test_server_disconnect_nc_SOURCES = \
526 test_server_disconnect.c 509 test_server_disconnect.c
527test_server_disconnect_nc_LDADD = \ 510test_server_disconnect_nc_LDADD = \
528 $(top_builddir)/src/util/libgnunetutil.la 511 libgnunetutil.la
529 512
530test_server_with_client_nc_SOURCES = \ 513test_server_with_client_nc_SOURCES = \
531 test_server_with_client.c 514 test_server_with_client.c
532test_server_with_client_nc_LDADD = \ 515test_server_with_client_nc_LDADD = \
533 $(top_builddir)/src/util/libgnunetutil.la 516 libgnunetutil.la
534 517
535test_server_with_client_unix_SOURCES = \ 518test_server_with_client_unix_SOURCES = \
536 test_server_with_client_unix.c 519 test_server_with_client_unix.c
537test_server_with_client_unix_LDADD = \ 520test_server_with_client_unix_LDADD = \
538 $(top_builddir)/src/util/libgnunetutil.la 521 libgnunetutil.la
539 522
540 523
541test_service_SOURCES = \ 524test_service_SOURCES = \
542 test_service.c 525 test_service.c
543test_service_LDADD = \ 526test_service_LDADD = \
544 $(top_builddir)/src/util/libgnunetutil.la 527 libgnunetutil.la
545 528
546test_strings_SOURCES = \ 529test_strings_SOURCES = \
547 test_strings.c 530 test_strings.c
548test_strings_LDADD = \ 531test_strings_LDADD = \
549 $(top_builddir)/src/util/libgnunetutil.la 532 libgnunetutil.la
550 533
551 534
552test_strings_to_data_SOURCES = \ 535test_strings_to_data_SOURCES = \
553 test_strings_to_data.c 536 test_strings_to_data.c
554test_strings_to_data_LDADD = \ 537test_strings_to_data_LDADD = \
555 $(top_builddir)/src/util/libgnunetutil.la 538 libgnunetutil.la
556 539
557 540
558test_time_SOURCES = \ 541test_time_SOURCES = \
559 test_time.c 542 test_time.c
560test_time_LDADD = \ 543test_time_LDADD = \
561 $(top_builddir)/src/util/libgnunetutil.la 544 libgnunetutil.la
562 545
563test_speedup_SOURCES = \ 546test_speedup_SOURCES = \
564 test_speedup.c 547 test_speedup.c
565test_speedup_LDADD = \ 548test_speedup_LDADD = \
566 $(top_builddir)/src/util/libgnunetutil.la 549 libgnunetutil.la
567 550
568perf_crypto_hash_SOURCES = \ 551perf_crypto_hash_SOURCES = \
569 perf_crypto_hash.c 552 perf_crypto_hash.c
570perf_crypto_hash_LDADD = \ 553perf_crypto_hash_LDADD = \
571 $(top_builddir)/src/util/libgnunetutil.la 554 libgnunetutil.la
572 555
573perf_crypto_symmetric_SOURCES = \ 556perf_crypto_symmetric_SOURCES = \
574 perf_crypto_symmetric.c 557 perf_crypto_symmetric.c
575perf_crypto_symmetric_LDADD = \ 558perf_crypto_symmetric_LDADD = \
576 $(top_builddir)/src/util/libgnunetutil.la 559 libgnunetutil.la
577 560
578perf_malloc_SOURCES = \ 561perf_malloc_SOURCES = \
579 perf_malloc.c 562 perf_malloc.c
580perf_malloc_LDADD = \ 563perf_malloc_LDADD = \
581 $(top_builddir)/src/util/libgnunetutil.la 564 libgnunetutil.la
582 565
583 566
584EXTRA_DIST = \ 567EXTRA_DIST = \