+ Added a --libdir switch to the configure and build
[melted] / src / framework / Makefile
index 2f3e1e3..bc6fdcf 100644 (file)
@@ -1,12 +1,14 @@
 include ../../config.mak
 
-TARGET = libmlt.so
+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 \
@@ -29,12 +31,14 @@ INCS = mlt_consumer.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 \
@@ -44,14 +48,14 @@ INCS = mlt_consumer.h \
 
 SRCS := $(OBJS:.o=.c)
 
-CFLAGS += -rdynamic -DPREFIX="\"$(prefix)\""
+CFLAGS += $(RDYNAMIC) -DPREFIX="\"$(prefix)\""
 
 LDFLAGS += -lm $(LIBDL) -lpthread
 
 all:   $(TARGET)
 
 $(TARGET): $(OBJS)
-               $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
+               $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
 
 depend:        $(SRCS)
                $(CC) -MM $(CFLAGS) $^ 1>.depend
@@ -63,9 +67,10 @@ clean:
                rm -f $(OBJS) $(TARGET)
 
 install:
-       install -m 755 $(TARGET) $(prefix)/lib/libmlt.so
-       install -d "$(prefix)/include/mlt/framework"
-       install -m 644 $(INCS) "$(prefix)/include/mlt/framework"
+       install -d $(DESTDIR)$(libdir)
+       install -m 755 $(TARGET) $(DESTDIR)$(libdir)/libmlt$(LIBSUF)
+       install -d "$(DESTDIR)$(prefix)/include/mlt/framework"
+       install -m 644 $(INCS) "$(DESTDIR)$(prefix)/include/mlt/framework"
 
 ifneq ($(wildcard .depend),)
 include .depend