https://github.com/DixianZhu/deBWT
Revision 9e9fe79f245b7a14e2465403afce0a182cf5c403 authored by Alex on 11 January 2016, 16:20:21 UTC, committed by Alex on 11 January 2016, 16:20:21 UTC
1 parent 8e30193
Raw File
Tip revision: 9e9fe79f245b7a14e2465403afce0a182cf5c403 authored by Alex on 11 January 2016, 16:20:21 UTC
README
Tip revision: 9e9fe79
Makefile
CC = gcc
CFLAGS = -g -Wall -O2 -Wno-unused-variable -Wno-unused-result -Wno-unused-function
LIB = -lz -lpthread

BIN_DIR = .
SRC_DIR = ./src

SOURCE = $(wildcard ${SRC_DIR}/*.c) 

OBJS = $(SOURCE:.c=.o)

deBWT : $(OBJS) 
	$(CC) $(CFLAGS) -o deBWT $(OBJS) $(LIB)

clean : 
		rm deBWT $(OBJECTS) 
back to top