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.

60 lines
1.0KB

  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 ($(BUILD_JACK),true)
  22. ifeq ($(HAVE_JACK),true)
  23. TARGETS += jack
  24. endif
  25. endif
  26. ifeq ($(BUILD_DSSI),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 ($(BUILD_LV2),true)
  35. ifeq ($(HAVE_DGL),true)
  36. TARGETS += lv2_sep
  37. else
  38. TARGETS += lv2_dsp
  39. endif
  40. endif
  41. ifeq ($(BUILD_VST2),true)
  42. TARGETS += vst
  43. endif
  44. all: $(TARGETS)
  45. # --------------------------------------------------------------