|
- #!/usr/bin/make -f
- # Makefile for DISTRHO Plugins #
- # ---------------------------- #
- # Created by falkTX
- #
-
- # --------------------------------------------------------------
- # Project name, used for binaries
-
- NAME = d_midiThrough
-
- # --------------------------------------------------------------
- # Files to build
-
- OBJS_DSP = \
- MidiThroughExamplePlugin.cpp.o
-
- # --------------------------------------------------------------
- # Do some magic
-
- include ../Makefile.mk
-
- # --------------------------------------------------------------
- # Enable all possible plugin types
-
- ifeq ($(LINUX),true)
- TARGETS += jack
- endif
-
- TARGETS += lv2_dsp
- TARGETS += vst
-
- all: $(TARGETS)
-
- # --------------------------------------------------------------
|