CC = cc
CFLAGS = -g -O -I../level0 -I../level1 -I../level2 -I../level3 -I../level4
#CFLAGS = -g -fast -v -I../level0 -I../level1 -I../level2 -I../level3 -I../level4

SRCS = asm_string.c ld_alignfile.c ld_landmarks.c ld_origins.c ld_tfdfile.c \
       ld_seq.c read_tfdref.c ld_cons.c ld_enzyme.c get_alpha.c ld_imdfile.c \
       read_imdref.c unp_algn.c getalcopy.c ld_plain.c ld_winfile.c \
       read_winref.c
OBJS = asm_string.o ld_alignfile.o ld_landmarks.o ld_origins.o ld_tfdfile.o \
       ld_seq.o read_tfdref.o ld_cons.o ld_enzyme.o get_alpha.o ld_imdfile.o \
       read_imdref.o unp_algn.o getalcopy.o ld_plain.o ld_winfile.o \
       read_winref.o
LDLIBS = -lc -lm

all: $(OBJS)

clean:
	rm -f *.o

