#!/usr/bin/make -f # Makefile for DISTRHO Plugins # # ---------------------------- # # Created by falkTX # # -------------------------------------------------------------- # Project name, used for binaries NAME = d_latency # -------------------------------------------------------------- # Files to build FILES_DSP = \ LatencyExamplePlugin.cpp # -------------------------------------------------------------- # Do some magic include ../../Makefile.plugins.mk # -------------------------------------------------------------- # Enable all possible plugin types TARGETS += ladspa TARGETS += lv2_sep TARGETS += vst2 TARGETS += vst3 TARGETS += clap all: $(TARGETS) # --------------------------------------------------------------