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.

57 lines
1.0KB

  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. include ../../dpf/Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Extra flags
  21. LINK_FLAGS += -lpthread
  22. # --------------------------------------------------------------
  23. # Enable all possible plugin types
  24. ifeq ($(HAVE_JACK),true)
  25. TARGETS += jack
  26. endif
  27. TARGETS += dssi_dsp
  28. ifeq ($(HAVE_DGL),true)
  29. ifeq ($(HAVE_LIBLO),true)
  30. TARGETS += dssi_ui
  31. endif
  32. endif
  33. ifeq ($(HAVE_DGL),true)
  34. TARGETS += lv2_sep
  35. else
  36. TARGETS += lv2_dsp
  37. endif
  38. TARGETS += vst
  39. all: $(TARGETS)
  40. # --------------------------------------------------------------