From 8e5e1b5c42b51107923c6318fdb155b33a3c4a8d Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 14 Jun 2002 21:11:58 +0000 Subject: [PATCH] Removed in build system rewrite. --- archivers/Makefile.am | 15 --------------- extras/Makefile.am | 6 ------ platform/Makefile.am | 21 --------------------- test/Makefile.am | 10 ---------- 4 files changed, 52 deletions(-) delete mode 100644 archivers/Makefile.am delete mode 100644 extras/Makefile.am delete mode 100644 platform/Makefile.am delete mode 100644 test/Makefile.am diff --git a/archivers/Makefile.am b/archivers/Makefile.am deleted file mode 100644 index 277a0c78..00000000 --- a/archivers/Makefile.am +++ /dev/null @@ -1,15 +0,0 @@ -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 deleted file mode 100644 index 375ce1a0..00000000 --- a/extras/Makefile.am +++ /dev/null @@ -1,6 +0,0 @@ -EXTRA_DIST = \ - physfsrwops.c \ - physfsrwops.h \ - physfshttpd.c - - diff --git a/platform/Makefile.am b/platform/Makefile.am deleted file mode 100644 index 0ea4a946..00000000 --- a/platform/Makefile.am +++ /dev/null @@ -1,21 +0,0 @@ -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) - diff --git a/test/Makefile.am b/test/Makefile.am deleted file mode 100644 index 139a1c5b..00000000 --- a/test/Makefile.am +++ /dev/null @@ -1,10 +0,0 @@ -if BUILD_TEST_PHYSFS - -bin_PROGRAMS = test_physfs - -INCLUDES = -I$(top_srcdir) - -test_physfs_LDADD = ../libphysfs.la -test_physfs_SOURCES = test_physfs.c - -endif