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.

46 lines
945B

  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. MidiKeyboardExampleUI.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../../Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Additional flags
  21. BASE_FLAGS += -I../../dgl/src/nanovg
  22. # --------------------------------------------------------------
  23. # Enable all possible plugin types
  24. ifeq ($(LINUX),true)
  25. TARGETS += jack
  26. endif
  27. TARGETS += lv2_dsp
  28. TARGETS += vst
  29. all: $(TARGETS)
  30. # --------------------------------------------------------------