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.

36 lines
761B

  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. CairoExampleUI.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. UI_TYPE = cairo
  19. include ../../Makefile.plugins.mk
  20. # --------------------------------------------------------------
  21. # Enable all possible plugin types
  22. TARGETS = clap dssi jack lv2_sep vst2 vst3 au
  23. all: $(TARGETS)
  24. # --------------------------------------------------------------