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.

58 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. Artwork.cpp \
  15. DemoWidgetBanner.cpp \
  16. DemoWidgetClickable.cpp \
  17. CairoExampleUI.cpp
  18. # --------------------------------------------------------------
  19. # Do some magic
  20. UI_TYPE = cairo
  21. include ../../Makefile.plugins.mk
  22. # --------------------------------------------------------------
  23. # Enable all possible plugin types
  24. ifeq ($(HAVE_JACK),true)
  25. ifeq ($(HAVE_CAIRO),true)
  26. TARGETS += jack
  27. endif
  28. endif
  29. ifeq ($(LINUX),true)
  30. ifeq ($(HAVE_CAIRO),true)
  31. ifeq ($(HAVE_LIBLO),true)
  32. TARGETS += dssi
  33. endif
  34. endif
  35. endif
  36. ifeq ($(HAVE_CAIRO),true)
  37. TARGETS += lv2_sep
  38. else
  39. TARGETS += lv2_dsp
  40. endif
  41. TARGETS += vst
  42. all: $(TARGETS)
  43. # --------------------------------------------------------------