summaryrefslogtreecommitdiff
path: root/gcc/config/sparc/t-sol2
blob: e810f9480198d930f3d1515e6fddd5e2efcd002e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# we need startup files for solaris, since we don't get them with the system

EXTRA_PARTS=crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o

# we need to supply our own assembly versions of libgcc1.c files,
# since the user may not have native 'cc' available

# ??? This is wrong!
INSTALL_TARGET = install-cross

LIBGCC1 = libgcc1.null

# gmon build rule:
gmon.o:	config/gmon-sol2.c $(GCC_PASSES) $(CONFIG_H)
	$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) \
		-c $(srcdir)/config/gmon-sol2.c -o gmon.o

# Assemble startup files.
crt1.o: config/sol2-crt1.asm
	$(AS) -o crt1.o $(srcdir)/config/sol2-crt1.asm
crti.o: config/sol2-crti.asm
	$(AS) -o crti.o $(srcdir)/config/sol2-crti.asm
crtn.o: config/sol2-crtn.asm
	$(AS) -o crtn.o $(srcdir)/config/sol2-crtn.asm