X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=7a60973f8f001b812518483432f9a57d4a4eb377;hb=80761e7906f1694821044eefb3164b7f07c776e2;hp=52174e3522875ba8535068d6bc34aed21dcbce42;hpb=0b288164cbeb9a3c98107d439d86844be13ba910;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index 52174e3..7a60973 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,3 +1,4 @@ +include ../../config.mak TARGET = libmlt.so @@ -16,18 +17,14 @@ OBJS = mlt_frame.o \ mlt_tractor.o \ mlt_factory.o \ mlt_repository.o \ - mlt_pool.o + mlt_pool.o \ + mlt_tokeniser.o SRCS := $(OBJS:.o=.c) -CFLAGS = -g -O3 -Wall -D_FILE_OFFSET_BITS=64 -pthread +CFLAGS += -rdynamic -DPREFIX="\"$(prefix)\"" -LDFLAGS = -lm -ldl -lpthread - -ifeq ($(MLT_GPROF),true) -CFLAGS+=-p -LDFLAGS+=-p -endif +LDFLAGS += -lm $(LIBDL) -lpthread all: $(TARGET) @@ -43,6 +40,30 @@ 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 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 endif