Added the response object
[melted] / mlt++ / src / Makefile
index 0facd13..ea24b27 100644 (file)
@@ -1,19 +1,25 @@
 include ../config.mak
-CXXFLAGS = -Wall -pthread `mlt-config --cflags`
-LDFLAGS = `mlt-config --libs`
+CXXFLAGS = -Wall -fPIC -DPIC -pthread `mlt-config --cflags`
+LDFLAGS = `mlt-config --libs` `mlt-config miracle --libs`
 INSTALL = install
 
 TARGET = libmlt++.so
 
 OBJS = MltConsumer.o \
+          MltEvent.o \
           MltFactory.o \
+          MltField.o \
           MltFilter.o \
           MltFilteredConsumer.o \
           MltFrame.o \
+          MltMiracle.o \
+          MltMultitrack.o \
           MltPlaylist.o \
           MltProducer.o \
           MltProperties.o \
+          MltResponse.o \
           MltService.o \
+          MltTractor.o \
           MltTransition.o
 
 SRCS = $(OBJS:.o=.cpp)