mirror of
https://github.com/metabarcoding/obitools4.git
synced 2025-07-20 02:00:46 +00:00
First commit
This commit is contained in:
24
pkg/obiapat/abiapat/Makefile
Normal file
24
pkg/obiapat/abiapat/Makefile
Normal file
@@ -0,0 +1,24 @@
|
||||
|
||||
SOURCES = apat_parse.c \
|
||||
apat_search.c \
|
||||
libstki.c
|
||||
|
||||
SRCS=$(SOURCES)
|
||||
|
||||
|
||||
OBJECTS= $(patsubst %.c,%.o,$(SOURCES))
|
||||
|
||||
LIBFILE= libapat.a
|
||||
RANLIB=ranlib
|
||||
|
||||
|
||||
include ../global.mk
|
||||
|
||||
all: $(LIBFILE)
|
||||
|
||||
clean:
|
||||
rm -rf $(OBJECTS) $(LIBFILE)
|
||||
|
||||
$(LIBFILE): $(OBJECTS)
|
||||
ar -cr $@ $?
|
||||
$(RANLIB) $@
|
Reference in New Issue
Block a user