summaryrefslogtreecommitdiff
path: root/plugins/ZamComp/Makefile
blob: 12ab20a4e4499182e1b306a0bec38d5dbd80059e (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 = ZamComp

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

OBJS_DSP = \
	ZamCompPlugin.cpp.o

OBJS_UI  = \
	ZamCompArtwork.cpp.o \
	ZamCompUI.cpp.o

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

#TARGET_NOUI = true

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

include ../Makefile.mk

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