X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=15479e0db4d4cd8540b935ecee6f26b9dede27d5;hb=c95736fd9ee742f5e6db06bbe579f23895f55eba;hp=00cc60509ed8caf3ba243030662d458ca9cbfb68;hpb=f2dda0fcd1c242afcd07f2c2ef98f8f6b3fb0e13;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index 00cc605..15479e0 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -1,11 +1,14 @@ include ../../config.mak -TARGET = libmlt.so +TARGET = libmlt$(LIBSUF) OBJS = mlt_frame.o \ + mlt_geometry.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 \ @@ -17,23 +20,42 @@ 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) +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_geometry.h \ + mlt_playlist.h \ + mlt_producer.h \ + mlt_property.h \ + mlt_service.h \ + mlt_transition.h \ + mlt_tokeniser.h -CFLAGS = -g -O4 -pipe -ffast-math -fomit-frame-pointer -Wall -D_FILE_OFFSET_BITS=64 -pthread -DPREFIX="\"$(prefix)\"" +SRCS := $(OBJS:.o=.c) -LDFLAGS = -lm -ldl -lpthread +CFLAGS += $(RDYNAMIC) -DPREFIX="\"$(prefix)\"" -ifeq ($(MLT_GPROF),true) -CFLAGS+=-p -LDFLAGS+=-p -endif +LDFLAGS += -lm $(LIBDL) -lpthread all: $(TARGET) $(TARGET): $(OBJS) - $(CC) -shared -o $@ $(OBJS) $(LDFLAGS) + $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS) depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend @@ -45,27 +67,9 @@ 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" + install -m 755 $(TARGET) $(prefix)/lib/libmlt$(LIBSUF) + install -d "$(prefix)/include/mlt/framework" + install -m 644 $(INCS) "$(prefix)/include/mlt/framework" ifneq ($(wildcard .depend),) include .depend