author | Ryan C. Gordon <icculus@icculus.org> |
Fri, 28 Jun 2002 05:51:37 +0000 | |
changeset 301 | d4125bc24ac8 |
parent 299 | a4a50c609021 |
child 302 | b6fe2b615045 |
permissions | -rw-r--r-- |
295 | 1 |
noinst_LTLIBRARIES = libplatform.la |
2 |
||
3 |
INCLUDES = -I$(top_srcdir) |
|
4 |
||
301 | 5 |
if BUILD_BEOS_CPP |
6 |
BEOS_SRC = beos.cpp |
|
7 |
else |
|
8 |
BEOS_SRC = |
|
9 |
endif |
|
299
a4a50c609021
More build system dancing.
Ryan C. Gordon <icculus@icculus.org>
parents:
295
diff
changeset
|
10 |
|
301 | 11 |
if !BUILD_BEOS_CPP |
12 |
BEOS_EXTRA = beos.cpp |
|
295 | 13 |
else |
301 | 14 |
BEOS_EXTRA = |
295 | 15 |
endif |
16 |
||
301 | 17 |
|
295 | 18 |
libplatform_la_SOURCES = \ |
19 |
unix.c \ |
|
20 |
posix.c \ |
|
301 | 21 |
$(BEOS_SRC) |
22 |
||
295 | 23 |
|
24 |
EXTRA_DIST = \ |
|
25 |
skeleton.c \ |
|
26 |
macclassic.c \ |
|
27 |
win32.c \ |
|
301 | 28 |
$(BEOS_EXTRA) |
295 | 29 |