Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 540:4bcfb93e0dfe
Greatly improved X11 DGA video speed (thanks Cezary!)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 09 Nov 2002 06:20:46 +0000 |
parents | dad72daf44b3 |
children | 550bccdf04bd |
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 \ |
509
dad72daf44b3
Added initial support for Dreamcast (thanks HERO!)
Sam Lantinga <slouken@libsdl.org>
parents:
281
diff
changeset
|
8 $(srcdir)/dc \ |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
9 $(srcdir)/epoc \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
10 $(srcdir)/linux \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
11 $(srcdir)/macos \ |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
12 $(srcdir)/mint \ |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
13 $(srcdir)/win32 |
0 | 14 |
15 # Include the architecture-independent sources | |
16 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h | |
17 | |
18 # Include the architecture-specific sources | |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
19 if TARGET_MINT |
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
20 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
|
21 else |
0 | 22 ARCH_SRCS = SDL_systimer.c |
281
c5010ab8ba35
Added initial support for Atari (thanks Patrice!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
23 endif |
0 | 24 |
25 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
26 | |
27 ## Let automake know that it shouldn't distribute linked sources | |
28 BUILT_SOURCES = $(ARCH_SRCS) | |
29 | |
30 ## Let automake know that it should remove these for distribution | |
31 DISTCLEANFILES = $(ARCH_SRCS) | |
32 | |
33 # The architecture specific directories need to be copied into place | |
34 # when building a distribution. | |
35 dist-hook: | |
36 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
37 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
38 (cd $(distdir) && rm -rf `find . -name CVS`) |