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.

54 lines
999B

  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 ($(HAVE_JACK),true)
  22. TARGETS += jack
  23. endif
  24. ifeq ($(LINUX),true)
  25. TARGETS += ladspa
  26. ifeq ($(HAVE_DGL),true)
  27. ifeq ($(HAVE_LIBLO),true)
  28. TARGETS += dssi
  29. endif
  30. endif
  31. endif
  32. ifeq ($(HAVE_DGL),true)
  33. TARGETS += lv2_sep
  34. else
  35. TARGETS += lv2_dsp
  36. endif
  37. TARGETS += vst
  38. all: $(TARGETS)
  39. # --------------------------------------------------------------