t-ppccomm 635 B

12345678910111213141516171819202122
  1. LIB2ADD += $(srcdir)/config/rs6000/ibm-ldouble.c \
  2. $(srcdir)/config/rs6000/tramp.S
  3. # This can't end up in shared libgcc
  4. LIB2ADD_ST += \
  5. $(srcdir)/config/rs6000/eabi.S
  6. # We build {e,n}crti.o and {e,n}crtn.o, which serve to add begin and
  7. # end labels to all of the special sections used when we link using gcc.
  8. # Assemble startup files.
  9. ecrti$(objext): $(srcdir)/config/rs6000/eabi-ci.S
  10. $(crt_compile) -c $<
  11. ecrtn$(objext): $(srcdir)/config/rs6000/eabi-cn.S
  12. $(crt_compile) -c $<
  13. ncrti$(objext): $(srcdir)/config/rs6000/sol-ci.S
  14. $(crt_compile) -c $<
  15. ncrtn$(objext): $(srcdir)/config/rs6000/sol-cn.S
  16. $(crt_compile) -c $<