]> git.sesse.net Git - mlt/blobdiff - src/modules/vmfx/Makefile
Fix audio seeking when no first video pts available.
[mlt] / src / modules / vmfx / Makefile
index 83e766515f9bca24f698d61e29334ebea46a2b95..27793e3dad6802f18f664e7af026f0c27d174ff6 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,16 @@ $(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"
+       install -d "$(DESTDIR)$(datadir)/mlt/vmfx"
+       install -m 644 *.yml "$(DESTDIR)$(datadir)/mlt/vmfx"
 
 ifneq ($(wildcard .depend),)
 include .depend