Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 481:c96e2137f9eb
Date: Sat, 31 Aug 2002 15:42:45 +0200
From: Alexandre Courbot
Subject: [SDL] Qtopia port fixes/improvments
-Whenever the screen is rotated, the pad is rotated as well,
-Fixed a mouse bug: when tapping on the screen, the click event was
often sent at the previous position of the stylus (resulting in strange
behavior in Scummvm for instance)
-Added the SDL_QT_INVERT_ROTATION environment variable which, when set,
rotates the screen (and the mouse, and the pad) the other way. This can
be useful for left-handed people.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sun, 01 Sep 2002 00:37:24 +0000 |
parents | c5010ab8ba35 |
children | dad72daf44b3 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL timer library | |
3 | |
4 noinst_LTLIBRARIES = libtimer.la | |
5 | |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
6 ARCH_SUBDIRS = $(srcdir)/amigaos \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
7 $(srcdir)/beos \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
8 $(srcdir)/epoc \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
9 $(srcdir)/linux \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
10 $(srcdir)/macos \ |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
11 $(srcdir)/mint \ |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
12 $(srcdir)/win32 |
0 | 13 |
14 # Include the architecture-independent sources | |
15 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h | |
16 | |
17 # Include the architecture-specific sources | |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
18 if TARGET_MINT |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
19 ARCH_SRCS = SDL_systimer.c SDL_vbltimer.S SDL_vbltimer_s.h |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
20 else |
0 | 21 ARCH_SRCS = SDL_systimer.c |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
22 endif |
0 | 23 |
24 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
25 | |
26 ## Let automake know that it shouldn't distribute linked sources | |
27 BUILT_SOURCES = $(ARCH_SRCS) | |
28 | |
29 ## Let automake know that it should remove these for distribution | |
30 DISTCLEANFILES = $(ARCH_SRCS) | |
31 | |
32 # The architecture specific directories need to be copied into place | |
33 # when building a distribution. | |
34 dist-hook: | |
35 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
36 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
37 (cd $(distdir) && rm -rf `find . -name CVS`) |