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
10NAME = d_meters
11
12# --------------------------------------------------------------
13# Files to build
14
15FILES_DSP = \
16	ExamplePluginMeters.cpp
17
18FILES_UI  = \
19	ExampleUIMeters.cpp
20
21# --------------------------------------------------------------
22# Do some magic
23
24include ../../Makefile.plugins.mk
25
26# --------------------------------------------------------------
27# Enable all possible plugin types
28
29ifeq ($(HAVE_JACK),true)
30ifeq ($(HAVE_OPENGL),true)
31TARGETS += jack
32endif
33endif
34
35ifneq ($(MACOS_OR_WINDOWS),true)
36ifeq ($(HAVE_LIBLO),true)
37ifeq ($(HAVE_OPENGL),true)
38TARGETS += dssi
39endif
40endif
41endif
42
43ifeq ($(HAVE_OPENGL),true)
44TARGETS += lv2_sep
45else
46TARGETS += lv2_dsp
47endif
48
49TARGETS += vst
50
51all: $(TARGETS)
52
53# --------------------------------------------------------------
54