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.

34 lines
993B

  1. # Must follow the format in the Naming section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
  2. SLUG = Koralfx-Modules
  3. # Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html
  4. VERSION = 0.6.9
  5. # FLAGS will be passed to both the C and C++ compiler
  6. FLAGS +=
  7. CFLAGS +=
  8. CXXFLAGS +=
  9. # Careful about linking to libraries, since you can't assume much about the user's environment and library search path.
  10. # Static libraries are fine.
  11. LDFLAGS +=
  12. # Add .cpp and .c files to the build
  13. SOURCES = $(wildcard src/*.cpp src/*.c src/*/*.cpp src/*/*.c)
  14. # Must include the VCV plugin Makefile framework
  15. RACK_DIR ?= ../..
  16. # Include the VCV Rack plugin Makefile framework
  17. include $(RACK_DIR)/plugin.mk
  18. # Convenience target for including files in the distributable release
  19. #.PHONY: dist
  20. #dist: all
  21. ifndef VERSION
  22. $(error VERSION must be defined when making distributables)
  23. endif
  24. DISTRIBUTABLES += $(wildcard LICENSE* *.pdf README*) res