X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=00bfefc9cded2ef804643a00b4c9305fc5a3908f;hb=a4799884f16e60db669cdf7ce6e15f160e3c7613;hp=ae67859e39b0b564942c41e2663d5b4b9d85fe32;hpb=94dce1aea965163f8dcd2f97271f2652abb0e62d;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index ae67859..00bfefc 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,3 +1,4 @@ +include ../../config.mak TARGET = libmlt.so @@ -20,7 +21,7 @@ OBJS = mlt_frame.o \ SRCS := $(OBJS:.o=.c) -CFLAGS = -g -O3 -Wall -D_FILE_OFFSET_BITS=64 -pthread +CFLAGS += -pthread -DPREFIX="\"$(prefix)\"" LDFLAGS = -lm -ldl -lpthread @@ -38,6 +39,29 @@ dist-clean: clean clean: rm -f $(OBJS) $(TARGET) +install: + install -m 755 $(TARGET) $(prefix)/lib/libmlt.so + mkdir -p "$(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 \ + "$(prefix)/include/mlt/framework" + ifneq ($(wildcard .depend),) include .depend endif