view Makefile @ 239:06fd8e5c5a04 libavutil

av_random() by Ryan Martell rdm4 name-server-seperator martellventures d0t com
author michael
date Thu, 08 Feb 2007 22:09:05 +0000
parents 5ad447ede15c
children 80f17646fa2d
line wrap: on
line source

#
# libavutil Makefile
#
include ../config.mak

CFLAGS+=-DBUILD_AVUTIL

OBJS= mathematics.o \
      rational.o \
      intfloat_readwrite.o \
      crc.o \
      md5.o \
      lls.o \
      adler32.o \
      log.o \
      mem.o \
      fifo.o \
      tree.o \
      lzo.o \
      random.o \

HEADERS = avutil.h common.h mathematics.h integer.h rational.h \
          intfloat_readwrite.h md5.h adler32.h log.h fifo.h lzo.h \
          random.h

NAME=avutil
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(LAVUVERSION)
LIBMAJOR=$(LAVUMAJOR)
endif

include ../common.mak