12 lines
171 B
Makefile
12 lines
171 B
Makefile
|
|
#!/usr/bin/make -f
|
||
|
|
NAME = SquidgeFilter
|
||
|
|
|
||
|
|
FILES_DSP = SquidgeFilter.cpp ../../core/Filter.cpp
|
||
|
|
|
||
|
|
TARGETS = vst3 clap
|
||
|
|
|
||
|
|
include ../../dpf/Makefile.plugins.mk
|
||
|
|
|
||
|
|
all: $(TARGETS)
|
||
|
|
|