Browse Source

Remove libsamplerate dependency.

tags/v2.0.1
Andrew Belt 5 years ago
parent
commit
4ca88b1e67
1 changed files with 0 additions and 15 deletions
  1. +0
    -15
      Makefile

+ 0
- 15
Makefile View File

@@ -4,19 +4,4 @@ FLAGS += -Idep/include
SOURCES += $(wildcard src/*.cpp) SOURCES += $(wildcard src/*.cpp)
DISTRIBUTABLES += $(wildcard LICENSE*) res DISTRIBUTABLES += $(wildcard LICENSE*) res


# Static libs
libsamplerate := dep/lib/libsamplerate.a
OBJECTS += $(libsamplerate)

# Dependencies
DEPS += $(libsamplerate)

$(libsamplerate):
$(WGET) http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz
cd dep && $(UNTAR) ../libsamplerate-0.1.9.tar.gz
cd dep/libsamplerate-0.1.9 && $(CONFIGURE)
cd dep/libsamplerate-0.1.9/src && $(MAKE)
cd dep/libsamplerate-0.1.9/src && $(MAKE) install


include $(RACK_DIR)/plugin.mk include $(RACK_DIR)/plugin.mk

Loading…
Cancel
Save