You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/make -f
- # Makefile for DISTRHO Plugins #
- # ---------------------------- #
- # Created by falkTX
- #
-
- # --------------------------------------------------------------
- # Project name, used for binaries
-
- NAME = d_cvport
-
- # --------------------------------------------------------------
- # Files to build
-
- FILES_DSP = \
- ExamplePluginCVPort.cpp
-
- # --------------------------------------------------------------
- # Do some magic
-
- include ../../Makefile.plugins.mk
-
- # --------------------------------------------------------------
- # Enable all possible plugin types
-
- TARGETS = jack lv2_dsp
-
- all: $(TARGETS)
-
- # --------------------------------------------------------------
|