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.

20 lines
425B

  1. SLUG = Fundamental
  2. VERSION = 0.6.0
  3. SOURCES += $(wildcard src/*.cpp)
  4. DISTRIBUTABLES += $(wildcard LICENSE*) res
  5. FLAGS += -Idep/libsamplerate/src
  6. libsamplerate = dep/libsamplerate/src/.libs/libsamplerate.a
  7. $(libsamplerate):
  8. cd dep/libsamplerate && ./autogen.sh
  9. cd dep/libsamplerate && CFLAGS=-fPIC ./configure
  10. cd dep/libsamplerate && $(MAKE)
  11. OBJECTS += $(libsamplerate)
  12. RACK_DIR ?= ../..
  13. include $(RACK_DIR)/plugin.mk