t-stublib 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. LIBGCCSTUB_OBJS = rfi-stub.o dfi-stub.o ritm-stub.o ditm-stub.o \
  2. jvrc-stub.o cxaf-stub.o \
  3. pthread_default_stacksize_np-stub.o \
  4. pthread_mutex_lock-stub.o \
  5. pthread_mutex_unlock-stub.o \
  6. pthread_once-stub.o
  7. rfi-stub.o: $(srcdir)/config/pa/stublib.c
  8. $(gcc_compile) -c -O2 -DL_register_frame_info $<
  9. dfi-stub.o: $(srcdir)/config/pa/stublib.c
  10. $(gcc_compile) -c -O2 -DL_deregister_frame_info $<
  11. ritm-stub.o: $(srcdir)/config/pa/stublib.c
  12. $(gcc_compile) -c -O2 -DL_ITM_registerTMCloneTable $<
  13. ditm-stub.o: $(srcdir)/config/pa/stublib.c
  14. $(gcc_compile) -c -O2 -DL_ITM_deregisterTMCloneTable $<
  15. cxaf-stub.o: $(srcdir)/config/pa/stublib.c
  16. $(gcc_compile) -c -O2 -DL_cxa_finalize $<
  17. jvrc-stub.o: $(srcdir)/config/pa/stublib.c
  18. $(gcc_compile) -c -O2 -DL_Jv_RegisterClasses $<
  19. pthread_default_stacksize_np-stub.o: $(srcdir)/config/pa/stublib.c
  20. $(gcc_compile) -c -O2 -DL_pthread_default_stacksize_np $<
  21. pthread_mutex_lock-stub.o: $(srcdir)/config/pa/stublib.c
  22. $(gcc_compile) -c -O2 -DL_pthread_mutex_lock $<
  23. pthread_mutex_unlock-stub.o: $(srcdir)/config/pa/stublib.c
  24. $(gcc_compile) -c -O2 -DL_pthread_mutex_unlock $<
  25. pthread_once-stub.o: $(srcdir)/config/pa/stublib.c
  26. $(gcc_compile) -c -O2 -DL_pthread_once $<
  27. libgcc_stub.a: $(LIBGCCSTUB_OBJS)
  28. -rm -rf $@
  29. $(AR) rc $@ $(LIBGCCSTUB_OBJS)
  30. $(RANLIB) $@