view Makefile @ 133:f27471fa9047 libavutil

allow spaces in source and build directory names out of tree builds from a source dir with spaces is impossible due to how make handles vpath
author mru
date Wed, 08 Nov 2006 00:02:15 +0000
parents 81fb94a999a2
children 4ae092965c27
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 \

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

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

include ../common.mak