Skip to content

Commit

Permalink
Also fix reverse-compliment and k-nucleotide.
Browse files Browse the repository at this point in the history
Signed-off-by: Austin Seipp <aseipp@pobox.com>
  • Loading branch information
thoughtpolice committed Jun 25, 2013
1 parent e4bfef7 commit 8122aac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions shootout/k-nucleotide/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ HC_OPTS += -O2 -XBangPatterns -package bytestring
#------------------------------------------------------------------
# Create input

fasta-c : ../fasta/fasta-c.o
gcc $< -o $@
fasta-c : ../fasta/fasta-c.c
$(CC) -std=gnu99 -march=native -O3 -fomit-frame-pointer $< -o $@

knucleotide-input250000.txt : fasta-c
./fasta-c $(FAST_OPTS) > $@
Expand Down
4 changes: 2 additions & 2 deletions shootout/reverse-complement/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ HC_OPTS += -O2 -XBangPatterns -funfolding-use-threshold=32 -XMagicHash \
#------------------------------------------------------------------
# Create input

fasta-c : ../fasta/fasta-c.o
gcc $< -o $@
fasta-c : ../fasta/fasta-c.c
$(CC) -std=gnu99 -march=native -O3 -fomit-frame-pointer $< -o $@

revcomp-input250000.txt : fasta-c
./fasta-c $(FAST_OPTS) > $@
Expand Down

0 comments on commit 8122aac

Please sign in to comment.