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.

56 lines
997B

  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 = Kars
  9. # --------------------------------------------------------------
  10. # Files to build
  11. OBJS_DSP = \
  12. DistrhoPluginKars.cpp.o
  13. OBJS_UI = \
  14. DistrhoArtworkKars.cpp.o \
  15. DistrhoUIKars.cpp.o
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. include ../Makefile.Kars.mk
  19. # --------------------------------------------------------------
  20. # Enable all possible plugin types
  21. ifeq ($(HAVE_DGL),true)
  22. ifeq ($(HAVE_JACK),true)
  23. TARGETS += jack
  24. endif
  25. endif
  26. ifeq ($(LINUX),true)
  27. TARGETS += dssi_dsp
  28. ifeq ($(HAVE_DGL),true)
  29. ifeq ($(HAVE_LIBLO),true)
  30. TARGETS += dssi_ui
  31. endif
  32. endif
  33. endif
  34. ifeq ($(HAVE_DGL),true)
  35. TARGETS += lv2_sep
  36. else
  37. TARGETS += lv2_dsp
  38. endif
  39. TARGETS += vst
  40. all: $(TARGETS)
  41. # --------------------------------------------------------------