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.

38 lines
1.1KB

  1. # Must follow the format in the Naming section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
  2. SLUG = squinkylabs-plug1
  3. # Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
  4. VERSION = 0.6.0dev
  5. # FLAGS will be passed to both the C and C++ compiler
  6. FLAGS += -I./dsp/generators -I./dsp/utils -I./dsp/filters
  7. FLAGS += -I./dsp/third-party/falco
  8. FLAGS += -I./composites
  9. CFLAGS +=
  10. CXXFLAGS +=
  11. # Careful about linking to shared libraries, since you can't assume much about the user's environment and library search path.
  12. # Static libraries are fine.
  13. LDFLAGS +=
  14. # Add .cpp and .c files to the build
  15. SOURCES += $(wildcard src/*.cpp)
  16. SOURCES += $(wildcard dsp/**/*.cpp)
  17. SOURCES += $(wildcard dsp/third-party/falco/*.cpp)
  18. # Add files to the ZIP package when running `make dist`
  19. # The compiled plugin is automatically added.
  20. DISTRIBUTABLES += $(wildcard LICENSE*) res
  21. # If RACK_DIR is not defined when calling the Makefile, default to two levels above
  22. RACK_DIR ?= ../..
  23. # Include the VCV Rack plugin Makefile framework
  24. include $(RACK_DIR)/plugin.mk
  25. include test.mk