view CloneChannel/plugins/CloneChannel/Makefile @ 20:b637ac9c6605

lamertetris - PKGBUILD corrections
author Przemyslaw <prymula76@outlook.com>
date Sun, 31 Mar 2024 16:21:08 +0200
parents 24d60bdea349
children
line wrap: on
line source

#!/usr/bin/make -f
# Makefile for DISTRHO Plugins #
# ---------------------------- #
# Created by falkTX
#

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

NAME = CloneChannel

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

FILES_DSP = \
	DistrhoPluginCloneChannel.cpp

FILES_UI  = \
	DistrhoArtworkCloneChannel.cpp \
	DistrhoUICloneChannel.cpp

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

UI_TYPE = generic
FILE_BROWSER_DISABLED = true
include ../../dpf/Makefile.plugins.mk

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

#TARGETS += clap
TARGETS += jack
TARGETS += ladspa
TARGETS += lv2_sep
#TARGETS += vst2
#TARGETS += vst3

ifeq ($(HAVE_CAIRO_OR_OPENGL),true)
ifeq ($(HAVE_LIBLO),true)
TARGETS += dssi
endif
endif

all: $(TARGETS)

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