chassis/plugin/Makefile

34 lines
523 B
Makefile
Raw Normal View History

2024-09-02 21:11:57 +00:00
###############################
#
2024-09-03 15:17:32 +00:00
# Makefile for Chassis
# 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
FILES_DSP = \
parameters.cpp \
2024-09-09 19:58:14 +00:00
voicecpu.cpp \
2024-09-03 14:31:54 +00:00
chassis.cpp \
voice.cpp
2024-09-12 15:23:48 +00:00
FILES_UI = \
back.cpp \
ui.cpp \
DistrhoArtworkNekobi.cpp
UI_TYPE = generic
USE_FILE_BROWSER = false
SKIP_NATIVE_AUDIO_FALLBACK = true
2024-09-02 21:11:57 +00:00
include ../dpf/Makefile.plugins.mk
2024-09-12 15:23:48 +00:00
TARGETS += jack lv2_sep
2024-09-02 21:11:57 +00:00
all: $(TARGETS)