27 lines
414 B
Makefile
27 lines
414 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 = \
|
|
peacock.cpp \
|
|
controls.cpp \
|
|
assigner.cpp \
|
|
oscillator.cpp \
|
|
filter.cpp \
|
|
voiceboard.cpp
|
|
|
|
include ../dpf/Makefile.plugins.mk
|
|
|
|
TARGETS += jack lv2
|
|
|
|
all: $(TARGETS)
|
|
|
|
|