Skip to content

Commit

Permalink
initial commit into check_fastq repository
Browse files Browse the repository at this point in the history
  • Loading branch information
Graham McVicker committed May 9, 2012
0 parents commit 09a8538
Show file tree
Hide file tree
Showing 9 changed files with 2,213 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
@@ -0,0 +1,20 @@

CFLAGS=-Wall -O4
LFLAGS=-lz
CC=gcc

objects=util.o err.o memutil.o

default: $(objects) check_fastq split_fastq

$(objects): %.o: %.c %.h
$(CC) -c $(CFLAGS) $< -o $@

check_fastq: $(objects) check_fastq.c
$(CC) $(LFLAGS) -o check_fastq check_fastq.c $(objects)

split_fastq: $(objects) split_fastq.c
$(CC) $(LFLAGS) -o split_fastq split_fastq.c $(objects)

clean:
rm -f $(objects) check_fastq

0 comments on commit 09a8538

Please sign in to comment.