physfs/platform/Makefile.am

30 lines
385 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
BEOS_SRC = beos.cpp
else
BEOS_SRC =
endif
if BUILD_BEOS
BEOS_EXTRADIST =
else
BEOS_EXTRADIST = beos.cpp
endif
2002-06-28 08:14:52 +02:00
2002-06-28 05:50:24 +02:00
libplatform_la_SOURCES = \
unix.c \
posix.c \
2002-06-28 08:14:52 +02:00
$(BEOS_SRC)
2002-06-28 07:51:37 +02:00
2002-06-28 05:50:24 +02:00
EXTRA_DIST = \
skeleton.c \
macclassic.c \
win32.c \
2002-06-28 08:14:52 +02:00
$(BEOS_EXTRADIST)
2002-06-28 05:50:24 +02:00