DISTRHO Mini-Series
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.

42 lines
936B

  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 = PingPongPan
  9. # --------------------------------------------------------------
  10. # Files to build
  11. FILES_DSP = \
  12. DistrhoPluginPingPongPan.cpp
  13. FILES_UI = \
  14. DistrhoArtworkPingPongPan.cpp \
  15. DistrhoUIPingPongPan.cpp
  16. # --------------------------------------------------------------
  17. # Do some magic
  18. UI_TYPE = generic
  19. SKIP_NATIVE_AUDIO_FALLBACK = true
  20. USE_FILE_BROWSER = false
  21. include ../../dpf/Makefile.plugins.mk
  22. # --------------------------------------------------------------
  23. # Enable all possible plugin types
  24. TARGETS = au clap jack ladspa lv2_sep vst2 vst3
  25. ifeq ($(HAVE_CAIRO_OR_OPENGL)$(HAVE_LIBLO),truetrue)
  26. TARGETS += dssi
  27. endif
  28. all: $(TARGETS)
  29. # --------------------------------------------------------------