Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 449:8a687496061f
Added an environment variable SDL_VIDEO_X11_WMCLASS
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Mon, 19 Aug 2002 03:40:44 +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`) |