remove whitespace at eol
[goodguy/history.git] / cinelerra-5.1 / plugins / freeverb / Makefile
1 include ../../plugin_defs
2
3 PLUGIN = freeverb
4 OBJS := $(OBJDIR)/freeverb.o
5 DIRS := $(OBJDIR)/Components
6 FREEVERBOBJS := \
7         $(OBJDIR)/Components/allpass.o \
8         $(OBJDIR)/Components/comb.o \
9         $(OBJDIR)/Components/revmodel.o
10
11 CFLAGS += -IComponents
12 LFLAGS += $(FREEVERBOBJS)
13
14 include ../../plugin_config
15
16 $(FREEVERBOBJS):
17         $(CC) -c `cat $(OBJDIR)/c_flags` $(subst $(OBJDIR)/,, $*.cpp) -o $*.o
18
19 $(OUTPUT): $(DIRS)
20 $(OUTPUT): $(FREEVERBOBJS)
21
22 $(DIRS):
23         mkdir -p $@
24
25
26
27 $(OBJDIR)/freeverb.o: freeverb.C
28 $(OBJDIR)/Components/allpass.o:  Components/allpass.cpp
29 $(OBJDIR)/Components/comb.o:     Components/comb.cpp
30 $(OBJDIR)/Components/revmodel.o: Components/revmodel.cpp
31
32
33
34
35
36
37
38