field and playlist enhancements, producer pixbuf reorg
[melted] / src / modules / core / Makefile
1
2 TARGET = ../libmltcore.so
3
4 OBJS = factory.o \
5 producer_ppm.o \
6 filter_deinterlace.o \
7 filter_greyscale.o \
8 filter_resize.o \
9 transition_composite.o
10
11 CFLAGS = -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread
12
13 SRCS := $(OBJS:.o=.c)
14
15 all: $(TARGET)
16
17 $(TARGET): $(OBJS)
18 $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
19
20 depend: $(SRCS)
21 $(CC) -MM $(CFLAGS) $^ 1>.depend
22
23 dist-clean: clean
24 rm -f .depend
25
26 clean:
27 rm -f $(OBJS) $(TARGET)
28
29 ifneq ($(wildcard .depend),)
30 include .depend
31 endif