8sa1-gcc/gcc/config/sparc/t-sol2

23 lines
808 B
Plaintext
Raw Normal View History

1992-07-20 00:05:11 -04:00
# we need startup files for solaris, since we don't get them with the system
EXTRA_PARTS=crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o
1992-07-20 00:05:11 -04:00
# we need to supply our own assembly versions of libgcc1.c files,
# since the user may not have native 'cc' available
LIBGCC1 = libgcc1.null
CROSS_LIBGCC1 = libgcc1.null
1992-07-20 00:05:11 -04:00
# gmon build rule:
gmon.o: $(srcdir)/config/sparc/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
1992-07-20 00:05:11 -04:00
$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
-c $(srcdir)/config/sparc/gmon-sol2.c -o gmon.o
# Assemble startup files.
crt1.o: $(srcdir)/config/sparc/sol2-c1.asm
$(AS) -o crt1.o $(srcdir)/config/sparc/sol2-c1.asm
crti.o: $(srcdir)/config/sparc/sol2-ci.asm
$(AS) -o crti.o $(srcdir)/config/sparc/sol2-ci.asm
crtn.o: $(srcdir)/config/sparc/sol2-cn.asm
$(AS) -o crtn.o $(srcdir)/config/sparc/sol2-cn.asm