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.

39 lines
759B

  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 = ProM
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginProM.cpp
  13. FILES_UI = \
  14. DistrhoUIProM.cpp
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. include ../../dpf/Makefile.plugins.mk
  18. # --------------------------------------------------------------
  19. # Enable all possible plugin types
  20. ifeq ($(HAVE_JACK),true)
  21. TARGETS += jack
  22. endif
  23. TARGETS += lv2
  24. TARGETS += vst
  25. all: $(TARGETS)
  26. # --------------------------------------------------------------