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.
61 lines
1.4 KiB
61 lines
1.4 KiB
COREPATH ?=../..
|
|
include $(COREPATH)/../Makefile.defs
|
|
|
|
LIB_LDFLAGS += $(module_ldflags)
|
|
CPPFLAGS += -I $(COREPATH) -I $(COREPATH)/amci
|
|
CFLAGS += -Wall $(module_cflags)
|
|
|
|
ifdef USE_LIBSAMPLERATE
|
|
CPPFLAGS += -DUSE_LIBSAMPLERATE
|
|
LDFLAGS +=-lsamplerate
|
|
endif
|
|
|
|
audio_mod_dir = $(COREPATH)/lib
|
|
|
|
lib_name = $(plug_in_name).so
|
|
lib_full_name = $(audio_mod_dir)/$(lib_name)
|
|
|
|
srcs = $(wildcard *.c)
|
|
hrds = $(wildcard *.h)
|
|
objs = $(srcs:.c=.o) $(module_extra_objs)
|
|
depends = $(srcs:.c=.d)
|
|
|
|
.DEFAULT_GOAL := all
|
|
.PHONY: all
|
|
all:
|
|
-@$(MAKE) deps && \
|
|
$(MAKE) $(lib_full_name)
|
|
|
|
.PHONY: clean
|
|
clean: $(extra_clean)
|
|
@rm -f $(objs) $(depends) $(lib_name)
|
|
|
|
.PHONY: deps
|
|
deps: $(depends)
|
|
|
|
.PHONY: install
|
|
install: $(lib_name) $(extra_install)
|
|
mkdir -p $(DESTDIR)$(modules-prefix)/$(modules-dir)
|
|
$(INSTALL-TOUCH) $(DESTDIR)$(modules-prefix)/$(modules-dir)/$(lib_name) ; \
|
|
$(INSTALL-MODULES) $(lib_name) $(DESTDIR)$(modules-prefix)/$(modules-dir)
|
|
|
|
.PHONY: install-cfg
|
|
install-cfg : $(extra_install_cfg)
|
|
|
|
%.d: %.c Makefile $(COREPATH)/plug-in/Makefile.audio_module $(COREPATH)/../Makefile.defs
|
|
$(CC) -MM $< $(CPPFLAGS) $(CFLAGS) > $@
|
|
|
|
%.o: %.c %.d $(COREPATH)/../Makefile.defs
|
|
$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@
|
|
|
|
$(lib_full_name): $(lib_name)
|
|
cp $(lib_name) $(lib_full_name)
|
|
|
|
$(lib_name): $(objs) Makefile
|
|
$(LD) -o $(lib_name) $(objs) $(LIB_LDFLAGS)
|
|
|
|
ifeq ($(lib_full_name),$(MAKECMDGOALS))
|
|
include $(depends)
|
|
endif
|
|
|