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.

45 lines
894B

  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_info
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. InfoExamplePlugin.cpp
  13. FILES_UI = \
  14. InfoExampleUI.cpp
  15. # require for modgui builds
  16. MODGUI_CLASS_NAME = distrho_examples_info
  17. # --------------------------------------------------------------
  18. # Do some magic
  19. include ../../Makefile.plugins.mk
  20. # --------------------------------------------------------------
  21. # Enable all possible plugin types
  22. ifeq ($(HAVE_OPENGL),true)
  23. TARGETS += jack
  24. endif # HAVE_OPENGL
  25. TARGETS += lv2_sep
  26. TARGETS += vst2
  27. TARGETS += vst3
  28. TARGETS += clap
  29. TARGETS += au
  30. all: $(TARGETS)
  31. # --------------------------------------------------------------