X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=00cc60509ed8caf3ba243030662d458ca9cbfb68;hb=8de8411c3af4b5746e9040a67e928364be9ac058;hp=6d804016796e32b2236811a4aea6125612edae11;hpb=9390e8b584f3f717f0a326893c0e37cf187a0a51;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index 6d80401..00cc605 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,7 +1,9 @@ +include ../../config.mak TARGET = libmlt.so OBJS = mlt_frame.o \ + mlt_deque.o \ mlt_property.o \ mlt_properties.o \ mlt_service.o \ @@ -14,14 +16,20 @@ OBJS = mlt_frame.o \ mlt_field.o \ mlt_tractor.o \ mlt_factory.o \ - mlt_repository.o + mlt_repository.o \ + mlt_pool.o SRCS := $(OBJS:.o=.c) -CFLAGS = -g -Wall -D_FILE_OFFSET_BITS=64 -pthread +CFLAGS = -g -O4 -pipe -ffast-math -fomit-frame-pointer -Wall -D_FILE_OFFSET_BITS=64 -pthread -DPREFIX="\"$(prefix)\"" LDFLAGS = -lm -ldl -lpthread +ifeq ($(MLT_GPROF),true) +CFLAGS+=-p +LDFLAGS+=-p +endif + all: $(TARGET) $(TARGET): $(OBJS) @@ -36,6 +44,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