#!/usr/bin/make -f # Makefile for DISTRHO Plugins # # ---------------------------- # # Created by falkTX # # -------------------------------------------------------------- # Project name, used for binaries NAME = d_info # -------------------------------------------------------------- # Files to build FILES_DSP = \ InfoExamplePlugin.cpp FILES_UI = \ InfoExampleUI.cpp # -------------------------------------------------------------- # Do some magic include ../Makefile.mk # -------------------------------------------------------------- # Enable all possible plugin types ifeq ($(HAVE_DGL),true) ifeq ($(HAVE_JACK),true) TARGETS += jack endif endif ifeq ($(HAVE_DGL),true) TARGETS += lv2_sep else TARGETS += lv2_dsp endif TARGETS += vst all: $(TARGETS) # --------------------------------------------------------------