23 lines
343 B
Makefile
23 lines
343 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 \
|
||
|
ic1.cpp
|
||
|
|
||
|
include ../dpf/Makefile.plugins.mk
|
||
|
|
||
|
TARGETS += jack lv2
|
||
|
|
||
|
all: $(TARGETS)
|
||
|
|
||
|
|