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.

41 lines
1020B

  1. SLUG = Qwelk
  2. VERSION = 0.6.0
  3. SOURCES += $(wildcard src/*.cpp)
  4. DISTRIBUTABLES += $(wildcard LICENSE*) res
  5. RACK_DIR ?= ../..
  6. include $(RACK_DIR)/plugin.mk
  7. # # FLAGS will be passed to both the C and C++ compiler
  8. # FLAGS +=
  9. # CFLAGS +=
  10. # CXXFLAGS +=
  11. # # Careful about linking to 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. # # Convenience target for including files in the distributable release
  17. # DIST_NAME = Qwelk
  18. # .PHONY: dist
  19. # dist: all
  20. # ifndef VERSION
  21. # $(error VERSION must be defined when making distributables)
  22. # endif
  23. # mkdir -p dist/$(DIST_NAME)
  24. # cp LICENSE* dist/$(DIST_NAME)/
  25. # cp $(TARGET) dist/$(DIST_NAME)/
  26. # cp -R res dist/$(DIST_NAME)/
  27. # cp -R examples dist/$(DIST_NAME)/
  28. # cd dist && zip -5 -r $(DIST_NAME)-$(VERSION)-$(ARCH).zip $(DIST_NAME)
  29. # # Must include the VCV plugin Makefile framework
  30. # include ../../plugin.mk