DISTRHO ndc Plugs
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.

49 lines
1008B

  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 = CycleShifter
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginCycleShifter.cpp
  13. FILES_UI = \
  14. DistrhoArtworkCycleShifter.cpp \
  15. DistrhoUICycleShifter.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. UI_TYPE = generic
  19. SKIP_NATIVE_AUDIO_FALLBACK = true
  20. USE_FILE_BROWSER = false
  21. include ../../dpf/Makefile.plugins.mk
  22. # --------------------------------------------------------------
  23. # Enable all possible plugin types
  24. TARGETS += clap
  25. TARGETS += jack
  26. TARGETS += ladspa
  27. TARGETS += lv2_sep
  28. TARGETS += vst2
  29. TARGETS += vst3
  30. ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
  31. ifeq ($(HAVE_LIBLO),true)
  32. TARGETS += dssi
  33. endif
  34. endif
  35. all: $(TARGETS)
  36. # --------------------------------------------------------------