mirror of
https://gcc.gnu.org/git/gcc.git
synced 2025-01-10 21:13:46 +08:00
16 lines
729 B
Plaintext
16 lines
729 B
Plaintext
|
CUSTOM_CRTSTUFF = yes
|
||
|
|
||
|
# Assemble startup files.
|
||
|
crtbegin.o: $(gcc_srcdir)/config/ia64/crtbegin.asm
|
||
|
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \
|
||
|
-o $@ $(gcc_srcdir)/config/ia64/crtbegin.asm
|
||
|
crtend.o: $(gcc_srcdir)/config/ia64/crtend.asm
|
||
|
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \
|
||
|
-o $@ $(gcc_srcdir)/config/ia64/crtend.asm
|
||
|
crtbeginS.o: $(gcc_srcdir)/config/ia64/crtbegin.asm
|
||
|
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \
|
||
|
-o $@ -DSHARED $(gcc_srcdir)/config/ia64/crtbegin.asm
|
||
|
crtendS.o: $(gcc_srcdir)/config/ia64/crtend.asm
|
||
|
$(CC) $(compile_deps) -I. -I$(gcc_objdir) -c -x assembler-with-cpp \
|
||
|
-o $@ -DSHARED $(gcc_srcdir)/config/ia64/crtend.asm
|