Mercurial > mplayer.hg
annotate libvo/Makefile @ 19388:6ad0d5247fee
stupid typo in previous commit: lavc_mpegaudio_hp --> libavcodec_mpegaudio_hp
author | diego |
---|---|
date | Mon, 14 Aug 2006 14:43:38 +0000 |
parents | 1ea5c31932fd |
children | 747453e12f3b |
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 | |
15772 | 39 CFLAGS = $(OPTFLAGS) -I. -I.. -I../osdep \ |
16331
96be528902fd
Add -I../libavutil to the includes to fix building vo_zr[2].
diego
parents:
16264
diff
changeset
|
40 $(LIBAV_INC) \ |
15772 | 41 -DMPG12PLAY \ |
42 | |
43 #CFLAGS += -Wall | |
1 | 44 |
15473
c1a6002fb140
If we use .m suffix we really should include it in .SUFFIXES
wight
parents:
15291
diff
changeset
|
45 .SUFFIXES: .c .o .m |
1 | 46 |
47 # .PHONY: all clean | |
48 | |
49 .c.o: | |
24 | 50 $(CC) -c $(CFLAGS) -o $@ $< |
1 | 51 |
15291 | 52 .m.o: |
53 $(CC) -c $(CFLAGS) -o $@ $< | |
54 | |
1010 | 55 $(LIBNAME): $(OBJS) |
1 | 56 $(AR) r $(LIBNAME) $(OBJS) |
12634 | 57 $(RANLIB) $(LIBNAME) |
1 | 58 |
59 all: $(LIBNAME) | |
60 | |
61 clean: | |
62 rm -f *.o *.a *~ | |
63 | |
17488
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
16331
diff
changeset
|
64 distclean: clean |
ce1ba8fd57e7
Make clean/distclean behave uniformly in all directories.
diego
parents:
16331
diff
changeset
|
65 rm -f .depend |
1 | 66 |
67 dep: depend | |
68 | |
1010 | 69 depend: |
866
91087aaea5c7
using gcc -MM instead of makedepend, make OBJS from SRCS where possible
arpi_esp
parents:
698
diff
changeset
|
70 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend |
1 | 71 |
24 | 72 # |
73 # include dependency files if they exist | |
74 # | |
75 ifneq ($(wildcard .depend),) | |
76 include .depend | |
77 endif |