view src/video/directfb/Makefile.am @ 790:d39b74b8583c

Date: Wed, 28 Jan 2004 20:25:54 +0100 From: Thomas Jarosch Subject: Re: [SDL] DSPF_RBG15 in src/video/directfb/SDL_DirectFB_video.c In my local DirectFB 0.1.19 copy, DSPF_RGB15 is an alias for DSPF_ARGB1555. They seem to have it removed in DirectFB CVS. As DSPF_RGB15 was only an alias, the attached patch can safely be applied to SDL and won't brake older DirectFB versions.
author Sam Lantinga <slouken@libsdl.org>
date Wed, 28 Jan 2004 22:01:02 +0000
parents 707748c422f8
children
line wrap: on
line source


## Makefile.am for SDL using the DirectFB video driver

INCLUDES = $(DIRECTFB_CFLAGS)

noinst_LTLIBRARIES = libvideo_directfb.la
libvideo_directfb_la_SOURCES = $(DIRECTFB_SRCS)
libvideo_directfb_la_LIBADD  = $(DIRECTFB_LIBS)

# The SDL DirectFB video driver sources
DIRECTFB_SRCS = 		\
	SDL_DirectFB_events.c	\
	SDL_DirectFB_events.h	\
	SDL_DirectFB_video.c	\
	SDL_DirectFB_video.h	\
	SDL_DirectFB_yuv.c	\
	SDL_DirectFB_yuv.h