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.

43 lines
819B

  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_extui
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. ExternalExamplePlugin.cpp
  13. FILES_UI = \
  14. ExternalExampleUI.cpp
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. include ../../Makefile.plugins.mk
  18. ifneq ($(HAIKU),true)
  19. LINK_FLAGS += -ldl
  20. endif
  21. # --------------------------------------------------------------
  22. # Enable all possible plugin types
  23. ifeq ($(HAVE_JACK),true)
  24. TARGETS += jack
  25. endif
  26. TARGETS += dssi
  27. TARGETS += lv2_sep
  28. all: $(TARGETS)
  29. # --------------------------------------------------------------