Mercurial > repos > chrisd > testing
diff gene_fraction/src/Makefile @ 0:f95150c37d38 draft default tip
planemo upload for repository https://github.com/ChrisD11/Tools commit ddc95e5d6b5f2c0a5340c0bc384aa822db8856d5
author | chrisd |
---|---|
date | Sun, 21 Feb 2016 23:31:55 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/gene_fraction/src/Makefile Sun Feb 21 23:31:55 2016 -0500 @@ -0,0 +1,14 @@ +output: main.o Sam.o Alignments.o Fasta.o FastaRecord.o + g++ -std=c++11 main.o Sam.o Alignments.o Fasta.o FastaRecord.o -o csa +main.o: main.cpp + g++ -c -std=c++11 main.cpp +Sam.o: Sam.cpp + g++ -c -std=c++11 Sam.cpp +Alignments.o: Alignments.cpp + g++ -c -std=c++11 Alignments.cpp +Fasta.o: Fasta.cpp + g++ -c -std=c++11 Fasta.cpp +FastaRecord.o: FastaRecord.cpp + g++ -c -std=c++11 FastaRecord.cpp +clean: + rm *.o csa