#!/usr/bin/make -f # Makefile for DISTRHO Plugins # # ---------------------------- # # Created by falkTX # # -------------------------------------------------------------- # Project name, used for binaries NAME = MaPitchshift # -------------------------------------------------------------- # Files to build FILES_DSP = \ DistrhoPluginMaxGen.cpp # -------------------------------------------------------------- # Do some magic include ../../dpf/Makefile.plugins.mk # -------------------------------------------------------------- # Extra flags BUILD_CXX_FLAGS += -I../common -I../common/gen_dsp # -------------------------------------------------------------- # Enable all possible plugin types ifeq ($(HAVE_JACK),true) TARGETS += jack endif TARGETS += ladspa TARGETS += lv2_dsp TARGETS += vst all: $(TARGETS) # --------------------------------------------------------------