From ffb3f0150a19fcaefc33634f82305bd0665cce1e Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 28 Jun 2002 03:50:24 +0000 Subject: [PATCH] Readded. --- archivers/Makefile.am | 15 +++++++++++++++ extras/Makefile.am | 6 ++++++ platform/Makefile.am | 21 +++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 archivers/Makefile.am create mode 100644 extras/Makefile.am create mode 100644 platform/Makefile.am diff --git a/archivers/Makefile.am b/archivers/Makefile.am new file mode 100644 index 00000000..277a0c78 --- /dev/null +++ b/archivers/Makefile.am @@ -0,0 +1,15 @@ +noinst_LTLIBRARIES = libarchivers.la + +if BUILD_ZLIB +INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/zlib114 +else +INCLUDES = -I$(top_srcdir) +endif + +libarchivers_la_SOURCES = \ + dir.c \ + grp.c \ + zip.c \ + unzip.c \ + unzip.h + diff --git a/extras/Makefile.am b/extras/Makefile.am new file mode 100644 index 00000000..375ce1a0 --- /dev/null +++ b/extras/Makefile.am @@ -0,0 +1,6 @@ +EXTRA_DIST = \ + physfsrwops.c \ + physfsrwops.h \ + physfshttpd.c + + diff --git a/platform/Makefile.am b/platform/Makefile.am new file mode 100644 index 00000000..0ea4a946 --- /dev/null +++ b/platform/Makefile.am @@ -0,0 +1,21 @@ +noinst_LTLIBRARIES = libplatform.la + +INCLUDES = -I$(top_srcdir) + +if BUILD_BEOS_CPP + X = beos.cpp +else + Y = beos.cpp +endif + +libplatform_la_SOURCES = \ + unix.c \ + posix.c \ + $(X) + +EXTRA_DIST = \ + skeleton.c \ + macclassic.c \ + win32.c \ + $(Y) +