Mercurial > hg > pub > prymula > com
diff DPF-Prymula-audioplugins/plugins/CloneChannel/Makefile @ 3:84e66ea83026
DPF-Prymula-audioplugins-0.231015-2
author | prymula <prymula76@outlook.com> |
---|---|
date | Mon, 16 Oct 2023 21:53:34 +0200 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DPF-Prymula-audioplugins/plugins/CloneChannel/Makefile Mon Oct 16 21:53:34 2023 +0200 @@ -0,0 +1,47 @@ +#!/usr/bin/make -f +# Makefile for DISTRHO Plugins # +# ---------------------------- # +# Created by falkTX +# + +# -------------------------------------------------------------- +# Project name, used for binaries + +NAME = CloneChannel + +# -------------------------------------------------------------- +# Files to build + +FILES_DSP = \ + DistrhoPluginCloneChannel.cpp + +FILES_UI = \ + DistrhoArtworkCloneChannel.cpp \ + DistrhoUICloneChannel.cpp + +# -------------------------------------------------------------- +# Do some magic + +UI_TYPE = generic +FILE_BROWSER_DISABLED = true +include ../../dpf/Makefile.plugins.mk + +# -------------------------------------------------------------- +# Enable all possible plugin types + +#TARGETS += clap +TARGETS += jack +TARGETS += ladspa +TARGETS += lv2_sep +#TARGETS += vst2 +#TARGETS += vst3 + +ifeq ($(HAVE_CAIRO_OR_OPENGL),true) +ifeq ($(HAVE_LIBLO),true) +TARGETS += dssi +endif +endif + +all: $(TARGETS) + +# --------------------------------------------------------------