DISTRHO Plugin Framework
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.

52 lines
998B

  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 = d_web
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. ExamplePluginWebMeters.cpp
  13. FILES_UI = \
  14. ExampleUIWebMeters.cpp
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. # MACOS_NO_DEAD_STRIP = true
  18. UI_TYPE = web
  19. include ../../Makefile.plugins.mk
  20. # --------------------------------------------------------------
  21. # Enable all possible plugin types
  22. ifeq ($(HAVE_OPENGL),true)
  23. TARGETS += jack
  24. ifneq ($(MACOS_OR_WINDOWS),true)
  25. ifeq ($(HAVE_LIBLO),true)
  26. TARGETS += dssi
  27. endif # HAVE_LIBLO
  28. endif # MACOS_OR_WINDOWS
  29. TARGETS += lv2_sep
  30. TARGETS += vst2
  31. TARGETS += vst3
  32. TARGETS += clap
  33. TARGETS += au
  34. endif # HAVE_OPENGL
  35. all: $(TARGETS)
  36. # --------------------------------------------------------------