Mercurial > hg > pub > prymula > com
comparison 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 |
comparison
equal
deleted
inserted
replaced
2:cf2cb71d31dd | 3:84e66ea83026 |
---|---|
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 = CloneChannel | |
11 | |
12 # -------------------------------------------------------------- | |
13 # Files to build | |
14 | |
15 FILES_DSP = \ | |
16 DistrhoPluginCloneChannel.cpp | |
17 | |
18 FILES_UI = \ | |
19 DistrhoArtworkCloneChannel.cpp \ | |
20 DistrhoUICloneChannel.cpp | |
21 | |
22 # -------------------------------------------------------------- | |
23 # Do some magic | |
24 | |
25 UI_TYPE = generic | |
26 FILE_BROWSER_DISABLED = true | |
27 include ../../dpf/Makefile.plugins.mk | |
28 | |
29 # -------------------------------------------------------------- | |
30 # Enable all possible plugin types | |
31 | |
32 #TARGETS += clap | |
33 TARGETS += jack | |
34 TARGETS += ladspa | |
35 TARGETS += lv2_sep | |
36 #TARGETS += vst2 | |
37 #TARGETS += vst3 | |
38 | |
39 ifeq ($(HAVE_CAIRO_OR_OPENGL),true) | |
40 ifeq ($(HAVE_LIBLO),true) | |
41 TARGETS += dssi | |
42 endif | |
43 endif | |
44 | |
45 all: $(TARGETS) | |
46 | |
47 # -------------------------------------------------------------- |