home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / gnu / gcc-2.4.5 / config / sparc / t-sol2 < prev    next >
Encoding:
Text File  |  1993-02-02  |  779 b   |  22 lines

  1. # we need startup files for solaris, since we don't get them with the system
  2.  
  3. EXTRA_PARTS=crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o
  4.  
  5. # we need to supply our own assembly versions of libgcc1.c files,
  6. # since the user may not have native 'cc' available
  7.  
  8. LIBGCC1 = libgcc1.null
  9.  
  10. # gmon build rule:
  11. gmon.o:    $(srcdir)/config/sparc/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
  12.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
  13.         -c $(srcdir)/config/sparc/gmon-sol2.c -o gmon.o
  14.  
  15. # Assemble startup files.
  16. crt1.o: $(srcdir)/config/sparc/sol2-c1.asm
  17.     $(AS) -o crt1.o $(srcdir)/config/sparc/sol2-c1.asm
  18. crti.o: $(srcdir)/config/sparc/sol2-ci.asm
  19.     $(AS) -o crti.o $(srcdir)/config/sparc/sol2-ci.asm
  20. crtn.o: $(srcdir)/config/sparc/sol2-cn.asm
  21.     $(AS) -o crtn.o $(srcdir)/config/sparc/sol2-cn.asm
  22.