added brightness filter, added smooth ramping to audio processing, added start/end...
[melted] / src / modules / core / Makefile
index 5b8ac04..a93ab76 100644 (file)
@@ -1,13 +1,20 @@
 
-TARGET=libmltcore.so
+TARGET = ../libmltcore.so
 
 OBJS = factory.o \
           producer_ppm.o \
           filter_deinterlace.o \
           filter_greyscale.o \
-          transition_composite.o
-
-CFLAGS=-I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread
+          filter_gamma.o \
+          filter_obscure.o \
+          filter_resize.o \
+          filter_volume.o \
+          transition_composite.o \
+          transition_luma.o \
+          transition_mix.o \
+          filter_brightness.o
+
+CFLAGS = -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread
 
 SRCS := $(OBJS:.o=.c)