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.

48 lines
939B

  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. UI_TYPE = generic
  18. include ../../Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Enable all possible plugin types
  21. TARGETS += jack
  22. TARGETS += ladspa
  23. ifeq ($(HAVE_LIBLO),true)
  24. ifeq ($(HAVE_OPENGL),true)
  25. TARGETS += dssi
  26. endif # HAVE_OPENGL
  27. endif # HAVE_LIBLO
  28. TARGETS += lv2_sep
  29. TARGETS += vst
  30. TARGETS += vst3
  31. TARGETS += clap
  32. TARGETS += au
  33. all: $(TARGETS)
  34. # --------------------------------------------------------------