diff options
author | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-11-17 22:21:03 +0000 |
---|---|---|
committer | dje <dje@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-11-17 22:21:03 +0000 |
commit | 0fbcf7a29328e20cbdeb0176140ad59975b004b3 (patch) | |
tree | 42f583dabab1744434852ca86960ef27e77b1590 /gcc/config/a29k/t-a29kbare | |
parent | 6f973198d6d97d5b6fa63dae9da2bbdbe5489764 (diff) | |
download | gcc-0fbcf7a29328e20cbdeb0176140ad59975b004b3.tar.gz |
Initial revision
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8488 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/a29k/t-a29kbare')
-rw-r--r-- | gcc/config/a29k/t-a29kbare | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gcc/config/a29k/t-a29kbare b/gcc/config/a29k/t-a29kbare new file mode 100644 index 00000000000..2b5c54c816a --- /dev/null +++ b/gcc/config/a29k/t-a29kbare @@ -0,0 +1,16 @@ +LIBGCC1 = libgcc1.null +CROSS_LIBGCC1 = libgcc1.null + +# These are really part of libgcc1, but this will cause them to be +# built correctly, so... + +LIB2FUNCS_EXTRA = fp-bit.c dp-bit.c + +dp-bit.c: $(srcdir)/config/fp-bit.c + cat $(srcdir)/config/fp-bit.c > dp-bit.c + +fp-bit.c: $(srcdir)/config/fp-bit.c + echo '#define FLOAT' > fp-bit.c + cat $(srcdir)/config/fp-bit.c >> fp-bit.c + + |