Skip to content

Commit

Permalink
+ Makefile correction
Browse files Browse the repository at this point in the history
  - ensure that the dependencies on 'make genome' are correct.
  • Loading branch information
indraniel committed Mar 24, 2010
1 parent 8d3bd57 commit 9d18297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -4,7 +4,7 @@ sff2fastq: main.o sff.o
gcc -g -o sff2fastq main.o sff.o

genome: main.genome.o sff.genome.o
gcc -g -o sff2fastq main.o sff.genome.o
gcc -g -o sff2fastq main.genome.o sff.genome.o

main.o: main.c sff.h
gcc -g -I. -c main.c
Expand All @@ -13,7 +13,7 @@ sff.o: sff.c sff.h
gcc -g -I. -c sff.c

main.genome.o: main.c sff.h
gcc -D__GENOME__ -g -I. -c main.c
gcc -D__GENOME__ -g -I. -c main.c -o main.genome.o

sff.genome.o: sff.c sff.h
gcc -D__GENOME__ -g -I. -c sff.c -o sff.genome.o
Expand Down

0 comments on commit 9d18297

Please sign in to comment.