#!/usr/bin/make -f # Makefile for DISTRHO Plugins # # ---------------------------- # # Created by falkTX # # -------------------------------------------------------------- # Project name, used for binaries NAME = d_gain # -------------------------------------------------------------- # Files to build FILES_DSP = \ GainExamplePlugin.cpp # -------------------------------------------------------------- # Do some magic include ../../Makefile.plugins.mk # -------------------------------------------------------------- # Enable all possible plugin types ifeq ($(LINUX),true) TARGETS += ladspa TARGETS += dssi endif TARGETS += lv2_dsp TARGETS += vst ifeq ($(MACOS),true) TARGETS += au endif all: $(TARGETS) # --------------------------------------------------------------