Mercurial > mplayer.hg
view libmenu/Makefile @ 19799:b3a62b7b7dfa
r19799: ability to pass channel name (not only number) to radio_set_channel
r19788: small wording/spelling fixes
r19785: keypad 7 returns to nearest dvdnav menu
r19778: mention dvdnav keys bindings
r19777: mention that 'h' and 'k' work with dvb input, too
r19763: -nortc is now the default, document -rtc instead. Change the description
of -rtc and -softsleep.
r19751: Add a bit of doc about dvdnav support in MPlayer, and why you may want to use it.
author | kraymer |
---|---|
date | Tue, 12 Sep 2006 07:07:48 +0000 |
parents | ac69ba536915 |
children | 618d1857f4c4 |
line wrap: on
line source
include ../config.mak LIBNAME = libmenu.a SRCS= menu.c \ vf_menu.c \ menu_cmdlist.c \ menu_pt.c \ menu_list.c \ menu_filesel.c \ menu_txt.c \ menu_console.c \ menu_param.c \ ifeq ($(DVBIN),yes) SRCS += menu_dvbin.c endif OBJS=$(SRCS:.c=.o) CFLAGS = -I. -I.. $(OPTFLAGS) .SUFFIXES: .c .o .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) all: $(LIBNAME) clean: rm -f *.o *.a *~ distclean: clean rm -f .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif