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.

37 lines
737B

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