]> git.sesse.net Git - mlt/blob - mlt/src/modules/gtk2/Makefile
add sample aspect ratio scaling output to producer_pixbuf, fix a bug in rgb to yuv...
[mlt] / mlt / src / modules / gtk2 / Makefile
1
2 TARGET = ../libmltgtk2.so
3
4 OBJS = factory.o \
5            producer_pixbuf.o \
6            producer_pango.o
7
8 CFLAGS = `pkg-config gdk-pixbuf-2.0 --cflags` `pkg-config pangoft2 --cflags` -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread
9
10 LDFLAGS = `pkg-config gdk-pixbuf-2.0 --libs` `pkg-config pangoft2 --libs`
11
12 SRCS := $(OBJS:.o=.c)
13
14 all:    $(TARGET)
15
16 $(TARGET): $(OBJS)
17                 $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
18
19 depend: $(SRCS)
20                 $(CC) -MM $(CFLAGS) $^ 1>.depend
21
22 dist-clean:     clean
23                 rm -f .depend
24
25 clean:  
26                 rm -f $(OBJS) $(TARGET)
27
28 ifneq ($(wildcard .depend),)
29 include .depend
30 endif