Configure and build tuning
[melted] / src / framework / Makefile
index 562698e..00bfefc 100644 (file)
@@ -1,3 +1,4 @@
+include ../../config.mak
 
 TARGET = libmlt.so
 
@@ -15,11 +16,12 @@ OBJS = mlt_frame.o \
           mlt_field.o \
           mlt_tractor.o \
           mlt_factory.o \
-          mlt_repository.o
+          mlt_repository.o \
+          mlt_pool.o
 
 SRCS := $(OBJS:.o=.c)
 
-CFLAGS = -g -Wall -D_FILE_OFFSET_BITS=64 -pthread 
+CFLAGS += -pthread -DPREFIX="\"$(prefix)\""
 
 LDFLAGS = -lm -ldl -lpthread
 
@@ -37,6 +39,29 @@ dist-clean:  clean
 clean: 
                rm -f $(OBJS) $(TARGET)
 
+install:
+       install -m 755 $(TARGET) $(prefix)/lib/libmlt.so
+       mkdir -p "$(prefix)/include/mlt/framework"
+       install -m 644 mlt_consumer.h \
+                       mlt_factory.h \
+                       mlt_filter.h \
+                       mlt.h \
+                       mlt_multitrack.h \
+                       mlt_pool.h \
+                       mlt_properties.h \
+                       mlt_repository.h \
+                       mlt_tractor.h \
+                       mlt_types.h \
+                       mlt_deque.h \
+                       mlt_field.h \
+                       mlt_frame.h \
+                       mlt_playlist.h \
+                       mlt_producer.h \
+                       mlt_property.h \
+                       mlt_service.h  \
+                       mlt_transition.h \
+            "$(prefix)/include/mlt/framework"
+
 ifneq ($(wildcard .depend),)
 include .depend
 endif