1992-07-20 00:05:11 -04:00
|
|
|
# we need startup files for solaris, since we don't get them with the system
|
|
|
|
|
1992-10-13 14:56:57 -04:00
|
|
|
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
|
|
|
|
|
|
|
|
# ??? This is wrong!
|
|
|
|
INSTALL_TARGET = install-cross
|
|
|
|
|
|
|
|
LIBGCC1 = libgcc1.null
|
|
|
|
|
|
|
|
# gmon build rule:
|
1992-09-02 00:16:01 -04:00
|
|
|
gmon.o: config/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
|
1992-07-20 00:05:11 -04:00
|
|
|
$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
|
1992-09-02 00:16:01 -04:00
|
|
|
-c $(srcdir)/config/gmon-sol2.c -o gmon.o
|
1992-07-20 00:10:32 -04:00
|
|
|
|
|
|
|
# Assemble startup files.
|
1992-11-01 03:30:35 -05:00
|
|
|
crt1.o: config/sol2-c1.asm
|
|
|
|
$(AS) -o crt1.o $(srcdir)/config/sol2-c1.asm
|
|
|
|
crti.o: config/sol2-ci.asm
|
|
|
|
$(AS) -o crti.o $(srcdir)/config/sol2-ci.asm
|
|
|
|
crtn.o: config/sol2-cn.asm
|
|
|
|
$(AS) -o crtn.o $(srcdir)/config/sol2-cn.asm
|