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.

41 lines
805B

  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 = MaPitchshift
  9. # --------------------------------------------------------------
  10. # Files to build
  11. OBJS_DSP = \
  12. DistrhoPluginMaxGen.cpp.o \
  13. gen_exported.cpp.o
  14. # --------------------------------------------------------------
  15. # Do some magic
  16. include ../Makefile.DPF-Max-Gen.mk
  17. # --------------------------------------------------------------
  18. # Enable all possible plugin types
  19. ifeq ($(HAVE_JACK),true)
  20. TARGETS += jack
  21. endif
  22. ifeq ($(LINUX),true)
  23. TARGETS += ladspa
  24. endif
  25. TARGETS += lv2_dsp
  26. TARGETS += vst
  27. all: $(TARGETS)
  28. # --------------------------------------------------------------