home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 7 / FreshFishVol7.bin / bbs / gnu / gcc-2.3.3-src.lha / GNU / src / amiga / gcc-2.3.3 / config / t-sol2 < prev    next >
Text File  |  1994-02-06  |  744b  |  25 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. # ??? This is wrong!
  9. INSTALL_TARGET = install-cross
  10.  
  11. LIBGCC1 = libgcc1.null
  12.  
  13. # gmon build rule:
  14. gmon.o:    config/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
  15.     $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
  16.         -c $(srcdir)/config/gmon-sol2.c -o gmon.o
  17.  
  18. # Assemble startup files.
  19. crt1.o: config/sol2-c1.asm
  20.     $(AS) -o crt1.o $(srcdir)/config/sol2-c1.asm
  21. crti.o: config/sol2-ci.asm
  22.     $(AS) -o crti.o $(srcdir)/config/sol2-ci.asm
  23. crtn.o: config/sol2-cn.asm
  24.     $(AS) -o crtn.o $(srcdir)/config/sol2-cn.asm
  25.