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
977B

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