Makefile (756B)
1 #!/usr/bin/make -f 2 # Makefile for DISTRHO Plugins # 3 # ---------------------------- # 4 # Created by falkTX 5 # 6 7 # -------------------------------------------------------------- 8 # Project name, used for binaries 9 10 NAME = d_midiThrough 11 12 # -------------------------------------------------------------- 13 # Files to build 14 15 FILES_DSP = \ 16 MidiThroughExamplePlugin.cpp 17 18 # -------------------------------------------------------------- 19 # Do some magic 20 21 include ../../Makefile.plugins.mk 22 23 # -------------------------------------------------------------- 24 # Enable all possible plugin types 25 26 TARGETS += jack 27 TARGETS += lv2_dsp 28 TARGETS += vst2 29 TARGETS += vst3 30 TARGETS += clap 31 TARGETS += au 32 33 all: $(TARGETS) 34 35 # --------------------------------------------------------------