From 4ca88b1e67b3bdefac1ccfa4c0fbc7eeab25bf39 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Fri, 8 Nov 2019 21:31:48 -0500 Subject: [PATCH] Remove libsamplerate dependency. --- Makefile | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/Makefile b/Makefile index f5cc224..9a14fb2 100644 --- a/Makefile +++ b/Makefile @@ -4,19 +4,4 @@ FLAGS += -Idep/include SOURCES += $(wildcard src/*.cpp) 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