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.

46 lines
847B

  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 = ProM
  9. # --------------------------------------------------------------
  10. # Files to build
  11. OBJS_DSP = \
  12. DistrhoPluginProM.cpp.o
  13. OBJS_UI = \
  14. DistrhoUIProM.cpp.o
  15. # --------------------------------------------------------------
  16. # Do some magic
  17. include ../Makefile.ProM.mk
  18. # --------------------------------------------------------------
  19. # Enable all possible plugin types
  20. ifeq ($(BUILD_JACK),true)
  21. ifeq ($(HAVE_JACK),true)
  22. TARGETS += jack
  23. endif
  24. endif
  25. ifeq ($(BUILD_LV2),true)
  26. TARGETS += lv2
  27. endif
  28. ifeq ($(BUILD_VST2),true)
  29. TARGETS += vst
  30. endif
  31. all: $(TARGETS)
  32. # --------------------------------------------------------------