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.

40 lines
1.0KB

  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/generic
  21. BUILD_CXX_FLAGS += -I../../dpf-widgets/opengl
  22. BUILD_CXX_FLAGS += $(shell pkg-config --cflags carla-host-plugin carla-native-plugin carla-utils)
  23. LINK_FLAGS += $(shell pkg-config --libs carla-host-plugin carla-native-plugin carla-utils)
  24. # --------------------------------------------------------------
  25. # Enable all possible plugin types
  26. all: jack lv2 vst2 vst3
  27. # --------------------------------------------------------------