]> git.sesse.net Git - mlt/blobdiff - src/framework/Makefile
+ DESTDIR patch from Anthony Green (green at redhat dot com) - many thanks :-)
[mlt] / src / framework / Makefile
index 3cb84617d60ac1492f9f3df16682a476f409dff9..4827df18ca860dc18b21dbf3b2eea0d0fb9ac68a 100644 (file)
@@ -1,29 +1,61 @@
+include ../../config.mak
 
-FRAMEWORK_OBJS = mlt_frame.o \
-                                mlt_property.o \
-                                mlt_properties.o \
-                                mlt_service.o \
-                                mlt_producer.o \
-                                mlt_multitrack.o \
-                                mlt_consumer.o \
-                                mlt_filter.o \
-                                mlt_transition.o \
-                                mlt_tractor.o \
-                                mlt_factory.o \
-                                mlt_repository.o
-
-OBJS = $(FRAMEWORK_OBJS)
+TARGET = libmlt$(LIBSUF)
+
+OBJS = mlt_frame.o \
+          mlt_geometry.o \
+          mlt_deque.o \
+          mlt_property.o \
+          mlt_properties.o \
+          mlt_events.o \
+          mlt_parser.o \
+          mlt_service.o \
+          mlt_producer.o \
+          mlt_multitrack.o \
+          mlt_playlist.o \
+          mlt_consumer.o \
+          mlt_filter.o \
+          mlt_transition.o \
+          mlt_field.o \
+          mlt_tractor.o \
+          mlt_factory.o \
+          mlt_repository.o \
+          mlt_pool.o \
+          mlt_tokeniser.o
+
+INCS = mlt_consumer.h \
+          mlt_factory.h \
+          mlt_filter.h \
+          mlt.h \
+          mlt_multitrack.h \
+          mlt_pool.h \
+          mlt_properties.h \
+          mlt_events.h \
+          mlt_parser.h \
+          mlt_repository.h \
+          mlt_tractor.h \
+          mlt_types.h \
+          mlt_deque.h \
+          mlt_field.h \
+          mlt_frame.h \
+          mlt_geometry.h \
+          mlt_playlist.h \
+          mlt_producer.h \
+          mlt_property.h \
+          mlt_service.h  \
+          mlt_transition.h \
+          mlt_tokeniser.h
 
 SRCS := $(OBJS:.o=.c)
 
-CFLAGS = -g -Wall -D_FILE_OFFSET_BITS=64 -pthread 
+CFLAGS += $(RDYNAMIC) -DPREFIX="\"$(prefix)\""
 
-LDFLAGS = -lm -ldl -lpthread
+LDFLAGS += -lm $(LIBDL) -lpthread
 
-all:   libmlt.so
+all:   $(TARGET)
 
-libmlt.so: $(OBJS)
-               $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
+$(TARGET): $(OBJS)
+               $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
 
 depend:        $(SRCS)
                $(CC) -MM $(CFLAGS) $^ 1>.depend
@@ -32,7 +64,12 @@ dist-clean:  clean
                rm -f .depend
 
 clean: 
-               rm -f $(FRAMEWORK_OBJS) libmlt.so
+               rm -f $(OBJS) $(TARGET)
+
+install:
+       install -m 755 $(TARGET) $(DESTDIR)$(prefix)/lib/libmlt$(LIBSUF)
+       install -d "$(DESTDIR)$(prefix)/include/mlt/framework"
+       install -m 644 $(INCS) "$(DESTDIR)$(prefix)/include/mlt/framework"
 
 ifneq ($(wildcard .depend),)
 include .depend