1#!/usr/bin/make -f
2# Makefile for zam-plugins #
3# ------------------------ #
4# Created by falkTX
5#
6
7# --------------------------------------------------------------
8# Project name, used for binaries
9
10NAME = ZamAutoSat
11
12# --------------------------------------------------------------
13# Files to build
14
15FILES_DSP = \
16	ZamAutoSatPlugin.cpp
17
18FILES_UI  = \
19	ZamAutoSatArtwork.cpp \
20	ZamAutoSatUI.cpp
21
22# --------------------------------------------------------------
23# Do some magic
24
25include ../../dpf/Makefile.plugins.mk
26
27# --------------------------------------------------------------
28# Enable all possible plugin types
29
30ifeq ($(HAVE_JACK),true)
31TARGETS += jack
32endif
33
34ifeq ($(UNIX),true)
35TARGETS += ladspa
36endif
37
38ifeq ($(HAVE_DGL),true)
39TARGETS += lv2_sep
40else
41TARGETS += lv2_dsp
42endif
43
44TARGETS += vst
45
46all: $(TARGETS)
47
48# --------------------------------------------------------------
49