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

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

NAME = ZamSynth

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

OBJS_DSP = \
	ZamSynthPlugin.cpp.o

OBJS_UI  = \
	ZamSynthArtwork.cpp.o \
	ZamSynthUI.cpp.o

# --------------------------------------------------------------
# No custom UI for now

TARGET_NOUI = true

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

include ../Makefile.mk

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