summaryrefslogtreecommitdiff
path: root/plugins/ZamTube/Makefile
blob: 0764115014c3eed50570672656f09a018b207bd3 (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
37
#!/usr/bin/make -f
# Makefile for zam-plugins #
# ------------------------ #
# Created by falkTX
#

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

NAME = ZamTube

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

OBJS_DSP = \
	ZamTubePlugin.cpp.o \
	wdf.cpp.o

OBJS_UI  = \
	ZamTubeArtwork.cpp.o \
	ZamTubeUI.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

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