mlt_log.[hc], mlt_transition.c, mlt_tractor.c, mlt_repository.c, mlt_properties.c,
[melted] / src / framework / Makefile
index f5df34c..9112ff1 100644 (file)
@@ -6,11 +6,13 @@ TARGET = $(NAME).$(version)
 ifneq ($(targetos), Darwin)
 NAME = libmlt$(LIBSUF)
 TARGET = $(NAME).$(version)
-SHFLAGS += -Wl,-soname,$(TARGET)
+SONAME = $(NAME).$(soversion)
+SHFLAGS += -Wl,-soname,$(SONAME)
 else
 NAME = libmlt$(LIBSUF)
 TARGET = libmlt.$(version)$(LIBSUF)
-SHFLAGS += -install_name $(libdir)/$(TARGET)
+SONAME = libmlt.$(soversion)$(LIBSUF)
+SHFLAGS += -install_name $(libdir)/$(SONAME) -current_version $(version) -compatibility_version $(soversion)
 endif
 
 OBJS = mlt_frame.o \
@@ -33,7 +35,8 @@ OBJS = mlt_frame.o \
           mlt_repository.o \
           mlt_pool.o \
           mlt_tokeniser.o \
-          mlt_profile.o
+          mlt_profile.o \
+          mlt_log.o
 
 INCS = mlt_consumer.h \
           mlt_factory.h \
@@ -57,11 +60,12 @@ INCS = mlt_consumer.h \
           mlt_service.h  \
           mlt_transition.h \
           mlt_tokeniser.h \
-          mlt_profile.h
+          mlt_profile.h \
+          mlt_log.h
 
 SRCS := $(OBJS:.o=.c)
 
-CFLAGS += $(RDYNAMIC) -DPREFIX="\"$(prefix)\""
+CFLAGS += $(RDYNAMIC) -DPREFIX="\"$(prefix)\"" -DLIBDIR="\"$(libdir)\""
 
 LDFLAGS += -lm $(LIBDL) -lpthread
 
@@ -70,6 +74,7 @@ all:  $(TARGET)
 $(TARGET): $(OBJS)
                $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
                ln -sf $(TARGET) $(NAME)
+               ln -sf $(TARGET) $(SONAME)
 
 depend:        $(SRCS)
        $(CC) -MM $(CFLAGS) $^ 1>.depend
@@ -83,14 +88,19 @@ clean:
 install:
        install -d $(DESTDIR)$(libdir)
        install -m 755 $(TARGET) $(DESTDIR)$(libdir)
+       ln -sf $(TARGET) $(DESTDIR)$(libdir)/$(SONAME)
        ln -sf $(TARGET) $(DESTDIR)$(libdir)/$(NAME)
        install -d "$(DESTDIR)$(prefix)/include/mlt/framework"
        install -m 644 $(INCS) "$(DESTDIR)$(prefix)/include/mlt/framework"
+       install -d "$(DESTDIR)$(prefix)/share/mlt"
+       install -m 644 metaschema.yaml "$(DESTDIR)$(prefix)/share/mlt/"
 
 uninstall:
        rm -f "$(DESTDIR)$(libdir)/$(TARGET)"
+       rm -f "$(DESTDIR)$(libdir)/$(SONAME)"
        rm -f "$(DESTDIR)$(libdir)/$(NAME)"
        rm -rf "$(DESTDIR)$(prefix)/include/mlt/framework"
+       rm "$(DESTDIR)$(prefix)/share/mlt/metaschema.yaml"
 
 ifneq ($(wildcard .depend),)
 include .depend