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 = 3BandSplitter
-
- # --------------------------------------------------------------
- # Files to build
-
- OBJS_DSP = \
- DistrhoPlugin3BandSplitter.cpp.o
-
- OBJS_UI = \
- DistrhoArtwork3BandSplitter.cpp.o \
- DistrhoUI3BandSplitter.cpp.o
-
- # --------------------------------------------------------------
- # Do some magic
-
- include ../Makefile.mk
-
- # --------------------------------------------------------------
|