Mercurial > mplayer.hg
comparison Makefile @ 5669:391931fa79a6
enabled new OSD code in -vop expand, subtitles rendering support to mencoder
author | arpi |
---|---|
date | Wed, 17 Apr 2002 21:51:18 +0000 |
parents | b3a87b753441 |
children | 578a48174545 |
comparison
equal
deleted
inserted
replaced
5668:978c6f78022e | 5669:391931fa79a6 |
---|---|
23 MANDIR = ${prefix}/man | 23 MANDIR = ${prefix}/man |
24 | 24 |
25 # a BSD compatible 'install' program | 25 # a BSD compatible 'install' program |
26 INSTALL = install | 26 INSTALL = install |
27 | 27 |
28 SRCS_COMMON = xacodec.c cpudetect.c mp_msg.c codec-cfg.c cfgparser.c my_profile.c spudec.c playtree.c playtreeparser.c asxparser.c vobsub.c | 28 SRCS_COMMON = xacodec.c cpudetect.c mp_msg.c codec-cfg.c cfgparser.c my_profile.c spudec.c playtree.c playtreeparser.c asxparser.c vobsub.c subreader.c find_sub.c |
29 SRCS_MENCODER = mencoder.c $(SRCS_COMMON) libao2/afmt.c divx4_vbr.c libvo/aclib.c libvo/osd.c me-opt-reg.c | 29 SRCS_MENCODER = mencoder.c $(SRCS_COMMON) libao2/afmt.c divx4_vbr.c libvo/aclib.c libvo/osd.c libvo/sub.c libvo/font_load.c me-opt-reg.c |
30 SRCS_MPLAYER = mplayer.c $(SRCS_COMMON) find_sub.c subreader.c lirc_mp.c mixer.c mp-opt-reg.c | 30 SRCS_MPLAYER = mplayer.c $(SRCS_COMMON) lirc_mp.c mixer.c mp-opt-reg.c |
31 | 31 |
32 OBJS_MENCODER = $(SRCS_MENCODER:.c=.o) | 32 OBJS_MENCODER = $(SRCS_MENCODER:.c=.o) |
33 OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o) | 33 OBJS_MPLAYER = $(SRCS_MPLAYER:.c=.o) |
34 | 34 |
35 ifeq ($(VO2),yes) | 35 ifeq ($(VO2),yes) |
266 @exit 1 | 266 @exit 1 |
267 | 267 |
268 # do not rebuild after cvs commits if .developer file is present! | 268 # do not rebuild after cvs commits if .developer file is present! |
269 | 269 |
270 # rebuild at every config.h/config.mak change: | 270 # rebuild at every config.h/config.mak change: |
271 version.h: config.h config.mak Makefile | 271 version.h: |
272 ./version.sh `$(CC) --version` | 272 ./version.sh `$(CC) --version` |
273 ifeq ($(wildcard .developer),) | 273 ifeq ($(wildcard .developer),) |
274 $(MAKE) distclean | 274 $(MAKE) distclean |
275 endif | 275 endif |
276 $(MAKE) depend | 276 $(MAKE) depend |
277 | 277 |
278 # rebuild at every CVS update: | 278 # rebuild at every CVS update or config/makefile change: |
279 ifeq ($(wildcard .developer),) | 279 ifeq ($(wildcard .developer),) |
280 ifneq ($(wildcard CVS/Entries),) | 280 ifneq ($(wildcard CVS/Entries),) |
281 version.h: CVS/Entries | 281 version.h: CVS/Entries |
282 endif | 282 endif |
283 version.h: config.h config.mak Makefile | |
283 endif | 284 endif |
284 | 285 |
285 # | 286 # |
286 # include dependency files if they exist | 287 # include dependency files if they exist |
287 # | 288 # |