]> git.sesse.net Git - mlt/blob - src/modules/effectv/Makefile
added effectv module with BurningTV filter provided by Stephane Fillod
[mlt] / src / modules / effectv / Makefile
1 include ../../../config.mak
2
3 TARGET = ../libmlteffectv$(LIBSUF)
4
5 OBJS = factory.o \
6            filter_burn.o \
7            image.o \
8            utils.o
9
10 CFLAGS += -I../..
11
12 LDFLAGS+=-L../../framework -lmlt
13
14 SRCS := $(OBJS:.o=.c)
15
16 all:    $(TARGET)
17
18 $(TARGET): $(OBJS)
19                 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
20
21 depend: $(SRCS)
22                 $(CC) -MM $(CFLAGS) $^ 1>.depend
23
24 distclean:      clean
25                 rm -f .depend
26
27 clean:  
28                 rm -f $(OBJS) $(TARGET) 
29
30 install: all
31         install -m 755 $(TARGET) "$(DESTDIR)$(prefix)/share/mlt/modules"
32
33 ifneq ($(wildcard .depend),)
34 include .depend
35 endif