diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1993-08-08 14:25:54 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1993-08-08 14:25:54 -0700 |
commit | 00aae7b152f77c0aa1e0bd9ac2001635ca9c7c95 (patch) | |
tree | d9e88a74ba1671cabcb391bc9ff5d0b910a4538c | |
parent | 709f5be119026d8889bbfe2f1b67f343c4a63c58 (diff) | |
download | gcc-00aae7b152f77c0aa1e0bd9ac2001635ca9c7c95.zip gcc-00aae7b152f77c0aa1e0bd9ac2001635ca9c7c95.tar.gz gcc-00aae7b152f77c0aa1e0bd9ac2001635ca9c7c95.tar.bz2 |
New file.
From-SVN: r5109
-rw-r--r-- | gcc/config/mips/t-bsd | 23 | ||||
-rw-r--r-- | gcc/config/mips/t-bsd-gas | 7 | ||||
-rw-r--r-- | gcc/config/mips/t-svr3 | 23 | ||||
-rw-r--r-- | gcc/config/mips/t-svr3-gas | 7 | ||||
-rw-r--r-- | gcc/config/mips/t-svr4 | 23 | ||||
-rw-r--r-- | gcc/config/mips/t-svr4-gas | 7 |
6 files changed, 90 insertions, 0 deletions
diff --git a/gcc/config/mips/t-bsd b/gcc/config/mips/t-bsd new file mode 100644 index 0000000..693995e --- /dev/null +++ b/gcc/config/mips/t-bsd @@ -0,0 +1,23 @@ +# Exactly the same as t-mips, except we must define SYSTEM_HEADER_DIR +# to point to the bsd43 include files. +SYSTEM_HEADER_DIR = /bsd43/usr/include + +EXTRA_PASSES = mips-tfile mips-tdump + +# We have a premade insn-attrtab.c to save the hour it takes to run genattrtab. +# PREMADE_ATTRTAB = $(srcdir)/config/mips/mips-at.c +# PREMADE_ATTRTAB_MD = $(srcdir)/config/mips/mips-at.md + +# Suppress building libgcc1.a, since the MIPS compiler port is complete +# and does not need anything from libgcc1.a. +LIBGCC1 = libgcc1.null + +mips-tfile: mips-tfile.o version.o $(LIBDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tfile mips-tfile.o version.o $(LIBS) + +mips-tfile.o : mips-tfile.c $(CONFIG_H) $(CONFIG2_H) $(RTL_H) + +mips-tdump: mips-tdump.o version.o $(LIBDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tdump mips-tdump.o version.o $(LIBS) + +mips-tdump.o : mips-tdump.c $(CONFIG_H) $(CONFIG2_H) $(RTL_H) diff --git a/gcc/config/mips/t-bsd-gas b/gcc/config/mips/t-bsd-gas new file mode 100644 index 0000000..c149fdf --- /dev/null +++ b/gcc/config/mips/t-bsd-gas @@ -0,0 +1,7 @@ +# Exactly the same as t-mips-gas, except we must define SYSTEM_HEADER_DIR +# to point to the bsd43 include files. +SYSTEM_HEADER_DIR = /bsd43/usr/include + +# Suppress building libgcc1.a, since the MIPS compiler port is complete +# and does not need anything from libgcc1.a. +LIBGCC1 = libgcc1.null diff --git a/gcc/config/mips/t-svr3 b/gcc/config/mips/t-svr3 new file mode 100644 index 0000000..51f59ea --- /dev/null +++ b/gcc/config/mips/t-svr3 @@ -0,0 +1,23 @@ +# Exactly the same as t-mips, except we must define SYSTEM_HEADER_DIR +# to point to the svr3 include files. +SYSTEM_HEADER_DIR = /sysv/usr/include + +EXTRA_PASSES = mips-tfile mips-tdump + +# We have a premade insn-attrtab.c to save the hour it takes to run genattrtab. +# PREMADE_ATTRTAB = $(srcdir)/config/mips/mips-at.c +# PREMADE_ATTRTAB_MD = $(srcdir)/config/mips/mips-at.md + +# Suppress building libgcc1.a, since the MIPS compiler port is complete +# and does not need anything from libgcc1.a. +LIBGCC1 = libgcc1.null + +mips-tfile: mips-tfile.o version.o $(LIBDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tfile mips-tfile.o version.o $(LIBS) + +mips-tfile.o : mips-tfile.c $(CONFIG_H) $(CONFIG2_H) $(RTL_H) + +mips-tdump: mips-tdump.o version.o $(LIBDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tdump mips-tdump.o version.o $(LIBS) + +mips-tdump.o : mips-tdump.c $(CONFIG_H) $(CONFIG2_H) $(RTL_H) diff --git a/gcc/config/mips/t-svr3-gas b/gcc/config/mips/t-svr3-gas new file mode 100644 index 0000000..2aa856a --- /dev/null +++ b/gcc/config/mips/t-svr3-gas @@ -0,0 +1,7 @@ +# Exactly the same as t-mips-gas, except we must define SYSTEM_HEADER_DIR +# to point to the svr3 include files. +SYSTEM_HEADER_DIR = /sysv/usr/include + +# Suppress building libgcc1.a, since the MIPS compiler port is complete +# and does not need anything from libgcc1.a. +LIBGCC1 = libgcc1.null diff --git a/gcc/config/mips/t-svr4 b/gcc/config/mips/t-svr4 new file mode 100644 index 0000000..d6b28ae --- /dev/null +++ b/gcc/config/mips/t-svr4 @@ -0,0 +1,23 @@ +# Exactly the same as t-mips, except we must define SYSTEM_HEADER_DIR +# to point to the svr4 include files. +SYSTEM_HEADER_DIR = /svr4/usr/include + +EXTRA_PASSES = mips-tfile mips-tdump + +# We have a premade insn-attrtab.c to save the hour it takes to run genattrtab. +# PREMADE_ATTRTAB = $(srcdir)/config/mips/mips-at.c +# PREMADE_ATTRTAB_MD = $(srcdir)/config/mips/mips-at.md + +# Suppress building libgcc1.a, since the MIPS compiler port is complete +# and does not need anything from libgcc1.a. +LIBGCC1 = libgcc1.null + +mips-tfile: mips-tfile.o version.o $(LIBDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tfile mips-tfile.o version.o $(LIBS) + +mips-tfile.o : mips-tfile.c $(CONFIG_H) $(CONFIG2_H) $(RTL_H) + +mips-tdump: mips-tdump.o version.o $(LIBDEPS) + $(CC) $(CFLAGS) $(LDFLAGS) -o mips-tdump mips-tdump.o version.o $(LIBS) + +mips-tdump.o : mips-tdump.c $(CONFIG_H) $(CONFIG2_H) $(RTL_H) diff --git a/gcc/config/mips/t-svr4-gas b/gcc/config/mips/t-svr4-gas new file mode 100644 index 0000000..7eefc5c --- /dev/null +++ b/gcc/config/mips/t-svr4-gas @@ -0,0 +1,7 @@ +# Exactly the same as t-mips-gas, except we must define SYSTEM_HEADER_DIR +# to point to the svr4 include files. +SYSTEM_HEADER_DIR = /svr4/usr/include + +# Suppress building libgcc1.a, since the MIPS compiler port is complete +# and does not need anything from libgcc1.a. +LIBGCC1 = libgcc1.null |