Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 398 Bytes

Makefile.am

File metadata and controls

29 lines (21 loc) · 398 Bytes
 
Jun 28, 2002
Jun 28, 2002
1
2
3
4
5
noinst_LTLIBRARIES = libplatform.la
INCLUDES = -I$(top_srcdir)
if BUILD_BEOS_CPP
Jun 28, 2002
Jun 28, 2002
6
7
8
9
10
11
12
BEOS_SRC = beos.cpp
else
BEOS_SRC =
endif
if !BUILD_BEOS_CPP
BEOS_EXTRA = beos.cpp
Jun 28, 2002
Jun 28, 2002
13
else
Jun 28, 2002
Jun 28, 2002
14
BEOS_EXTRA =
Jun 28, 2002
Jun 28, 2002
15
16
endif
Jun 28, 2002
Jun 28, 2002
17
Jun 28, 2002
Jun 28, 2002
18
19
20
libplatform_la_SOURCES = \
unix.c \
posix.c \
Jun 28, 2002
Jun 28, 2002
21
22
$(BEOS_SRC)
Jun 28, 2002
Jun 28, 2002
23
24
25
26
27
EXTRA_DIST = \
skeleton.c \
macclassic.c \
win32.c \
Jun 28, 2002
Jun 28, 2002
28
$(BEOS_EXTRA)