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