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.

36 lines
817B

  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 = Ildaeil-FX
  9. # --------------------------------------------------------------
  10. # Files to build (DPF stuff)
  11. FILES_DSP = \
  12. IldaeilPlugin.cpp
  13. FILES_UI = \
  14. IldaeilUI.cpp \
  15. ../../dpf-widgets/opengl/DearImGui.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../../dpf/Makefile.plugins.mk
  19. BUILD_CXX_FLAGS += -I../Common
  20. BUILD_CXX_FLAGS += -I../../dpf-widgets/opengl
  21. # --------------------------------------------------------------
  22. # Enable all possible plugin types
  23. all: jack lv2 vst2 vst3
  24. # --------------------------------------------------------------