#!/usr/bin/make -f # Makefile for DISTRHO Plugins # # ---------------------------- # # Created by falkTX # # -------------------------------------------------------------- # Project name, used for binaries NAME = d_meters # -------------------------------------------------------------- # Files to build FILES_DSP = \ ExamplePluginMeters.cpp FILES_UI = \ ExampleUIMeters.cpp # -------------------------------------------------------------- # Do some magic include ../../Makefile.plugins.mk # -------------------------------------------------------------- # Enable all possible plugin types ifeq ($(HAVE_OPENGL),true) TARGETS += jack ifneq ($(MACOS_OR_WINDOWS),true) ifeq ($(HAVE_LIBLO),true) TARGETS += dssi endif # HAVE_LIBLO endif # MACOS_OR_WINDOWS TARGETS += lv2_sep TARGETS += vst2 TARGETS += vst3 endif # HAVE_OPENGL all: $(TARGETS) # --------------------------------------------------------------