Mercurial > sdl-ios-xcode
annotate src/thread/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 | 34d316d5e744 |
rev | line source |
---|---|
0 | 1 |
2 ## Makefile.am for the SDL thread library | |
3 | |
4 noinst_LTLIBRARIES = libthread.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)/generic \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
7 $(srcdir)/amigaos \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
8 $(srcdir)/beos \ |
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)/irix \ |
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
11 $(srcdir)/linux \ |
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 # Older versions of Linux require an asm clone() implementation | |
15 if USE_CLONE | |
16 THREAD_ASM_SRC = clone.S | |
17 else | |
18 THREAD_ASM_SRC = | |
19 endif | |
20 | |
21 COMMON_SRCS = \ | |
22 SDL_systhread.h \ | |
23 SDL_thread.c \ | |
24 SDL_thread_c.h | |
25 ARCH_SRCS = \ | |
26 SDL_systhread.c \ | |
27 SDL_systhread_c.h \ | |
28 SDL_sysmutex.c \ | |
29 SDL_sysmutex_c.h \ | |
30 SDL_syssem.c \ | |
31 SDL_syssem_c.h \ | |
32 SDL_syscond.c \ | |
33 SDL_syscond_c.h \ | |
34 $(THREAD_ASM_SRC) | |
35 | |
36 libthread_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
37 | |
38 ## Let automake know that it shouldn't distribute linked sources | |
39 BUILT_SOURCES = $(ARCH_SRCS) | |
40 | |
41 ## Let automake know that it should remove these for distribution | |
42 DISTCLEANFILES = $(ARCH_SRCS) | |
43 | |
44 # The architecture specific directories need to be copied into place | |
45 # when building a distribution. | |
46 dist-hook: | |
47 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
48 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
49 (cd $(distdir) && rm -rf `find . -name CVS`) |