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.

23 lines
610B

  1. SLUG = mtsch-plugins
  2. VERSION = 0.6.0
  3. RACK_DIR ?= ../..
  4. # FLAGS will be passed to both the C and C++ compiler
  5. FLAGS +=
  6. CFLAGS +=
  7. CXXFLAGS +=
  8. # Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path.
  9. # Static libraries are fine.
  10. LDFLAGS +=
  11. # Add .cpp and .c files to the build
  12. SOURCES += $(wildcard src/*.cpp)
  13. # Add files to the ZIP package when running `make dist`
  14. # The compiled plugin is automatically added.
  15. DISTRIBUTABLES += $(wildcard LICENSE* plugin.*) res
  16. # Include the VCV plugin Makefile framework
  17. include $(RACK_DIR)/plugin.mk