DISTRHO Plugin Framework
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.

31 lines
672B

  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 = d_cvport
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. ExamplePluginCVPort.cpp
  13. # --------------------------------------------------------------
  14. # Do some magic
  15. include ../../Makefile.plugins.mk
  16. # --------------------------------------------------------------
  17. # Enable all possible plugin types
  18. TARGETS = jack lv2_dsp
  19. all: $(TARGETS)
  20. # --------------------------------------------------------------