physfs/platform/Makefile.am

26 lines
393 B
Makefile
Raw Normal View History

2002-06-28 05:50:24 +02:00
noinst_LTLIBRARIES = libplatform.la
INCLUDES = -I$(top_srcdir)
2002-06-28 08:21:17 +02:00
if BUILD_BEOS
2002-06-28 05:50:24 +02:00
libplatform_la_SOURCES = \
posix.c \
2002-06-28 08:30:07 +02:00
beos.cpp
else
libplatform_la_SOURCES = \
unix.c \
win32.c \
2002-07-27 08:28:45 +02:00
posix.c \
os2.c
2002-06-28 08:30:07 +02:00
endif
2002-06-28 07:51:37 +02:00
2002-06-28 05:50:24 +02:00
EXTRA_DIST = \
skeleton.c \
macclassic.c \
win32.c \
unix.c \
2002-07-27 08:28:45 +02:00
os2.c \
2002-06-28 08:30:07 +02:00
beos.cpp
2002-06-28 05:50:24 +02:00