Mercurial > sdl-ios-xcode
view src/thread/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 | 623b453a3219 |
children |
line wrap: on
line source
## Makefile.am for the SDL thread library noinst_LTLIBRARIES = libthread.la ARCH_SUBDIRS = $(srcdir)/generic \ $(srcdir)/amigaos \ $(srcdir)/beos \ $(srcdir)/bsdi \ $(srcdir)/dc \ $(srcdir)/epoc \ $(srcdir)/irix \ $(srcdir)/linux \ $(srcdir)/pth \ $(srcdir)/win32 # Older versions of Linux require an asm clone() implementation if USE_CLONE THREAD_ASM_SRC = linux/clone.S else THREAD_ASM_SRC = endif COMMON_SRCS = \ SDL_systhread.h \ SDL_thread.c \ SDL_thread_c.h ARCH_SRCS = \ SDL_systhread.c \ SDL_systhread_c.h \ SDL_sysmutex.c \ SDL_sysmutex_c.h \ SDL_syssem.c \ SDL_syssem_c.h \ SDL_syscond.c \ SDL_syscond_c.h \ $(THREAD_ASM_SRC) libthread_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) ## Let automake know that it shouldn't distribute linked sources BUILT_SOURCES = $(ARCH_SRCS) ## Let automake know that it should remove these for distribution DISTCLEANFILES = $(ARCH_SRCS) # The architecture specific directories need to be copied into place # when building a distribution. dist-hook: (cd $(distdir) && rm -f $(BUILT_SOURCES)) cp -rp $(ARCH_SUBDIRS) $(distdir) (cd $(distdir) && rm -rf `find . -name CVS`)