30 lines
475 B
Makefile
30 lines
475 B
Makefile
###############################
|
|
#
|
|
# Makefile for Alpha Juno Osc
|
|
# based on the work of falkTX, in the DPF example plugins
|
|
#
|
|
# for full licence, see LICENCE in the root of the project
|
|
#
|
|
###############################
|
|
|
|
NAME = alphaosc
|
|
|
|
FILES_DSP = \
|
|
alphaosc.cpp
|
|
|
|
|
|
#FILES_UI = \
|
|
# slider.cpp \
|
|
# peacock.cpp \
|
|
# ui.cpp
|
|
|
|
#UI_TYPE = generic
|
|
#USE_FILE_BROWSER = false
|
|
SKIP_NATIVE_AUDIO_FALLBACK = true
|
|
|
|
include ../dpf/Makefile.plugins.mk
|
|
|
|
TARGETS += jack lv2
|
|
|
|
all: $(TARGETS)
|