summaryrefslogtreecommitdiff
path: root/plugins/ZamGEQ31/Makefile
blob: 3badc266a9123d71490e94ecdb2ceaf500cc87d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/make -f
# Makefile for zam-plugins #
# ------------------------ #
# Created by falkTX
#

# --------------------------------------------------------------
# Project name, used for binaries

NAME = ZamGEQ31

# --------------------------------------------------------------
# Files to build

OBJS_DSP = \
	ZamGEQ31Plugin.cpp.o

OBJS_UI  = \
	ZamGEQ31Artwork.cpp.o \
	ZamGEQ31UI.cpp.o

# --------------------------------------------------------------
# Do some magic

include ../Makefile.mk

# --------------------------------------------------------------
# Enable all possible plugin types

ifeq ($(LINUX),true)
all: jack ladspa dssi lv2_sep vst
else
all: ladspa vst
endif

# --------------------------------------------------------------