author | Ryan C. Gordon <icculus@icculus.org> |
Thu, 06 Jun 2002 06:09:51 +0000 | |
changeset 261 | 9e1647c75ae0 |
parent 241 | 9353a112793f |
permissions | -rw-r--r-- |
213 | 1 |
noinst_LTLIBRARIES = libplatform.la |
2 |
||
3 |
INCLUDES = -I$(top_srcdir) |
|
4 |
||
241
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
5 |
if BUILD_BEOS_CPP |
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
6 |
X = beos.cpp |
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
7 |
else |
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
8 |
Y = beos.cpp |
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
9 |
endif |
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
10 |
|
213 | 11 |
libplatform_la_SOURCES = \ |
231
e4f81b0f1c93
Corrected to fix "make dist".
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
12 |
unix.c \ |
233
1b74a7df1ca6
Split some of the unix.c code out to posix.c for BeOS to use.
Ryan C. Gordon <icculus@icculus.org>
parents:
231
diff
changeset
|
13 |
posix.c \ |
241
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
14 |
$(X) |
213 | 15 |
|
231
e4f81b0f1c93
Corrected to fix "make dist".
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
16 |
EXTRA_DIST = \ |
e4f81b0f1c93
Corrected to fix "make dist".
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
17 |
skeleton.c \ |
e4f81b0f1c93
Corrected to fix "make dist".
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
18 |
macclassic.c \ |
241
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
19 |
win32.c \ |
9353a112793f
Only attempt to build BeOS code on BeOS (don't even try building an empty
Ryan C. Gordon <icculus@icculus.org>
parents:
233
diff
changeset
|
20 |
$(Y) |
231
e4f81b0f1c93
Corrected to fix "make dist".
Ryan C. Gordon <icculus@icculus.org>
parents:
213
diff
changeset
|
21 |