]> git.sesse.net Git - mlt/blobdiff - src/modules/vmfx/Makefile
Refactor to use mlt_frame_set_image/_alpha.
[mlt] / src / modules / vmfx / Makefile
index 83e766515f9bca24f698d61e29334ebea46a2b95..3d86b9dd87e4ae126ca1e594a85ddb254803618a 100644 (file)
@@ -1,15 +1,18 @@
+CFLAGS += -I../..
+
+LDFLAGS += -L../../framework -lmlt
+
 include ../../../config.mak
 
 TARGET = ../libmltvmfx$(LIBSUF)
 
 OBJS = factory.o \
+          filter_chroma.o \
+          filter_chroma_hold.o \
+          filter_mono.o \
           filter_shape.o \
           producer_pgm.o
 
-CFLAGS += -I../..
-
-LDFLAGS+=-L../../framework -lmlt
-
 SRCS := $(OBJS:.o=.c)
 
 all:   $(TARGET)
@@ -20,14 +23,14 @@ $(TARGET): $(OBJS)
 depend:        $(SRCS)
                $(CC) -MM $(CFLAGS) $^ 1>.depend
 
-dist-clean:    clean
+distclean:     clean
                rm -f .depend
 
 clean: 
                rm -f $(OBJS) $(TARGET) 
 
 install: all
-       install -m 755 $(TARGET) "$(prefix)/share/mlt/modules"
+       install -m 755 $(TARGET) "$(DESTDIR)$(libdir)/mlt"
 
 ifneq ($(wildcard .depend),)
 include .depend