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.

29 lines
944B

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