Collection of DPF-based plugins for packaging
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.

49 lines
914B

  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 = MVerb
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginMVerb.cpp
  13. FILES_UI = \
  14. DistrhoArtworkMVerb.cpp \
  15. DistrhoUIMVerb.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../../dpf/Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Enable all possible plugin types
  21. TARGETS += jack
  22. TARGETS += ladspa
  23. TARGETS += vst2
  24. ifeq ($(HAVE_DGL),true)
  25. ifeq ($(HAVE_LIBLO),true)
  26. TARGETS += dssi
  27. endif
  28. endif
  29. ifeq ($(HAVE_DGL),true)
  30. TARGETS += lv2_sep
  31. else
  32. TARGETS += lv2_dsp
  33. endif
  34. all: $(TARGETS)
  35. # --------------------------------------------------------------