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