Collection of DPF-based plugins for packaging
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.

50 lines
972B

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