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.

63 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 = CycleShifter
  9. # --------------------------------------------------------------
  10. # Files to build
  11. OBJS_DSP = \
  12. DistrhoPluginCycleShifter.cpp.o
  13. OBJS_UI = \
  14. DistrhoArtworkCycleShifter.cpp.o \
  15. DistrhoUICycleShifter.cpp.o
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../Makefile.ndc-Plugs.mk
  19. # --------------------------------------------------------------
  20. # Enable all possible plugin types
  21. ifeq ($(BUILD_JACK),true)
  22. ifeq ($(HAVE_JACK),true)
  23. TARGETS += jack
  24. endif
  25. endif
  26. ifeq ($(BUILD_LADSPA),true)
  27. TARGETS += ladspa
  28. endif
  29. ifeq ($(BUILD_DSSI),true)
  30. ifeq ($(HAVE_DGL),true)
  31. ifeq ($(HAVE_LIBLO),true)
  32. TARGETS += dssi
  33. endif
  34. endif
  35. endif
  36. ifeq ($(BUILD_LV2),true)
  37. ifeq ($(HAVE_DGL),true)
  38. TARGETS += lv2_sep
  39. else
  40. TARGETS += lv2_dsp
  41. endif
  42. endif
  43. ifeq ($(BUILD_VST2),true)
  44. TARGETS += vst
  45. endif
  46. all: $(TARGETS)
  47. # --------------------------------------------------------------