X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=src%2FMakefile.am;h=989ae69c771ee501f1a2f040ae6c0190efb49b74;hb=40ab4c0cde1bfee1616777995998b0cbc5ffc741;hp=e28add9e4424a0a95ecc08f4d5257a32dc6c7ac4;hpb=7295fe6abb7eb2f5f25f3c82e9cbd3c389ae9370;p=fastq-tools.git diff --git a/src/Makefile.am b/src/Makefile.am index e28add9..989ae69 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,9 +1,10 @@ -bin_PROGRAMS = fastq-grep fastq-kmers fastq-match +bin_PROGRAMS = fastq-grep fastq-kmers fastq-match fastq-uniq -fastq_common_src=fastq-common.h fastq-common.c -fastq_parse_src=fastq-parse.h fastq-parse.c -fastq_sw_src=fastq-sw.h fastq-sw.c +fastq_common_src=common.h common.c +fastq_parse_src=parse.h parse.c +fastq_sw_src=sw.h sw.c +fastq_hash_src=hash.h hash.c fastq_grep_SOURCES = fastq-grep.c $(fastq_common_src) $(fastq_parse_src) fastq_grep_LDADD = $(PCRE_LIBS) -lz @@ -14,4 +15,7 @@ fastq_kmers_LDADD = -lz fastq_match_SOURCES = fastq-match.c $(fastq_common_src) $(fastq_parse_src) $(fastq_sw_src) fastq_match_LDADD = -lz +fastq_uniq_SOURCES = fastq-uniq.c $(fastq_common_src) $(fastq_parse_src) $(fastq_hash_src) +fastq_uniq_LDADD = -lz +