aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2006-02-28 07:12:24 +0000
committerRoland McGrath <roland@gnu.org>2006-02-28 07:12:24 +0000
commitc0bfd5cb70595af9432f20fac2925c375bfa12ed (patch)
treeaa62815f5468a7ee38a8844a17b341a1b0934453
parentcc949526a63e184807b6372a6cebe37ad83ffb74 (diff)
downloadglibc-c0bfd5cb70595af9432f20fac2925c375bfa12ed.tar.xz
glibc-c0bfd5cb70595af9432f20fac2925c375bfa12ed.zip
obsolete files removed
-rw-r--r--Makeconfig41
-rwxr-xr-xconfigure18
-rw-r--r--configure.in18
3 files changed, 0 insertions, 77 deletions
diff --git a/Makeconfig b/Makeconfig
deleted file mode 100644
index 92158bef1c..0000000000
--- a/Makeconfig
+++ /dev/null
@@ -1,41 +0,0 @@
-# Makeconfig fragment for glibc ports add-on.
-
-# These rules make sure that sysdeps/CPU/preconfigure changes are noticed.
-# preconfigure fragments can be written by hand, or they can be generated
-# from preconfigure.in by autoconf like sysdeps/.../configure.in files.
-
-# Figure out the name of this add-on. The ports add-on infrastructure
-# scripts can be copied into separate add-on packages by any name.
-ports-sysdeps = $(..)$(Makeconfig-add-on)/sysdeps
-
-$(common-objpfx)config.status: $(wildcard $(ports-sysdeps)/*/preconfigure)
-
-ifneq ($(AUTOCONF),no)
-
-ifeq ($(with-cvs),yes)
-define autoconf-it-cvs
-test ! -d CVS || cvs $(CVSOPTS) commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
-endef
-else
-autoconf-it-cvs =
-endif
-
-define autoconf-it
-@-rm -f $@.new
-$(AUTOCONF) $(ACFLAGS) $< > $@.new
-chmod a-w,a+x $@.new
-mv -f $@.new $@
-$(autoconf-it-cvs)
-endef
-
-$(..)ports/sysdeps/%/preconfigure: $(..)ports/sysdeps/%/preconfigure.in \
- aclocal.m4
- $(autoconf-it)
-
-endif # $(AUTOCONF) = no
-
-# This allows e.g. `make ports/dist' from a build directory.
-ifndef subdir
-ports/%:
- $(MAKE) $(PARALLELMFLAGS) -C $(@D) $(@F)
-endif
diff --git a/configure b/configure
deleted file mode 100755
index 77d4ea47a4..0000000000
--- a/configure
+++ /dev/null
@@ -1,18 +0,0 @@
-# This file is generated from configure.in by Autoconf. DO NOT EDIT!
-
-# The configure fragment in this file provides infrastructure for a glibc
-# add-on containing one or more glibc ports. Only these few script files
-# need exist in the top-level source directory of the add-on. The ports
-# themselves are contained entirely within their new sysdeps/ directories.
-# This makes it easy to take these few top-level files plus a new port's
-# additions to the sysdeps tree, and package a small add-on for that port.
-# The same infrastructure scripts work for any number of such glibc ports
-# collected together into a single shared add-on package.
-
-cpu_frags=`(cd $srcdir/$libc_add_on; echo sysdeps/*/preconfigure)`
-test x"$cpu_frags" = x'sysdeps/*/preconfigure' ||
-for frag in $cpu_frags; do
- echo "$as_me:$LINENO: result: ports add-on running preconfigure fragment $frag" >&5
-echo "${ECHO_T}ports add-on running preconfigure fragment $frag" >&6
- . $srcdir/$libc_add_on/$frag
-done
diff --git a/configure.in b/configure.in
deleted file mode 100644
index 93b987ab17..0000000000
--- a/configure.in
+++ /dev/null
@@ -1,18 +0,0 @@
-dnl glibc add-on configure.in fragment for a ports add-on.
-GLIBC_PROVIDES dnl See aclocal.m4 in the top level source directory.
-
-# The configure fragment in this file provides infrastructure for a glibc
-# add-on containing one or more glibc ports. Only these few script files
-# need exist in the top-level source directory of the add-on. The ports
-# themselves are contained entirely within their new sysdeps/ directories.
-# This makes it easy to take these few top-level files plus a new port's
-# additions to the sysdeps tree, and package a small add-on for that port.
-# The same infrastructure scripts work for any number of such glibc ports
-# collected together into a single shared add-on package.
-
-cpu_frags=`(cd $srcdir/$libc_add_on; echo sysdeps/*/preconfigure)`
-test x"$cpu_frags" = x'sysdeps/*/preconfigure' ||
-for frag in $cpu_frags; do
- AC_MSG_RESULT(ports add-on running preconfigure fragment $frag)
- . $srcdir/$libc_add_on/$frag
-done