Mercurial > mplayer.hg
view libvo/Makefile @ 4139:13d6395e8daa
added mga_vid (also playback->offset is not set (fixing it on monday)
author | alex |
---|---|
date | Sun, 13 Jan 2002 16:54:32 +0000 |
parents | 562b43b604d4 |
children | 2d8403f1c54e |
line wrap: on
line source
include config.mak LIBNAME = libvo.a SRCS=aspect.c aclib.c osd.c font_load.c video_out.c vo_null.c vo_pgm.c vo_md5.c vo_mpegpes.c x11_common.c $(OPTIONAL_SRCS) img_format.c sub.c OBJS=$(SRCS:.c=.o) ifeq ($(VIDIX),yes) SRCS += vosub_vidix.c vo_xvidix.c endif CFLAGS = $(OPTFLAGS) -I. -I.. $(SDL_INC) $(X11_INC) $(EXTRA_INC) $(DVB_INC) -DMPG12PLAY #-Wall ifeq ($(VIDIX),yes) CFLAGS += -DVIDIX_PATH='"$(prefix)/lib/mplayer/vidix/"' endif # -I/usr/X11R6/include/ .SUFFIXES: .c .o # .PHONY: all clean .c.o: $(CC) -c $(CFLAGS) -o $@ $< $(LIBNAME): $(OBJS) $(AR) r $(LIBNAME) $(OBJS) all: $(LIBNAME) clean: rm -f *.o *.a *~ distclean: rm -f Makefile.bak *.o *.a *~ .depend dep: depend depend: $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend # # include dependency files if they exist # ifneq ($(wildcard .depend),) include .depend endif