Mercurial > repos > portiahollyoak > fastuniq
diff source/Makefile @ 0:816cb55b5a2d draft default tip
planemo upload for repository https://github.com/portiahollyoak/Tools commit c4769fd68ad9583d4b9dbdf212e4ecb5968cef1c-dirty
author | portiahollyoak |
---|---|
date | Thu, 02 Jun 2016 11:34:51 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/source/Makefile Thu Jun 02 11:34:51 2016 -0400 @@ -0,0 +1,25 @@ +headers= fastq.h fastq_pair.h fastq_pair_array.h +objects= fastq.o fastq_pair.o fastq_pair_array.o + +GCC_OPTION= -m64 -O3 + +all : fastuniq + +fastuniq : $(objects) fastq_uniq.o + gcc -o fastuniq $(objects) fastq_uniq.o $(GCC_OPTION) + +fastq.o : fastq.c $(headers) + gcc -c fastq.c -o fastq.o $(GCC_OPTION) + +fastq_pair.o : fastq_pair.c $(headers) + gcc -c fastq_pair.c -o fastq_pair.o $(GCC_OPTION) + +fastq_pair_array.o : fastq_pair_array.c $(headers) + gcc -c fastq_pair_array.c -o fastq_pair_array.o $(GCC_OPTION) + +fastq_uniq.o : fastq_uniq.c $(headers) + gcc -c fastq_uniq.c -o fastq_uniq.o $(GCC_OPTION) + +.PHONY : clean +clean : + rm $(objects) fastq_uniq.o