author | Ryan C. Gordon <icculus@icculus.org> |
Mon, 29 Dec 2003 08:50:21 +0000 | |
changeset 622 | c8e67ca63ad6 |
parent 409 | 3b9db2a124e4 |
child 691 | 71d9affe0d8a |
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 \ |
|
327
76e207c6b4a7
Build system corrections for BeOS and Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
308
diff
changeset
|
22 |
unix.c \ |
409
3b9db2a124e4
Added platform/os2.c to build system.
Ryan C. Gordon <icculus@icculus.org>
parents:
327
diff
changeset
|
23 |
os2.c \ |
308 | 24 |
beos.cpp |
295 | 25 |