Blargh.
This commit is contained in:
parent
e8ca75ab2c
commit
c4ac06ec28
|
@ -6,6 +6,9 @@ libphysfsinclude_HEADERS = \
|
||||||
|
|
||||||
if BUILD_MACOSX
|
if BUILD_MACOSX
|
||||||
|
|
||||||
|
BEOS_SRC = @BUILD_BEOS_CPP@
|
||||||
|
BEOS_EXTRADIST = @BUILD_BEOS_EXTRA@
|
||||||
|
|
||||||
ZLIB_FILES = zlib114/adler32.c \
|
ZLIB_FILES = zlib114/adler32.c \
|
||||||
zlib114/compress.c \
|
zlib114/compress.c \
|
||||||
zlib114/crc32.c \
|
zlib114/crc32.c \
|
||||||
|
@ -53,7 +56,7 @@ libphysfs_la_SOURCES = \
|
||||||
archivers/unzip.h \
|
archivers/unzip.h \
|
||||||
platform/unix.c \
|
platform/unix.c \
|
||||||
platform/posix.c \
|
platform/posix.c \
|
||||||
$(ZLIB_SRC) @BUILD_BEOS_CPP@
|
$(ZLIB_SRC) $(BEOS_SRC)
|
||||||
|
|
||||||
libphysfs_la_INCLUDES = $(ZLIB_INC)
|
libphysfs_la_INCLUDES = $(ZLIB_INC)
|
||||||
|
|
||||||
|
@ -91,7 +94,7 @@ EXTRA_DIST = \
|
||||||
extras/physfshttpd.c \
|
extras/physfshttpd.c \
|
||||||
Makefile.am.oldautomake \
|
Makefile.am.oldautomake \
|
||||||
Makefile.am.newautomake \
|
Makefile.am.newautomake \
|
||||||
$(ZLIB_EXTRADIST) @BUILD_BEOS_EXTRA@ $(TEST_EXTRADIST)
|
$(ZLIB_EXTRADIST) $(BEOS_EXTRADIST) $(TEST_EXTRADIST)
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
||||||
|
|
|
@ -2,15 +2,18 @@ noinst_LTLIBRARIES = libplatform.la
|
||||||
|
|
||||||
INCLUDES = -I$(top_srcdir)
|
INCLUDES = -I$(top_srcdir)
|
||||||
|
|
||||||
|
BEOS_SRC = @BUILD_BEOS_CPP@
|
||||||
|
BEOS_EXTRADIST = @BUILD_BEOS_EXTRA@
|
||||||
|
|
||||||
libplatform_la_SOURCES = \
|
libplatform_la_SOURCES = \
|
||||||
unix.c \
|
unix.c \
|
||||||
posix.c \
|
posix.c \
|
||||||
@BUILD_BEOS_CPP@
|
$(BEOS_SRC)
|
||||||
|
|
||||||
|
|
||||||
EXTRA_DIST = \
|
EXTRA_DIST = \
|
||||||
skeleton.c \
|
skeleton.c \
|
||||||
macclassic.c \
|
macclassic.c \
|
||||||
win32.c \
|
win32.c \
|
||||||
@BUILD_BEOS_EXTRA@
|
$(BEOS_EXTRADIST)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue