diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-08 21:25:54 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1993-08-08 21:25:54 +0000 |
commit | 762b26eb002c595281e6b87a95403af5867a21fe (patch) | |
tree | d9e88a74ba1671cabcb391bc9ff5d0b910a4538c /gcc | |
parent | 9282409c65df73a3566e91d5f5a8689a7e683fff (diff) | |
download | gcc-762b26eb002c595281e6b87a95403af5867a21fe.tar.gz |
New file.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@5109 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-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 00000000000..693995e9d4e --- /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 00000000000..c149fdf7bf5 --- /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 00000000000..51f59eacfec --- /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 00000000000..2aa856a963f --- /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 00000000000..d6b28ae1870 --- /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 00000000000..7eefc5c1c13 --- /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 |