X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2FMakefile;h=86d0b44ab398829620830617c408fabb3d2ba600;hb=b5bf7e90101c8ff6efd2a1e993673e4f56735caf;hp=7bdf0a261a79d14bbcea9555da342cc8c45ab32e;hpb=7e8b2c7d671891273c2fbbaaa91f6bc05591d929;p=melted diff --git a/src/modules/core/Makefile b/src/modules/core/Makefile index 7bdf0a2..86d0b44 100644 --- a/src/modules/core/Makefile +++ b/src/modules/core/Makefile @@ -1,6 +1,6 @@ include ../../../config.mak -TARGET = ../libmltcore.so +TARGET = ../libmltcore$(LIBSUF) OBJS = factory.o \ producer_colour.o \ @@ -14,10 +14,12 @@ OBJS = factory.o \ filter_greyscale.o \ filter_luma.o \ filter_mirror.o \ + filter_mono.o \ filter_obscure.o \ filter_region.o \ filter_rescale.o \ filter_resize.o \ + filter_transition.o \ filter_watermark.o \ transition_composite.o \ transition_luma.o \ @@ -36,7 +38,7 @@ SRCS := $(OBJS:.o=.c) all: $(TARGET) $(TARGET): $(OBJS) $(ASM_OBJS) - $(CC) -shared -o $@ $(OBJS) $(ASM_OBJS) $(LDFLAGS) + $(CC) $(SHFLAGS) -o $@ $(OBJS) $(ASM_OBJS) $(LDFLAGS) composite_line_yuv_mmx.o: composite_line_yuv_mmx.S $(CC) -o $@ -c composite_line_yuv_mmx.S @@ -44,15 +46,15 @@ composite_line_yuv_mmx.o: composite_line_yuv_mmx.S depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend -dist-clean: clean +distclean: clean rm -f .depend clean: rm -f $(OBJS) $(ASM_OBJS) $(TARGET) install: all - install -m 755 $(TARGET) "$(prefix)/share/mlt/modules" - install -m 644 ../data_fx.properties "$(prefix)/share/mlt/modules" + install -m 755 $(TARGET) "$(DESTDIR)$(prefix)/share/mlt/modules" + install -m 644 ../data_fx.properties "$(DESTDIR)$(prefix)/share/mlt/modules" ifneq ($(wildcard .depend),) include .depend