Mercurial > mplayer.hg
view vidix/Makefile @ 18853:1ec19da0c642
increase buffer size, "CSeq: %u" has a worst case of 17 (fix 1.18 from xine, see http://xine.cvs.sourceforge.net/xine/xine-lib/src/input/librtsp/rtsp.c?r1=1.17&r2=1.18)
author | ben |
---|---|
date | Thu, 29 Jun 2006 21:50:49 +0000 |
parents | ac071d4aafd2 |
children | 618d1857f4c4 |
line wrap: on
line source
LIBNAME = libvidix.a include ../config.mak SRCS = vidixlib.c OBJS = $(SRCS:.c=.o) CFLAGS = $(OPTFLAGS) .SUFFIXES: .c .o # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -o $@ $< all: $(SUBDIRS) $(LIBNAME) do_drivers do_drivers: $(MAKE) -C drivers $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) $(RANLIB) $(LIBNAME) clean: rm -f *.o *.a *~ $(MAKE) -C drivers clean distclean: clean rm -f .depend test $(MAKE) -C drivers distclean dep: depend $(MAKE) -C drivers dep depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend install: $(MAKE) -C drivers install uninstall: $(MAKE) -C drivers uninstall # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif