diff options
author | Jason Merrill <jason@gcc.gnu.org> | 2000-04-05 15:02:02 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2000-04-05 15:02:02 -0400 |
commit | dff7cb5b084123fbbc88a9fb6d1e0f34beb984be (patch) | |
tree | 0c0cb2b42d623860c8bdc7bc09349b69c8d8f47d | |
parent | b14b6ccb18caef65d6eee568e04d91f8a958bed4 (diff) | |
download | gcc-dff7cb5b084123fbbc88a9fb6d1e0f34beb984be.zip gcc-dff7cb5b084123fbbc88a9fb6d1e0f34beb984be.tar.gz gcc-dff7cb5b084123fbbc88a9fb6d1e0f34beb984be.tar.bz2 |
From Mark Elbrecht:
* makefile.dos: Remove; obsolete.
* configure.bat: Remove; obsolete.
From-SVN: r32938
-rw-r--r-- | libiberty/configure.bat | 14 | ||||
-rw-r--r-- | libiberty/makefile.dos | 29 |
2 files changed, 0 insertions, 43 deletions
diff --git a/libiberty/configure.bat b/libiberty/configure.bat deleted file mode 100644 index 18881ac..0000000 --- a/libiberty/configure.bat +++ /dev/null @@ -1,14 +0,0 @@ -@echo off
-if "%1" == "h8/300" goto h8300
-
-echo Configuring libiberty for go32
-copy Makefile.dos Makefile
-echo #define NEED_sys_siglist 1 >> config.h
-echo #define NEED_psignal 1 >> config.h
-goto exit
-
-:h8300
-echo Configuring libiberty for H8/300
-copy Makefile.dos Makefile
-
-:exit
diff --git a/libiberty/makefile.dos b/libiberty/makefile.dos deleted file mode 100644 index 7eba62c..0000000 --- a/libiberty/makefile.dos +++ /dev/null @@ -1,29 +0,0 @@ -CFLAGS=-O2 - -OBJS = \ - argv.o \ - basename.o \ - concat.o \ - cplus-dem.o \ - fdmatch.o \ - floatformat.o \ - getopt.o \ - getopt1.o \ - getruntime.o \ - hex.o \ - msdos.o \ - obstack.o \ - spaces.o \ - strerror.o \ - strsignal.o \ - xatexit.o \ - xexit.o \ - xmalloc.o \ - $E - -.c.o: - gcc -I../include $(CFLAGS) -c $< - -libiberty.a : $(OBJS) - -rm libiberty.a - ar rvs libiberty.a $(OBJS) |