X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=596d4f5a760ec627230f99e9e669b58e47956516;hb=34c08944960aa79de3d038809d66637701b7567f;hp=bd364dabcf010477b3c4a3d2f9c28b378469081e;hpb=a832a09ef6e1df77b9e3ed25b7a440d1dae4df8e;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index bd364da..596d4f5 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -3,9 +3,12 @@ include ../../config.mak TARGET = libmlt.so 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 \ @@ -20,9 +23,32 @@ OBJS = mlt_frame.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_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 + SRCS := $(OBJS:.o=.c) -CFLAGS += -pthread -DPREFIX="\"$(prefix)\"" +CFLAGS += -rdynamic -DPREFIX="\"$(prefix)\"" LDFLAGS += -lm $(LIBDL) -lpthread @@ -43,26 +69,7 @@ clean: 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" + install -m 644 $(INCS) "$(prefix)/include/mlt/framework" ifneq ($(wildcard .depend),) include .depend