2444
|
1
|
|
2 include ../config.mak
|
|
3
|
|
4 LIBNAME = libpostproc.a
|
|
5
|
2732
|
6 SRCS=postprocess.c swscale.c rgb2rgb.c yuv2rgb.c
|
2444
|
7 OBJS=$(SRCS:.c=.o)
|
|
8
|
2927
|
9 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall $(EXTRA_INC)
|
2444
|
10 # -I/usr/X11R6/include/
|
|
11
|
|
12 .SUFFIXES: .c .o
|
|
13
|
|
14 # .PHONY: all clean
|
|
15
|
|
16 .c.o:
|
|
17 $(CC) -c $(CFLAGS) -o $@ $<
|
|
18
|
|
19 $(LIBNAME): $(OBJS)
|
|
20 $(AR) r $(LIBNAME) $(OBJS)
|
|
21
|
|
22 all: $(LIBNAME)
|
|
23
|
|
24 clean:
|
|
25 rm -f *.o *.a *~
|
|
26
|
|
27 distclean:
|
|
28 rm -f Makefile.bak *.o *.a *~ .depend
|
|
29
|
|
30 dep: depend
|
|
31
|
|
32 depend:
|
|
33 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
|
|
34
|
|
35 #
|
|
36 # include dependency files if they exist
|
|
37 #
|
|
38 ifneq ($(wildcard .depend),)
|
|
39 include .depend
|
|
40 endif
|