Makefile (736B)
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_latency 11 12 # -------------------------------------------------------------- 13 # Files to build 14 15 FILES_DSP = \ 16 LatencyExamplePlugin.cpp 17 18 # -------------------------------------------------------------- 19 # Do some magic 20 21 include ../../Makefile.plugins.mk 22 23 # -------------------------------------------------------------- 24 # Enable all possible plugin types 25 26 TARGETS += ladspa 27 TARGETS += lv2_sep 28 TARGETS += vst2 29 TARGETS += vst3 30 TARGETS += clap 31 32 all: $(TARGETS) 33 34 # --------------------------------------------------------------