New version based on sort them merge algorithm

git-svn-id: https://www.grenoble.prabi.fr/svn/LECASofts/ecoPrimers/trunk@180 60f365c0-8329-0410-b2a4-ec073aeeaa1d
This commit is contained in:
2009-03-04 22:32:55 +00:00
parent 6d8bb449d5
commit 64838c1cdf
59 changed files with 5196 additions and 0 deletions

34
src/libecoprimer/Makefile Normal file
View File

@@ -0,0 +1,34 @@
SOURCES = goodtaxon.c \
readdnadb.c \
smothsort.c \
sortword.c \
hashsequence.c \
strictprimers.c \
aproxpattern.c \
merge.c \
queue.c \
libstki.c \
sortmatch.c \
pairs.c \
apat_search.c
SRCS=$(SOURCES)
OBJECTS= $(patsubst %.c,%.o,$(SOURCES))
LIBFILE= libecoprimer.a
RANLIB= ranlib
include ../global.mk
all: $(LIBFILE)
clean:
rm -rf $(OBJECTS) $(LIBFILE)
$(LIBFILE): $(OBJECTS)
ar -cr $@ $?
$(RANLIB) $@