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.

47 lines
872B

  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_files
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. FileHandlingPlugin.cpp
  13. FILES_UI = \
  14. FileHandlingUI.cpp \
  15. NanoButton.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../../Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Enable all possible plugin types
  21. ifeq ($(HAVE_JACK),true)
  22. ifeq ($(HAVE_OPENGL),true)
  23. TARGETS += jack
  24. endif
  25. endif
  26. ifeq ($(HAVE_OPENGL),true)
  27. TARGETS += lv2_sep
  28. else
  29. TARGETS += lv2_dsp
  30. endif
  31. TARGETS += vst
  32. all: $(TARGETS)
  33. # --------------------------------------------------------------