Mercurial > mplayer.hg
annotate libvo/Makefile @ 19445:f95c2db61ee3
help_mp-hu.h & xml/hu/ports.xml synced with r19449
author | Gabrov |
---|---|
date | Sat, 19 Aug 2006 12:34:01 +0000 |
parents | 4f71ed7cb512 |
children | d04ee0eb6a11 |
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 font_load.c \ | |
9 geometry.c \ | |
10 osd.c \ | |
11 spuenc.c \ | |
12 sub.c \ | |
13 video_out.c \ | |
14 vo_mpegpes.c \ | |
15 vo_null.c \ | |
16 vo_yuv4mpeg.c \ | |
19034 | 17 $(VO_SRCS) \ |
15772 | 18 |
16331
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
19 LIBAV_INC = |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
20 ifeq ($(CONFIG_LIBAVUTIL),yes) |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
21 LIBAV_INC += -I../libavutil |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
22 endif |
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
23 |
15291 | 24 OBJS_TEMP=$(basename $(SRCS)) |
25 OBJS=$(OBJS_TEMP:%=%.o) | |
1 | 26 |
18864
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
27 ifeq ($(FREETYPE),yes) |
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
28 SRCS += font_load_ft.c |
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
29 endif |
1629108cd5b0
Move conditional FreeType support compilation to the build system.
diego
parents:
17988
diff
changeset
|
30 |
4089 | 31 ifeq ($(VIDIX),yes) |
4168 | 32 SRCS += vosub_vidix.c |
4089 | 33 endif |
34 | |
17988 | 35 ifeq ($(EXTERNAL_VIDIX),yes) |
36 SRCS += vosub_vidix.c | |
37 endif | |
38 | |
19412
747453e12f3b
consistency cosmetics: Handle includes just like in other Makefiles.
diego
parents:
19190
diff
changeset
|
39 INCLUDE = -I. -I.. -I../osdep $(LIBAV_INC) |
19420
4f71ed7cb512
Move all internal -I parameters to the front of CFLAGS to avoid using external
diego
parents:
19412
diff
changeset
|
40 CFLAGS = $(INCLUDE) $(OPTFLAGS) -DMPG12PLAY |
15772 | 41 |
42 #CFLAGS += -Wall | |
1 | 43 |
15473
c1a6002fb140
If we use .m suffix we really should include it in .SUFFIXES
wight
parents:
15291
diff
changeset
|
44 .SUFFIXES: .c .o .m |
1 | 45 |
46 # .PHONY: all clean | |
47 | |
48 .c.o: | |
24 | 49 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 50 |
15291 | 51 .m.o: |
52 $(CC) -c $(CFLAGS) -o $@ $< | |
53 | |
1010 | 54 $(LIBNAME): $(OBJS) |
1 | 55 $(AR) r $(LIBNAME) $(OBJS) |
12634 | 56 $(RANLIB) $(LIBNAME) |
1 | 57 |
58 all: $(LIBNAME) | |
59 | |
60 clean: | |
61 rm -f *.o *.a *~ | |
62 | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
16331
diff
changeset
|
63 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
16331
diff
changeset
|
64 rm -f .depend |
1 | 65 |
66 dep: depend | |
67 | |
1010 | 68 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 |