DISTRHO Plugin Framework
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.

54 lines
1.0KB

  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 = d_parameters
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. ExamplePluginParameters.cpp
  13. FILES_UI = \
  14. ExampleUIParameters.cpp
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. include ../../Makefile.plugins.mk
  18. # --------------------------------------------------------------
  19. # Enable all possible plugin types
  20. ifeq ($(HAVE_OPENGL),true)
  21. TARGETS += jack
  22. endif # HAVE_OPENGL
  23. ifneq ($(MACOS_OR_WINDOWS),true)
  24. TARGETS += ladspa
  25. ifeq ($(HAVE_LIBLO),true)
  26. ifeq ($(HAVE_OPENGL),true)
  27. TARGETS += dssi
  28. endif # HAVE_OPENGL
  29. endif # HAVE_LIBLO
  30. endif # MACOS_OR_WINDOWS
  31. ifeq ($(HAVE_OPENGL),true)
  32. TARGETS += lv2_sep
  33. else
  34. TARGETS += lv2_dsp
  35. endif
  36. TARGETS += vst
  37. TARGETS += vst3
  38. all: $(TARGETS)
  39. # --------------------------------------------------------------