25 lines
378 B
Makefile
25 lines
378 B
Makefile
###############################
|
|
#
|
|
# Makefile for Chassis
|
|
# based on the work of falkTX, in the DPF example plugins
|
|
#
|
|
# for full licence, see LICENCE in the root of the project
|
|
#
|
|
###############################
|
|
|
|
NAME = chassis
|
|
|
|
FILES_DSP = \
|
|
parameters.cpp \
|
|
digital.cpp \
|
|
chassis.cpp \
|
|
voice.cpp
|
|
|
|
include ../dpf/Makefile.plugins.mk
|
|
|
|
TARGETS += jack lv2
|
|
|
|
all: $(TARGETS)
|
|
|
|
|