Mercurial > sdl-ios-xcode
annotate src/timer/Makefile.am @ 173:83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Tue, 11 Sep 2001 20:38:49 +0000 |
parents | 69ee0b88b615 |
children | c5010ab8ba35 |
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 \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
11 $(srcdir)/win32 |
0 | 12 |
13 # Include the architecture-independent sources | |
14 COMMON_SRCS = SDL_timer.c SDL_timer_c.h SDL_systimer.h | |
15 | |
16 # Include the architecture-specific sources | |
17 ARCH_SRCS = SDL_systimer.c | |
18 | |
19 libtimer_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
20 | |
21 ## Let automake know that it shouldn't distribute linked sources | |
22 BUILT_SOURCES = $(ARCH_SRCS) | |
23 | |
24 ## Let automake know that it should remove these for distribution | |
25 DISTCLEANFILES = $(ARCH_SRCS) | |
26 | |
27 # The architecture specific directories need to be copied into place | |
28 # when building a distribution. | |
29 dist-hook: | |
30 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
31 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
32 (cd $(distdir) && rm -rf `find . -name CVS`) |