home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 4 / FreshFish_May-June1994.bin / bbs / gnu / gcc-2.5.8-src.lha / src / amiga / gcc-2.5.8 / config / sparc / t-sol2 < prev    next >
Encoding:
Text File  |  1993-09-10  |  808 b   |  23 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. CROSS_LIBGCC1 = libgcc1.null
  10.  
  11. # gmon build rule:
  12. gmon.o:    $(srcdir)/config/sparc/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
  13.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
  14.         -c $(srcdir)/config/sparc/gmon-sol2.c -o gmon.o
  15.  
  16. # Assemble startup files.
  17. crt1.o: $(srcdir)/config/sparc/sol2-c1.asm
  18.     $(AS) -o crt1.o $(srcdir)/config/sparc/sol2-c1.asm
  19. crti.o: $(srcdir)/config/sparc/sol2-ci.asm
  20.     $(AS) -o crti.o $(srcdir)/config/sparc/sol2-ci.asm
  21. crtn.o: $(srcdir)/config/sparc/sol2-cn.asm
  22.     $(AS) -o crtn.o $(srcdir)/config/sparc/sol2-cn.asm
  23.