Mercurial > mplayer.hg
annotate postproc/Makefile @ 6644:f3153f8d4fbe
Moved the asf_http_streaming_ctrl_t struct from asf_streaming.c
author | bertrand |
---|---|
date | Fri, 05 Jul 2002 02:47:09 +0000 |
parents | 6eab60ea6c11 |
children | b69ddd4d3bb9 |
rev | line source |
---|---|
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) |
6603
6eab60ea6c11
colorspace converter tests (memory corruption tests at different width/src/dst)
michael
parents:
3143
diff
changeset
|
8 CS_TEST_OBJS=cs_test.o rgb2rgb.o ../cpudetect.o ../mp_msg.o |
2444 | 9 |
2927 | 10 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -Wall $(EXTRA_INC) |
2444 | 11 # -I/usr/X11R6/include/ |
12 | |
13 .SUFFIXES: .c .o | |
14 | |
15 # .PHONY: all clean | |
16 | |
17 .c.o: | |
18 $(CC) -c $(CFLAGS) -o $@ $< | |
19 | |
20 $(LIBNAME): $(OBJS) | |
21 $(AR) r $(LIBNAME) $(OBJS) | |
22 | |
23 all: $(LIBNAME) | |
24 | |
25 clean: | |
26 rm -f *.o *.a *~ | |
27 | |
28 distclean: | |
29 rm -f Makefile.bak *.o *.a *~ .depend | |
30 | |
31 dep: depend | |
32 | |
33 depend: | |
34 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend | |
35 | |
6603
6eab60ea6c11
colorspace converter tests (memory corruption tests at different width/src/dst)
michael
parents:
3143
diff
changeset
|
36 cs_test: $(CS_TEST_OBJS) |
6eab60ea6c11
colorspace converter tests (memory corruption tests at different width/src/dst)
michael
parents:
3143
diff
changeset
|
37 $(CC) $(CS_TEST_OBJS) -o cs_test |
6eab60ea6c11
colorspace converter tests (memory corruption tests at different width/src/dst)
michael
parents:
3143
diff
changeset
|
38 |
2444 | 39 # |
40 # include dependency files if they exist | |
41 # | |
42 ifneq ($(wildcard .depend),) | |
43 include .depend | |
44 endif |