]> git.sesse.net Git - mlt/blob - src/modules/xine/Makefile
add missing header
[mlt] / src / modules / xine / Makefile
1
2 TARGET = ../libmltxine.so
3
4 OBJS = factory.o \
5            deinterlace.o \
6            cpu_accel.o \
7            filter_deinterlace.o
8
9 CFLAGS = -O3 -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread -DARCH_X86
10
11 SRCS := $(OBJS:.o=.c)
12
13 all:    $(TARGET)
14
15 $(TARGET): $(OBJS)
16                 $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
17
18 depend: $(SRCS)
19                 $(CC) -MM $(CFLAGS) $^ 1>.depend
20
21 dist-clean:     clean
22                 rm -f .depend
23
24 clean:  
25                 rm -f $(OBJS) $(TARGET) 
26
27 ifneq ($(wildcard .depend),)
28 include .depend
29 endif