4
0

Makefile.am 707 B

1234567891011121314151617181920212223242526272829303132
  1. #
  2. # Copyright (C) 2022-2023 Red Hat, Inc. All rights reserved.
  3. #
  4. # Author: Christine Caulfield <ccaulfie@redhat.com>
  5. #
  6. # This software licensed under GPL-2.0+
  7. #
  8. MAINTAINERCLEANFILES = Makefile.in
  9. include $(top_srcdir)/build-aux/rust.mk
  10. EXTRA_DIST = \
  11. $(RUST_COMMON) \
  12. $(RUST_SHIP_SRCS)
  13. RUST_SHIP_SRCS = src/bin/cpg-test.rs \
  14. src/bin/cfg-test.rs \
  15. src/bin/cmap-test.rs \
  16. src/bin/quorum-test.rs \
  17. src/bin/votequorum-test.rs
  18. # This will build all of the tests
  19. check_SCRIPTS = target/$(RUST_TARGET_DIR)/cpg-test
  20. noinst_SCRIPTS = $(check_SCRIPTS)
  21. AM_TESTS_ENVIRONMENT=LD_LIBRARY_PATH="$(abs_top_builddir)/lib/.libs"
  22. TESTS = $(check_SCRIPTS)
  23. clean-local: cargo-clean