Makefile (921B)
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_parameters 11 12 # -------------------------------------------------------------- 13 # Files to build 14 15 FILES_DSP = \ 16 ExamplePluginParameters.cpp 17 18 FILES_UI = \ 19 ExampleUIParameters.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 += ladspa 31 32 ifeq ($(HAVE_LIBLO),true) 33 ifeq ($(HAVE_OPENGL),true) 34 TARGETS += dssi 35 endif # HAVE_OPENGL 36 endif # HAVE_LIBLO 37 38 TARGETS += lv2_sep 39 TARGETS += vst 40 TARGETS += vst3 41 TARGETS += clap 42 TARGETS += au 43 44 all: $(TARGETS) 45 46 # --------------------------------------------------------------