X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=d16c7e8d0e8d6cc9ed85784bb83d36f482549e77;hb=c12c6c380fa37b6a0d28ce98fdcda487a8aca76d;hp=da4ff1a62f0ed68f1392f4882ead69af59390114;hpb=8a3795b090723264c973d274eedc28da480e76fd;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index da4ff1a..d16c7e8 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,3 +1,4 @@ +include ../../config.mak TARGET = libmlt.so @@ -5,6 +6,8 @@ OBJS = mlt_frame.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 \ @@ -15,13 +18,37 @@ OBJS = mlt_frame.o \ mlt_field.o \ mlt_tractor.o \ mlt_factory.o \ - mlt_repository.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_playlist.h \ + mlt_producer.h \ + mlt_property.h \ + mlt_service.h \ + mlt_transition.h \ + mlt_tokeniser.h SRCS := $(OBJS:.o=.c) -CFLAGS = -g -O3 -Wall -D_FILE_OFFSET_BITS=64 -pthread +CFLAGS += -rdynamic -DPREFIX="\"$(prefix)\"" -LDFLAGS = -lm -ldl -lpthread +LDFLAGS += -lm $(LIBDL) -lpthread all: $(TARGET) @@ -37,6 +64,11 @@ dist-clean: clean 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" + ifneq ($(wildcard .depend),) include .depend endif