Mercurial > sdl-ios-xcode
view src/timer/Makefile.am @ 270:37fa1484f71b
From: "Mattias Engdeg�rd" <f91-men@nada.kth.se>
To: slouken@devolution.com
Subject: Re: [SDL] Question about SDL_FillRect()
I benchmarked with and without clipping UpdateRects and was unable to find
any difference on my moderately slow machine. Anyway, I haven't added
clipping in this patch, but fixed a couple of bugs and generally cleaned
up some of the X11 image code. Most importantly, UpdateRects now checks
for both zero height and width. Also, I eliminated the entire code to
byteswap X11 images since X11 can do that automatically if you ask it
nicely :-)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Fri, 18 Jan 2002 22:02:03 +0000 |
parents | 83018110dce8 |
children | c5010ab8ba35 |
line wrap: on
line source
## Makefile.am for the SDL timer library noinst_LTLIBRARIES = libtimer.la ARCH_SUBDIRS = $(srcdir)/amigaos \ $(srcdir)/beos \ $(srcdir)/epoc \ $(srcdir)/linux \ $(srcdir)/macos \ $(srcdir)/win32 # Include the architecture-independent sources COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h # Include the architecture-specific sources ARCH_SRCS = SDL_systimer.c libtimer_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`)