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