Collection of DPF-based plugins for packaging
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.

51 lines
966B

  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 = glBars
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginGLBars.cpp
  13. FILES_UI = \
  14. DistrhoUIGLBars.cpp
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. include ../../dpf/Makefile.plugins.mk
  18. # --------------------------------------------------------------
  19. # Extra flags
  20. LINK_FLAGS += -lpthread
  21. # --------------------------------------------------------------
  22. # Enable all possible plugin types
  23. ifeq ($(BUILD_JACK),true)
  24. ifeq ($(HAVE_JACK),true)
  25. TARGETS += jack
  26. endif
  27. endif
  28. ifeq ($(BUILD_LV2),true)
  29. TARGETS += lv2
  30. endif
  31. ifeq ($(BUILD_VST2),true)
  32. TARGETS += vst
  33. endif
  34. all: $(TARGETS)
  35. # --------------------------------------------------------------