diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1992-12-31 14:34:56 -0800 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1992-12-31 14:34:56 -0800 |
commit | 7e1909ee7f0706d38eaba1a9f5d75cb06299239c (patch) | |
tree | 936ede9f41b4c9575ef30f508d5fe696c5116c44 | |
parent | b6983ae362bd4118e1ddc74392fa2f54d56e6527 (diff) | |
download | gcc-7e1909ee7f0706d38eaba1a9f5d75cb06299239c.zip gcc-7e1909ee7f0706d38eaba1a9f5d75cb06299239c.tar.gz gcc-7e1909ee7f0706d38eaba1a9f5d75cb06299239c.tar.bz2 |
(gmon.o, crt*.o): Change config to $(srcdir)/config.
From-SVN: r3032
-rw-r--r-- | gcc/config/sparc/t-sol2 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/sparc/t-sol2 b/gcc/config/sparc/t-sol2 index 419d5eb..8efea8d 100644 --- a/gcc/config/sparc/t-sol2 +++ b/gcc/config/sparc/t-sol2 @@ -11,14 +11,14 @@ INSTALL_TARGET = install-cross LIBGCC1 = libgcc1.null # gmon build rule: -gmon.o: config/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H) +gmon.o: $(srcdir)/config/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H) $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \ -c $(srcdir)/config/gmon-sol2.c -o gmon.o # Assemble startup files. -crt1.o: config/sol2-c1.asm +crt1.o: $(srcdir)/config/sol2-c1.asm $(AS) -o crt1.o $(srcdir)/config/sol2-c1.asm -crti.o: config/sol2-ci.asm +crti.o: $(srcdir)/config/sol2-ci.asm $(AS) -o crti.o $(srcdir)/config/sol2-ci.asm -crtn.o: config/sol2-cn.asm +crtn.o: $(srcdir)/config/sol2-cn.asm $(AS) -o crtn.o $(srcdir)/config/sol2-cn.asm |