view src/video/Makefile.am @ 1140:af8b0f9ac2f4

iPod Linux framebuffer support. --ryan. Date: Sun, 19 Jun 2005 15:53:22 -0700 From: Joshua Oreman <oremanj@gmail.com> To: sdl@libsdl.org Subject: [SDL] [PATCH] iPod framebuffer video driver Hi SDL-list, I've been working on a port of SDL to iPodLinux (http://www.ipodlinux.org). I've created a patch for both the standard 2-bit iPod screen (using an unchangeable palette) and the 16-bit iPod photo. The patch is attached, against version 1.2.8. I've created two pages on the iPodLinux wiki about this patch: http://www.ipodlinux.org/Building_SDL and http://www.ipodlinux.org/SDL_Programming. See those pages if you're curious. Comments? Questions? Is this something that might be able to get into SDL 1.2.9? Thanks for your feedback! -- Josh
author Ryan C. Gordon <icculus@icculus.org>
date Thu, 08 Sep 2005 07:33:22 +0000
parents 5bb080d35049
children 19d8949b4584
line wrap: on
line source


## Makefile.am for the SDL video library

noinst_LTLIBRARIES = libvideo.la

# Define which subdirectories need to be built
SUBDIRS = @VIDEO_SUBDIRS@
DIST_SUBDIRS = dummy x11 dga nanox fbcon directfb vgl svga ggi aalib \
               wincommon windib windx5 \
               maccommon macdsp macrom riscos quartz \
               bwindow ps2gs photon cybergfx epoc picogui \
               ataricommon xbios gem dc qtopia XFree86

DRIVERS = @VIDEO_DRIVERS@

# Include the architecture-independent sources
COMMON_SRCS =			\
	SDL_RLEaccel.c		\
	SDL_RLEaccel_c.h	\
	SDL_blit.c		\
	SDL_blit.h		\
	SDL_blit_0.c		\
	SDL_blit_1.c		\
	SDL_blit_A.c		\
	SDL_blit_N.c		\
	SDL_bmp.c		\
	SDL_cursor.c		\
	SDL_cursor_c.h		\
	SDL_gamma.c		\
	SDL_glfuncs.h		\
	SDL_leaks.h		\
	SDL_memops.h		\
	SDL_pixels.c		\
	SDL_pixels_c.h		\
	SDL_surface.c		\
	SDL_stretch.c		\
	SDL_stretch_c.h		\
	SDL_sysvideo.h		\
	SDL_video.c		\
	SDL_yuv.c		\
	SDL_yuvfuncs.h		\
	SDL_yuv_sw.c		\
	SDL_yuv_sw_c.h		\
	SDL_yuv_mmx.c		\
	mmx.h			\
	blank_cursor.h		\
	default_cursor.h

libvideo_la_SOURCES = $(COMMON_SRCS)
libvideo_la_LIBADD = $(DRIVERS)
libvideo_la_DEPENDENCIES = $(DRIVERS)