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.

59 lines
1.1KB

  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 = Nekobi
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginNekobi.cpp
  13. FILES_UI = \
  14. DistrhoArtworkNekobi.cpp \
  15. DistrhoUINekobi.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. UI_TYPE = generic
  19. FILE_BROWSER_DISABLED = true
  20. include ../../dpf/Makefile.plugins.mk
  21. # --------------------------------------------------------------
  22. # Extra flags
  23. BASE_FLAGS += -pthread
  24. LINK_FLAGS += -pthread
  25. # --------------------------------------------------------------
  26. # Enable all possible plugin types
  27. TARGETS += jack
  28. TARGETS += dssi_dsp
  29. ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
  30. ifeq ($(HAVE_LIBLO),true)
  31. TARGETS += dssi_ui
  32. endif
  33. endif
  34. ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
  35. TARGETS += lv2_sep
  36. else
  37. TARGETS += lv2_dsp
  38. endif
  39. TARGETS += vst2
  40. TARGETS += vst3
  41. all: $(TARGETS)
  42. # --------------------------------------------------------------