view libvo/Makefile @ 15939:4119b6ef4e87

add 'aspect' and 'round' params to vf_expand. (my first commit! I hope I did this correctly ;)
author ods15
date Thu, 07 Jul 2005 19:54:58 +0000
parents d3d30585a9d2
children 7949a0c4e5ad
line wrap: on
line source


include config.mak

LIBNAME = libvo.a

SRCS=aclib.c \
     aspect.c \
     font_load.c \
     font_load_ft.c \
     geometry.c \
     gtf.c \
     osd.c \
     spuenc.c \
     sub.c \
     video_out.c \
     vo_mpegpes.c \
     vo_null.c \
     vo_yuv4mpeg.c \
     $(OPTIONAL_SRCS) \

OBJS_TEMP=$(basename $(SRCS))
OBJS=$(OBJS_TEMP:%=%.o)

ifeq ($(VIDIX),yes)
SRCS += vosub_vidix.c
endif

CFLAGS  = $(OPTFLAGS) -I. -I.. -I../osdep \
          $(FREETYPE_INC) \
          $(SDL_INC) \
          $(X11_INC) \
          $(EXTRA_INC) \
          $(DXR2_INC) \
          $(DIRECTFB_INC) \
          -DMPG12PLAY \

#CFLAGS += -Wall

.SUFFIXES: .c .o .m

# .PHONY: all clean

.c.o:
	$(CC) -c $(CFLAGS) -o $@ $<

.m.o:
	$(CC) -c $(CFLAGS) -o $@ $<

$(LIBNAME):     $(OBJS)
	$(AR) r $(LIBNAME) $(OBJS)
	$(RANLIB) $(LIBNAME)

vo_mpegpes.o: vo_mpegpes.c
	$(CC) -c $(CFLAGS) $(DVB_INC) -o $@ $<

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