view Makefile @ 258:e5290a4c4ef4 libavutil

Revert previous commit that contained an unrelated hunk.
author diego
date Tue, 27 Feb 2007 00:11:14 +0000
parents 7e0fa666b0d3
children 77a453e1b849
line wrap: on
line source

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

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 \
      aes.o \
      base64.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