DPF Plugin examples
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.

36 lines
734B

  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_info
  9. # --------------------------------------------------------------
  10. # Files to build
  11. OBJS_DSP = \
  12. ExamplePluginInfo.cpp.o
  13. OBJS_UI = \
  14. ExampleUIInfo.cpp.o
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. include ../Makefile.mk
  18. # --------------------------------------------------------------
  19. # Enable all possible plugin types
  20. ifeq ($(LINUX),true)
  21. all: jack dssi lv2_sep vst
  22. else
  23. all: dssi lv2_sep vst
  24. endif
  25. # --------------------------------------------------------------