]> git.sesse.net Git - mlt/blobdiff - src/framework/Makefile
Fix movit.convert.fence frame property when using tractor.
[mlt] / src / framework / Makefile
index b9f2c7086732a52a5129ef374f201c5a0eac345d..2c3eac9d5804e7b7a70640ce0a74e0669b70421c 100644 (file)
@@ -1,11 +1,37 @@
 include ../../config.mak
+include config.mak
 
-TARGET = libmlt.so
+NAME = libmlt$(LIBSUF)
+TARGET = $(NAME).$(version)
+
+ifeq ($(targetos), Darwin)
+NAME = libmlt$(LIBSUF)
+TARGET = libmlt.$(version)$(LIBSUF)
+SONAME = libmlt.$(soversion)$(LIBSUF)
+SHFLAGS += -install_name $(libdir)/$(SONAME) -current_version $(version) -compatibility_version $(soversion)
+else ifeq ($(targetos), MinGW)
+NAME = libmlt$(LIBSUF)
+TARGET = libmlt-$(soversion)$(LIBSUF)
+SHFLAGS += -Wl,--output-def,libmlt.def
+else
+NAME = libmlt$(LIBSUF)
+TARGET = $(NAME).$(version)
+SONAME = $(NAME).$(soversion)
+SHFLAGS += -Wl,-soname,$(SONAME)
+endif
+
+ifeq ($(targetos), Linux)
+SHFLAGS += -Wl,--version-script=mlt.vers
+endif
 
 OBJS = mlt_frame.o \
+          mlt_version.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 \
@@ -17,55 +43,94 @@ OBJS = mlt_frame.o \
           mlt_tractor.o \
           mlt_factory.o \
           mlt_repository.o \
-          mlt_pool.o
+          mlt_pool.o \
+          mlt_tokeniser.o \
+          mlt_profile.o \
+          mlt_log.o \
+          mlt_cache.o \
+          mlt_animation.o
+
+INCS = mlt_consumer.h \
+          mlt_version.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 \
+          mlt_profile.h \
+          mlt_log.h \
+          mlt_cache.h \
+          mlt_animation.h
 
 SRCS := $(OBJS:.o=.c)
 
-CFLAGS = -g -O3 -Wall -D_FILE_OFFSET_BITS=64 -pthread -DPREFIX="\"$(prefix)\""
+ifeq ($(targetos), MinGW)
+OBJS += ../win32/win32.o
+SRCS += ../win32/win32.c
+endif
 
-LDFLAGS = -lm -ldl -lpthread
+CFLAGS += $(RDYNAMIC) -DPREFIX_DATA="\"$(mltdatadir)\"" -DPREFIX_LIB="\"$(moduledir)\""
 
-ifeq ($(MLT_GPROF),true)
-CFLAGS+=-p
-LDFLAGS+=-p
-endif
+LDFLAGS += $(LIBDL) -lpthread -lm
 
 all:   $(TARGET)
 
 $(TARGET): $(OBJS)
-               $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
+               $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
+               ln -sf $(TARGET) $(NAME)
+               if [ "$(targetos)" != "MinGW" ]; then \
+                       ln -sf $(TARGET) $(SONAME) ; \
+               fi
 
 depend:        $(SRCS)
-               $(CC) -MM $(CFLAGS) $^ 1>.depend
+       $(CC) -MM $(CFLAGS) $^ 1>.depend
 
-dist-clean:    clean
+distclean:     clean
                rm -f .depend
 
 clean: 
-               rm -f $(OBJS) $(TARGET)
+               rm -f $(OBJS) $(TARGET) $(NAME) $(SONAME)
 
 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"
+       install -d $(DESTDIR)$(libdir)
+       if [ "$(targetos)" = "MinGW" ]; then \
+               install -m 755 $(TARGET) $(DESTDIR)$(prefix) ; \
+               install -m 755 $(TARGET) $(DESTDIR)$(libdir)/libmlt.dll ; \
+               install -m 644 libmlt.def $(DESTDIR)$(libdir) ; \
+       else \
+               install -m 755 $(TARGET) $(DESTDIR)$(libdir) ; \
+               ln -sf $(TARGET) $(DESTDIR)$(libdir)/$(SONAME) ; \
+               ln -sf $(TARGET) $(DESTDIR)$(libdir)/$(NAME) ; \
+       fi
+       install -d "$(DESTDIR)$(prefix)/include/mlt/framework"
+       install -m 644 $(INCS) "$(DESTDIR)$(prefix)/include/mlt/framework"
+       install -d "$(DESTDIR)$(mltdatadir)"
+       install -m 644 metaschema.yaml "$(DESTDIR)$(mltdatadir)"
+
+uninstall:
+       rm -f "$(DESTDIR)$(libdir)/$(TARGET)"
+       if [ "$(targetos)" != "MinGW" ]; then \
+               rm -f "$(DESTDIR)$(libdir)/$(SONAME)" ; \
+               rm -f "$(DESTDIR)$(libdir)/$(NAME)" ; \
+       fi
+       rm -rf "$(DESTDIR)$(prefix)/include/mlt/framework"
+       rm -f "$(DESTDIR)$(mltdatadir)/metaschema.yaml"
 
 ifneq ($(wildcard .depend),)
 include .depend