DISTRHO Juice Plugins
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.

37 lines
768B

  1. #!/usr/bin/make -f
  2. # Makefile for DISTRHO Plugins #
  3. # ---------------------------- #
  4. # Created by falkTX
  5. #
  6. # --------------------------------------------------------------
  7. # Project name, used for binaries
  8. NAME = WobbleJuice
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. WobbleJuicePlugin.cpp
  13. FILES_UI = \
  14. WobbleJuiceArtwork.cpp \
  15. WobbleJuiceUI.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../../dpf/Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Enable all possible plugin types
  21. ifeq ($(LINUX),true)
  22. all: jack lv2_sep vst
  23. else
  24. all: lv2_sep vst
  25. endif
  26. # --------------------------------------------------------------