author | Ryan C. Gordon <icculus@icculus.org> |
Tue, 06 Sep 2005 06:24:42 +0000 | |
changeset 747 | 3da194b12f43 |
parent 691 | 71d9affe0d8a |
child 791 | 43051d05bcc3 |
permissions | -rw-r--r-- |
295 | 1 |
noinst_LTLIBRARIES = libplatform.la |
2 |
||
3 |
INCLUDES = -I$(top_srcdir) |
|
4 |
||
307 | 5 |
if BUILD_BEOS |
295 | 6 |
libplatform_la_SOURCES = \ |
7 |
posix.c \ |
|
308 | 8 |
beos.cpp |
9 |
else |
|
10 |
libplatform_la_SOURCES = \ |
|
11 |
unix.c \ |
|
327
76e207c6b4a7
Build system corrections for BeOS and Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
308
diff
changeset
|
12 |
win32.c \ |
409
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
327
diff
changeset
|
13 |
posix.c \ |
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
327
diff
changeset
|
14 |
os2.c |
308 | 15 |
endif |
301 | 16 |
|
295 | 17 |
|
18 |
EXTRA_DIST = \ |
|
19 |
skeleton.c \ |
|
20 |
macclassic.c \ |
|
21 |
win32.c \ |
|
691
71d9affe0d8a
All memory management now goes through allocation hooks instead of directly to
Ryan C. Gordon <icculus@icculus.org>
parents:
409
diff
changeset
|
22 |
pocketpc.c \ |
327
76e207c6b4a7
Build system corrections for BeOS and Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
308
diff
changeset
|
23 |
unix.c \ |
409
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
327
diff
changeset
|
24 |
os2.c \ |
308 | 25 |
beos.cpp |
295 | 26 |