Mercurial > mplayer.hg
annotate libvo/Makefile @ 21105:1853a7b379e3
Remove unused -D from CFLAGS.
author | diego |
---|---|
date | Tue, 21 Nov 2006 11:29:26 +0000 |
parents | b437b582250d |
children | 790256469dd7 |
rev | line source |
---|---|
1 | 1 |
19034 | 2 include ../config.mak |
1 | 3 |
4 LIBNAME = libvo.a | |
5 | |
15772 | 6 SRCS=aclib.c \ |
7 aspect.c \ | |
8 geometry.c \ | |
9 osd.c \ | |
10 spuenc.c \ | |
11 sub.c \ | |
12 video_out.c \ | |
13 vo_mpegpes.c \ | |
14 vo_null.c \ | |
15 vo_yuv4mpeg.c \ | |
19034 | 16 $(VO_SRCS) \ |
15772 | 17 |
16331
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
18 ifeq ($(CONFIG_LIBAVUTIL),yes) |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
19 LIBAV_INC += -I../libavutil |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
20 endif |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
21 |
15291 | 22 OBJS_TEMP=$(basename $(SRCS)) |
23 OBJS=$(OBJS_TEMP:%=%.o) | |
1 | 24 |
19485
d04ee0eb6a11
support for disabling/enabling bitmap font support from configure
diego
parents:
19420
diff
changeset
|
25 ifeq ($(BITMAP_FONT),yes) |
d04ee0eb6a11
support for disabling/enabling bitmap font support from configure
diego
parents:
19420
diff
changeset
|
26 SRCS += font_load.c |
d04ee0eb6a11
support for disabling/enabling bitmap font support from configure
diego
parents:
19420
diff
changeset
|
27 endif |
d04ee0eb6a11
support for disabling/enabling bitmap font support from configure
diego
parents:
19420
diff
changeset
|
28 |
18864
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
29 ifeq ($(FREETYPE),yes) |
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
30 SRCS += font_load_ft.c |
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
31 endif |
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
32 |
4089 | 33 ifeq ($(VIDIX),yes) |
4168 | 34 SRCS += vosub_vidix.c |
4089 | 35 endif |
36 | |
17988 | 37 ifeq ($(EXTERNAL_VIDIX),yes) |
38 SRCS += vosub_vidix.c | |
39 endif | |
40 | |
19412
747453e12f3b
consistency cosmetics: Handle includes just like in other Makefiles.
diego
parents:
19190
diff
changeset
|
41 INCLUDE = -I. -I.. -I../osdep $(LIBAV_INC) |
21105 | 42 CFLAGS = $(INCLUDE) $(OPTFLAGS) |
15772 | 43 |
44 #CFLAGS += -Wall | |
1 | 45 |
15473
c1a6002fb140
If we use .m suffix we really should include it in .SUFFIXES
wight
parents:
15291
diff
changeset
|
46 .SUFFIXES: .c .o .m |
1 | 47 |
48 # .PHONY: all clean | |
49 | |
50 .c.o: | |
24 | 51 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 52 |
15291 | 53 .m.o: |
54 $(CC) -c $(CFLAGS) -o $@ $< | |
55 | |
1010 | 56 $(LIBNAME): $(OBJS) |
1 | 57 $(AR) r $(LIBNAME) $(OBJS) |
12634 | 58 $(RANLIB) $(LIBNAME) |
1 | 59 |
60 all: $(LIBNAME) | |
61 | |
62 clean: | |
63 rm -f *.o *.a *~ | |
64 | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
16331
diff
changeset
|
65 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
16331
diff
changeset
|
66 rm -f .depend |
1 | 67 |
21080 | 68 dep depend: |
866
91087aaea5c7
using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents:
698
diff
changeset
|
69 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
1 | 70 |
24 | 71 # |
72 # include dependency files if they exist | |
73 # | |
74 ifneq ($(wildcard .depend),) | |
75 include .depend | |
76 endif |