Gamma filter
[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_gamma.o \
9 filter_resize.o \
10 transition_composite.o
11
12 CFLAGS = -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread
13
14 SRCS := $(OBJS:.o=.c)
15
16 all: $(TARGET)
17
18 $(TARGET): $(OBJS)
19 $(CC) -shared -o $@ $(OBJS) $(LDFLAGS)
20
21 depend: $(SRCS)
22 $(CC) -MM $(CFLAGS) $^ 1>.depend
23
24 dist-clean: clean
25 rm -f .depend
26
27 clean:
28 rm -f $(OBJS) $(TARGET)
29
30 ifneq ($(wildcard .depend),)
31 include .depend
32 endif