moved filter_volume into a normalize module, added new sox module with filter_sox
[melted] / src / modules / sox / Makefile
1 include ../../../config.mak
2
3 TARGET = ../libmltsox.so
4
5 OBJS = factory.o \
6 filter_sox.o
7
8 CFLAGS = -O4 -pipe -ffast-math -fomit-frame-pointer -I../../ -Wall -g \
9 `libst-config --cflags`
10
11 LDFLAGS = `libst-config --libs` -lst
12
13 SRCS := $(OBJS:.o=.c)
14
15 all: $(TARGET)
16
17 $(TARGET): $(OBJS)
18 $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
19
20 depend: $(SRCS)
21 $(CC) -MM $(CFLAGS) $^ 1>.depend
22
23 dist-clean: clean
24 rm -f .depend
25
26 clean:
27 rm -f $(OBJS) $(TARGET)
28
29 install: all
30 install -m 755 $(TARGET) "$(prefix)/share/mlt/modules"
31
32 ifneq ($(wildcard .depend),)
33 include .depend
34 endif