mirror of https://github.com/sipwise/sems.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
671 B
33 lines
671 B
COREPATH ?=../../..
|
|
lib_name = libisac.a
|
|
|
|
exclude_sources = min_max_operations_neon.c
|
|
|
|
srcs := $(filter-out $(exclude_sources), $(wildcard *.c))
|
|
hrds := $(wildcard *.h)
|
|
objs := $(srcs:.c=.o)
|
|
depends := $(srcs:.c=.d)
|
|
|
|
AR = ar
|
|
RANLIB = ranlib
|
|
ARFLAGS = rvs
|
|
|
|
.DEFAULT_GOAL := lib
|
|
.PHONY: lib
|
|
lib: $(lib_name)
|
|
|
|
.PHONY: clean
|
|
clean: $(extra_clean)
|
|
@rm -f $(objs) $(depends) $(lib_name)
|
|
|
|
include $(COREPATH)/../Makefile.defs
|
|
|
|
-include $(depends)
|
|
|
|
%.o: %.c Makefile
|
|
$(CC) -MMD $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
$(lib_name): $(objs) Makefile
|
|
if [ -f $(lib_name) ]; then rm $(RMFLAGS) $(lib_name) ; fi
|
|
$(AR) $(ARFLAGS) $(lib_name) $(objs)
|
|
$(RANLIB) $(lib_name)
|