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