composite aspect ratio fix (again ;-)), added fill compositing test case, filter...
[melted] / src / modules / core / Makefile
1
2 TARGET = ../libmltcore.so
3
4 OBJS = factory.o \
5 producer_ppm.o \
6 filter_brightness.o \
7 filter_deinterlace.o \
8 filter_greyscale.o \
9 filter_gamma.o \
10 filter_luma.o \
11 filter_obscure.o \
12 filter_resize.o \
13 filter_volume.o \
14 filter_watermark.o \
15 transition_composite.o \
16 transition_luma.o \
17 transition_mix.o
18
19 CFLAGS = -O3 -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread
20
21 SRCS := $(OBJS:.o=.c)
22
23 all: $(TARGET)
24
25 $(TARGET): $(OBJS)
26 $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
27
28 depend: $(SRCS)
29 $(CC) -MM $(CFLAGS) $^ 1>.depend
30
31 dist-clean: clean
32 rm -f .depend
33
34 clean:
35 rm -f $(OBJS) $(TARGET)
36
37 ifneq ($(wildcard .depend),)
38 include .depend
39 endif