DISTRHO Mini-Series
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.

52 lines
1009B

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