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.

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