Mercurial > mplayer.hg
view mpcommon.mak @ 23455:f6e21317b46b
r23410: add documentation for new -menu-chroot option
r23420: added a missing space char
r23423: added '&' for 'e.g.'
r23425: removed unneeded space
r23440: New "automute" tv:// option.
r23444: update manual date, its been 8 months...
r23455: new sentences on new lines
r23467: (English typo, does not apply here)
author | kraymer |
---|---|
date | Tue, 05 Jun 2007 13:40:10 +0000 |
parents | 21e496522217 |
children | ac45c9bb49af |
line wrap: on
line source
SRCS_COMMON += $(SRCS_COMMON-yes) SRCS_MPLAYER += $(SRCS_MPLAYER-yes) SRCS_MENCODER += $(SRCS_MENCODER-yes) OBJS_COMMON += $(addsuffix .o, $(basename $(SRCS_COMMON)) ) OBJS_MPLAYER += $(addsuffix .o, $(basename $(SRCS_MPLAYER)) ) OBJS_MENCODER += $(addsuffix .o, $(basename $(SRCS_MENCODER)) ) CFLAGS-$(LIBAVCODEC) += -I../libavcodec CFLAGS-$(LIBAVFORMAT) += -I../libavformat CFLAGS += $(CFLAGS-yes) $(OPTFLAGS) LIBS-$(MPLAYER) += $(LIBNAME_MPLAYER) LIBS-$(MENCODER) += $(LIBNAME_MENCODER) LIBS = $(LIBNAME_COMMON) $(LIBS-yes) libs: $(LIBS) $(LIBNAME_COMMON): $(OBJS_COMMON) $(LIBNAME_MPLAYER): $(OBJS_MPLAYER) $(LIBNAME_MENCODER): $(OBJS_MENCODER) $(LIBNAME_COMMON) $(LIBNAME_MPLAYER) $(LIBNAME_MENCODER): $(AR) r $@ $^ $(RANLIB) $@ clean:: rm -f *.o *.a *~ distclean:: clean rm -f .depend test test2 dep depend:: $(CC) -MM $(CFLAGS) $(SRCS_COMMON) $(SRCS_MPLAYER) $(SRCS_MENCODER) 1>.depend -include .depend .PHONY: libs clean distclean dep depend