Add in tree aubio
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
0d952f80af
commit
2ae7009b0e
48 changed files with 8937 additions and 1 deletions
62
deps/aubio/Makefile
vendored
Normal file
62
deps/aubio/Makefile
vendored
Normal file
|
@ -0,0 +1,62 @@
|
|||
#!/usr/bin/make -f
|
||||
# Makefile for static aubio #
|
||||
# ------------------------- #
|
||||
# Created by falkTX
|
||||
#
|
||||
|
||||
# --------------------------------------------------------------
|
||||
# Import base definitions
|
||||
|
||||
USE_NANOVG_FBO = true
|
||||
include ../../dpf/Makefile.base.mk
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
BUILD_C_FLAGS += -DHAVE_CONFIG_H
|
||||
BUILD_C_FLAGS += -I.
|
||||
BUILD_C_FLAGS += -Isrc
|
||||
BUILD_C_FLAGS += $(shell pkg-config --cflags fftw3f)
|
||||
|
||||
OBJS = \
|
||||
src/cvec.c.o \
|
||||
src/fvec.c.o \
|
||||
src/lvec.c.o \
|
||||
src/mathutils.c.o \
|
||||
src/pitch/pitch.c.o \
|
||||
src/pitch/pitchfcomb.c.o \
|
||||
src/pitch/pitchmcomb.c.o \
|
||||
src/pitch/pitchschmitt.c.o \
|
||||
src/pitch/pitchspecacf.c.o \
|
||||
src/pitch/pitchyin.c.o \
|
||||
src/pitch/pitchyinfast.c.o \
|
||||
src/pitch/pitchyinfft.c.o \
|
||||
src/spectral/fft.c.o \
|
||||
src/spectral/phasevoc.c.o \
|
||||
src/temporal/a_weighting.c.o \
|
||||
src/temporal/biquad.c.o \
|
||||
src/temporal/c_weighting.c.o \
|
||||
src/temporal/filter.c.o \
|
||||
src/temporal/resampler.c.o \
|
||||
src/utils/log.c.o \
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
all: libaubio.a
|
||||
|
||||
clean:
|
||||
rm -f *.a src/*.d src/*.o src/*/*.d src/*/*.o
|
||||
|
||||
libaubio.a: $(OBJS)
|
||||
rm -f $@
|
||||
$(AR) crs $@ $^
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
%.c.o: %.c
|
||||
$(CC) $< $(BUILD_C_FLAGS) -c -o $@
|
||||
|
||||
# --------------------------------------------------------------
|
||||
|
||||
-include $(OBJS:%.o=%.d)
|
||||
|
||||
# --------------------------------------------------------------
|
Loading…
Add table
Add a link
Reference in a new issue