1MULTILIB_OPTIONS = m64/m32
2MULTILIB_DIRNAMES = 64 32
3MULTILIB_MATCHES =
4
5LIBGCC = stmp-multilib
6INSTALL_LIBGCC = install-multilib
7
8EXTRA_MULTILIB_PARTS=crtbegin.o crtend.o crtbeginS.o crtendS.o
9
10tcrtbeginS.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
11  defaults.h frame.h gbl-ctors.h
12	$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
13	  -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS_S) \
14	  -c $(srcdir)/crtstuff.c -DCRT_BEGIN -o tcrtbeginS$(objext)
15
16tcrtendS.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
17  defaults.h frame.h gbl-ctors.h
18	$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
19	  -finhibit-size-directive -fno-inline-functions -fno-exceptions $(CRTSTUFF_T_CFLAGS_S) \
20	  -c $(srcdir)/crtstuff.c -DCRT_END -o tcrtendS$(objext)
21
22