X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=047e4e8ccd57b0196f95e3d87a040c139b695eab;hb=4dbf3ebb9b3642a02300bd2388c6b2211160cb5a;hp=562698ebf0ace89ae43da80cf9c92551e857fe41;hpb=15a23435c82ba0435061a35611c6afbe24d09e32;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index 562698e..047e4e8 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,3 +1,4 @@ +include ../../config.mak TARGET = libmlt.so @@ -15,13 +16,35 @@ 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_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 -Wall -D_FILE_OFFSET_BITS=64 -pthread +CFLAGS += -rdynamic -DPREFIX="\"$(prefix)\"" -LDFLAGS = -lm -ldl -lpthread +LDFLAGS += -lm $(LIBDL) -lpthread all: $(TARGET) @@ -37,6 +60,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