author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 26 Jul 2002 06:19:09 +0000 | |
changeset 399 | 02dd53688315 |
parent 327 | 76e207c6b4a7 |
child 409 | 3b9db2a124e4 |
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 \ |
308 | 13 |
posix.c |
14 |
endif |
|
301 | 15 |
|
295 | 16 |
|
17 |
EXTRA_DIST = \ |
|
18 |
skeleton.c \ |
|
19 |
macclassic.c \ |
|
20 |
win32.c \ |
|
327
76e207c6b4a7
Build system corrections for BeOS and Cygwin.
Ryan C. Gordon <icculus@icculus.org>
parents:
308
diff
changeset
|
21 |
unix.c \ |
308 | 22 |
beos.cpp |
295 | 23 |