Mercurial > sdl-ios-xcode
annotate src/thread/Makefile.am @ 500:c335456c421d
Fixed YUV overlay code for Quicktime 6
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Sat, 05 Oct 2002 04:56:32 +0000 |
parents | 640dcf27d2f7 |
children | dad72daf44b3 |
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 \ |
256
640dcf27d2f7
*** empty log message ***
Sam Lantinga <slouken@libsdl.org>
parents:
185
diff
changeset
|
9 $(srcdir)/bsdi \ |
185
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
10 $(srcdir)/epoc \ |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
11 $(srcdir)/irix \ |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
12 $(srcdir)/linux \ |
34d316d5e744
Added support for the GNU Pth thread lib (thanks Mandin!)
Sam Lantinga <slouken@libsdl.org>
parents:
173
diff
changeset
|
13 $(srcdir)/pth \ |
173
83018110dce8
Added initial support for EPOC/Symbian OS (thanks Hannu!)
Sam Lantinga <slouken@libsdl.org>
parents:
138
diff
changeset
|
14 $(srcdir)/win32 |
0 | 15 |
16 # Older versions of Linux require an asm clone() implementation | |
17 if USE_CLONE | |
18 THREAD_ASM_SRC = clone.S | |
19 else | |
20 THREAD_ASM_SRC = | |
21 endif | |
22 | |
23 COMMON_SRCS = \ | |
24 SDL_systhread.h \ | |
25 SDL_thread.c \ | |
26 SDL_thread_c.h | |
27 ARCH_SRCS = \ | |
28 SDL_systhread.c \ | |
29 SDL_systhread_c.h \ | |
30 SDL_sysmutex.c \ | |
31 SDL_sysmutex_c.h \ | |
32 SDL_syssem.c \ | |
33 SDL_syssem_c.h \ | |
34 SDL_syscond.c \ | |
35 SDL_syscond_c.h \ | |
36 $(THREAD_ASM_SRC) | |
37 | |
38 libthread_la_SOURCES = $(COMMON_SRCS) $(ARCH_SRCS) | |
39 | |
40 ## Let automake know that it shouldn't distribute linked sources | |
41 BUILT_SOURCES = $(ARCH_SRCS) | |
42 | |
43 ## Let automake know that it should remove these for distribution | |
44 DISTCLEANFILES = $(ARCH_SRCS) | |
45 | |
46 # The architecture specific directories need to be copied into place | |
47 # when building a distribution. | |
48 dist-hook: | |
49 (cd $(distdir) && rm -f $(BUILT_SOURCES)) | |
50 cp -rp $(ARCH_SUBDIRS) $(distdir) | |
51 (cd $(distdir) && rm -rf `find . -name CVS`) |