Mercurial > repos > portiahollyoak > fastuniq
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:816cb55b5a2d |
---|---|
1 headers= fastq.h fastq_pair.h fastq_pair_array.h | |
2 objects= fastq.o fastq_pair.o fastq_pair_array.o | |
3 | |
4 GCC_OPTION= -m64 -O3 | |
5 | |
6 all : fastuniq | |
7 | |
8 fastuniq : $(objects) fastq_uniq.o | |
9 gcc -o fastuniq $(objects) fastq_uniq.o $(GCC_OPTION) | |
10 | |
11 fastq.o : fastq.c $(headers) | |
12 gcc -c fastq.c -o fastq.o $(GCC_OPTION) | |
13 | |
14 fastq_pair.o : fastq_pair.c $(headers) | |
15 gcc -c fastq_pair.c -o fastq_pair.o $(GCC_OPTION) | |
16 | |
17 fastq_pair_array.o : fastq_pair_array.c $(headers) | |
18 gcc -c fastq_pair_array.c -o fastq_pair_array.o $(GCC_OPTION) | |
19 | |
20 fastq_uniq.o : fastq_uniq.c $(headers) | |
21 gcc -c fastq_uniq.c -o fastq_uniq.o $(GCC_OPTION) | |
22 | |
23 .PHONY : clean | |
24 clean : | |
25 rm $(objects) fastq_uniq.o |