sumalibs first commit

This commit is contained in:
Celine Mercier
2015-07-16 14:00:12 +02:00
commit 049129488e
41 changed files with 7796 additions and 0 deletions

25
liblcs/Makefile Normal file
View File

@ -0,0 +1,25 @@
SOURCES = sse_banded_LCS_alignment.c \
upperband.c
SRCS=$(SOURCES)
OBJECTS= $(patsubst %.c,%.o,$(SOURCES))
LIBFILE= liblcs.a
RANLIB=ranlib
include ../global.mk
all: $(LIBFILE)
clean:
rm -rf $(OBJECTS) $(LIBFILE)
rm -f *.P
rm -f *.a
$(LIBFILE): $(OBJECTS)
ar -cr $@ $?
$(RANLIB) $@