42 lines
629 B
Makefile
42 lines
629 B
Makefile
###############################
|
|
#
|
|
# Makefile for Peacock
|
|
# based on the work of falkTX, in the DPF example plugins
|
|
#
|
|
# for full licence, see LICENCE in the root of the project
|
|
#
|
|
###############################
|
|
|
|
NAME = peacock
|
|
|
|
FILES_DSP = \
|
|
assigner.cpp \
|
|
module.cpp \
|
|
voice.cpp \
|
|
tables.cpp \
|
|
parameters.cpp \
|
|
svf.cpp \
|
|
chorus.cpp \
|
|
peacock.cpp
|
|
|
|
FILES_UI = \
|
|
orangebutton.cpp \
|
|
panel.cpp \
|
|
slider.cpp \
|
|
slideswitch.cpp \
|
|
artwork.cpp \
|
|
ui.cpp
|
|
|
|
UI_TYPE = generic
|
|
USE_FILE_BROWSER = false
|
|
|
|
include ../dpf/Makefile.plugins.mk
|
|
|
|
SKIP_NATIVE_AUDIO_FALLBACK = true
|
|
|
|
TARGETS += jack lv2_sep vst3 clap
|
|
|
|
all: $(TARGETS)
|
|
|
|
|