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.

41 lines
885B

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