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.

25 lines
579B

  1. RACK_DIR ?= ../..
  2. SLUG = Fundamental
  3. VERSION = 0.6.0
  4. # Dependencies
  5. include $(RACK_DIR)/dep.mk
  6. libsamplerate = dep/libsamplerate-0.1.9/src/.libs/libsamplerate.a
  7. $(libsamplerate):
  8. cd dep && $(WGET) http://www.mega-nerd.com/SRC/libsamplerate-0.1.9.tar.gz
  9. cd dep && $(UNTAR) libsamplerate-0.1.9.tar.gz
  10. cd dep/libsamplerate-0.1.9 && $(CONFIGURE)
  11. cd dep/libsamplerate-0.1.9 && $(MAKE)
  12. # Plugin build
  13. FLAGS += -Idep/libsamplerate-0.1.9/src
  14. SOURCES += $(wildcard src/*.cpp)
  15. DISTRIBUTABLES += $(wildcard LICENSE*) res
  16. OBJECTS += $(libsamplerate)
  17. include $(RACK_DIR)/plugin.mk