view libswscale/Makefile @ 19397:0074c9c77a0e

Set encoder's input format to "native endiannes", instead of little endian. Original thread: Date: Aug 9, 2006 11:55 PM Subject: Re: [PATCH] bugfix: lame endianess for Solaris/SPARC
author gpoirier
date Tue, 15 Aug 2006 14:32:50 +0000
parents f0e9de2b3780
children 0e37275ccbe5
line wrap: on
line source


include ../config.mak

NAME=swscale
ifeq ($(BUILD_SHARED),yes)
LIBVERSION=$(SWSVERSION)
LIBMAJOR=$(SWSMAJOR)
endif

# NOTE: -I.. is needed to include config.h
CFLAGS=$(OPTFLAGS) -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavutil \
       -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE \
       -D_GNU_SOURCE

OBJS= swscale.o rgb2rgb.o yuv2rgb.o
ifeq ($(TARGET_ALTIVEC),yes)
OBJS+=  yuv2rgb_altivec.o
endif

HEADERS = swscale.h rgb2rgb.h

include $(SRC_PATH)/common.mak