+ Added an option to override alignment and transparent borders for compositing
[melted] / src / modules / core / Makefile
index e8d129b..1e4cab1 100644 (file)
@@ -1,6 +1,6 @@
 include ../../../config.mak
 
-TARGET = ../libmltcore.so
+TARGET = ../libmltcore$(LIBSUF)
 
 OBJS = factory.o \
           producer_colour.o \
@@ -18,6 +18,7 @@ OBJS = factory.o \
           filter_region.o \
           filter_rescale.o \
           filter_resize.o \
+          filter_transition.o \
           filter_watermark.o \
           transition_composite.o \
           transition_luma.o \
@@ -25,7 +26,7 @@ OBJS = factory.o \
           transition_region.o \
           consumer_null.o
 
-ASM_OBJS = composite_line_yuv_mmx.o
+ASM_OBJS = 
 
 CFLAGS += -I../..
 
@@ -36,7 +37,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