|
- #!/usr/bin/make -f
- # Makefile for DISTRHO Plugins #
- # ---------------------------- #
- # Created by falkTX
- #
-
- # --------------------------------------------------------------
- # Project name, used for binaries
-
- NAME = d_sendNote
-
- # --------------------------------------------------------------
- # Files to build
-
- FILES_DSP = \
- SendNoteExamplePlugin.cpp
-
-
- FILES_UI = \
- SendNoteExampleUI.cpp
-
- # --------------------------------------------------------------
- # Do some magic
-
- include ../../Makefile.plugins.mk
-
- # --------------------------------------------------------------
- # Enable all possible plugin types
-
- ifeq ($(HAVE_OPENGL),true)
- TARGETS += jack
- endif
-
- TARGETS += lv2_sep
- TARGETS += vst2
- TARGETS += vst3
-
- all: $(TARGETS)
-
- # --------------------------------------------------------------
|