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.
|
- RACK_DIR ?= ../..
-
- FLAGS += -Idep/include
- SOURCES += $(wildcard src/*.cpp)
- DISTRIBUTABLES += $(wildcard LICENSE*) res
-
- # Static libs
- libsamplerate := dep/lib/libsamplerate.a
- OBJECTS += $(libsamplerate)
-
- # Dependencies
- DEPS += $(libsamplerate)
-
- $(libsamplerate):
- cd dep && $(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
-
- # Only Fundamental needs this because it's bundled with Rack
- sign-dist:
- ifdef ARCH_MAC
- codesign --verbose --sign "Developer ID Application: Andrew Belt (VRF26934X5)" --deep dist/$(SLUG)/$(TARGET)
- cd dist && zip -q -9 -r $(SLUG)-$(VERSION)-$(ARCH).zip $(SLUG)
- endif
|