1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
Description: index_genomes.sh needs to run first for other tests to find index files
Author: Nilesh Patra <nilesh@debian.org>
Last-Update: 2025-11-01
--- a/test_f/Makefile.am
+++ b/test_f/Makefile.am
@@ -106,6 +106,10 @@
script_tests = index_genomes.sh launch_sg.sh test_index.sh
+# Add dep on tests
+launch_sg.sh: index_genomes.sh.log
+test_index.sh: index_genomes.sh.log
+
should_get_files = $(shell find . -name "*.should_get")
fasta_files = $(shell find . -name "*.fasta" -o -name "*.fa")
fastq_files = $(shell find . -name "*.fastq" -o -name "*.fq")
@@ -116,3 +120,4 @@
CLEANFILES = *~ *.tap *.gcda *.gcno *.valgrind
DISTCLEANFILES = *~
MAINTAINERCLEANFILES = *~
+.PHONY: launch_sg.sh test_index.sh
|