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.

55 lines
1.1KB

  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_midiKeyboard
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. MidiKeyboardExamplePlugin.cpp
  13. FILES_UI = \
  14. resources/MidiKeyboardResources.cpp \
  15. widgets/PianoKey.cpp \
  16. widgets/KeyboardWidget.cpp \
  17. MidiKeyboardExampleUI.cpp
  18. # --------------------------------------------------------------
  19. # Do some magic
  20. include ../../Makefile.plugins.mk
  21. # --------------------------------------------------------------
  22. # Additional flags
  23. BASE_FLAGS += -I./widgets/
  24. # --------------------------------------------------------------
  25. # Enable all possible plugin types
  26. ifeq ($(HAVE_JACK),true)
  27. ifeq ($(HAVE_OPENGL),true)
  28. TARGETS += jack
  29. endif
  30. endif
  31. ifeq ($(HAVE_OPENGL),true)
  32. TARGETS += lv2_sep
  33. else
  34. TARGETS += lv2_dsp
  35. endif
  36. TARGETS += vst
  37. all: $(TARGETS)
  38. # --------------------------------------------------------------