DPF with Max Gen
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.

35 lines
851B

  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 = MaBitcrush
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginMaxGen.cpp
  13. # --------------------------------------------------------------
  14. # Do some magic
  15. include ../../dpf/Makefile.plugins.mk
  16. # --------------------------------------------------------------
  17. # Extra flags
  18. BUILD_CXX_FLAGS += -I../common -I../common/gen_dsp
  19. BUILD_CXX_FLAGS += -Wno-unused-parameter
  20. # --------------------------------------------------------------
  21. # Enable all possible plugin types
  22. all: jack ladspa lv2_dsp vst2 vst3 clap
  23. # --------------------------------------------------------------