2024-09-02 21:11:57 +00:00
|
|
|
###############################
|
|
|
|
#
|
2024-09-03 15:17:32 +00:00
|
|
|
# Makefile for Chassis
|
2024-09-03 14:22:56 +00:00
|
|
|
# based on the work of falkTX, in the DPF example plugins
|
2024-09-02 21:11:57 +00:00
|
|
|
#
|
|
|
|
# for full licence, see LICENCE in the root of the project
|
|
|
|
#
|
|
|
|
###############################
|
|
|
|
|
|
|
|
NAME = chassis
|
|
|
|
|
2024-09-03 14:22:56 +00:00
|
|
|
FILES_DSP = \
|
2024-09-08 20:55:46 +00:00
|
|
|
parameters.cpp \
|
2024-09-03 14:31:54 +00:00
|
|
|
chassis.cpp \
|
|
|
|
voice.cpp
|
2024-09-03 14:22:56 +00:00
|
|
|
|
2024-09-02 21:11:57 +00:00
|
|
|
include ../dpf/Makefile.plugins.mk
|
|
|
|
|
2024-09-03 22:41:01 +00:00
|
|
|
TARGETS += jack lv2
|
2024-09-02 21:11:57 +00:00
|
|
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
|
|
|
|
|