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.

40 lines
850B

  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. FILE_BROWSER_DISABLED = true
  18. include ../../dpf/Makefile.plugins.mk
  19. # --------------------------------------------------------------
  20. # Extra flags
  21. LINK_FLAGS += -lpthread
  22. # --------------------------------------------------------------
  23. # Enable all possible plugin types
  24. TARGETS = jack lv2 vst2 vst3
  25. all: $(TARGETS)
  26. # --------------------------------------------------------------