X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fframework%2FMakefile;h=d16c7e8d0e8d6cc9ed85784bb83d36f482549e77;hb=4a39b72c5ac8fd2dd6db81a95eab08adde0491b9;hp=501fdb9e087b9fb4b972bccdb58780096c614a14;hpb=f5a438b319b560eccf511ebf3eed5db9edbac1de;p=melted diff --git a/src/framework/Makefile b/src/framework/Makefile index 501fdb9..d16c7e8 100644 --- a/src/framework/Makefile +++ b/src/framework/Makefile @@ -6,6 +6,8 @@ OBJS = mlt_frame.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,11 +19,34 @@ OBJS = mlt_frame.o \ mlt_tractor.o \ mlt_factory.o \ mlt_repository.o \ - mlt_pool.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_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 @@ -41,26 +66,8 @@ clean: 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 -d "$(prefix)/include/mlt/framework" + install -m 644 $(INCS) "$(prefix)/include/mlt/framework" ifneq ($(wildcard .depend),) include .depend