Makefile (672B)
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_cvport 11 12 # -------------------------------------------------------------- 13 # Files to build 14 15 FILES_DSP = \ 16 ExamplePluginCVPort.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 lv2_sep 27 28 all: $(TARGETS) 29 30 # --------------------------------------------------------------