X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=7a60973f8f001b812518483432f9a57d4a4eb377;hb=52c1bb26fcbb895824cd9237c228ea4834ce1433;hp=3cb84617d60ac1492f9f3df16682a476f409dff9;hpb=4ed2712bbdac2182c7c0d6477ac77c9f92aaf02a;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index 3cb8461..7a60973 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,28 +1,34 @@ +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.so + +OBJS = mlt_frame.o \ + mlt_deque.o \ + mlt_property.o \ + mlt_properties.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 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) +$(TARGET): $(OBJS) $(CC) -shared -o $@ $(OBJS) $(LDFLAGS) depend: $(SRCS) @@ -32,7 +38,31 @@ dist-clean: clean rm -f .depend clean: - rm -f $(FRAMEWORK_OBJS) libmlt.so + rm -f $(OBJS) $(TARGET) + +install: + install -m 755 $(TARGET) $(prefix)/lib/libmlt.so + install -d "$(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 \ + mlt_tokeniser.h \ + "$(prefix)/include/mlt/framework" ifneq ($(wildcard .depend),) include .depend