Deleted Added
full compact
Makefile (183440) Makefile (188895)
1# $FreeBSD: head/gnu/lib/csu/Makefile 183440 2008-09-28 19:17:54Z marcel $
1# $FreeBSD: head/gnu/lib/csu/Makefile 188895 2009-02-21 15:04:31Z ru $
2
2
3.include <bsd.own.mk>
4MK_SSP= no
5
3GCCDIR= ${.CURDIR}/../../../contrib/gcc
4GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
5CCDIR= ${.CURDIR}/../../usr.bin/cc
6.include "${CCDIR}/Makefile.tgt"
7
8.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}
9
10SRCS= crtstuff.c tconfig.h tm.h options.h
11OBJS= crtbegin.o crtend.o crtbeginT.o
12SOBJS= crtbegin.So crtend.So
13CSTD?= gnu89
14CFLAGS+= -DIN_GCC -DHAVE_LD_EH_FRAME_HDR -DDT_CONFIG -D__GLIBC__=3
15CFLAGS+= -finhibit-size-directive -fno-inline-functions \
16 -fno-exceptions -fno-zero-initialized-in-bss \
17 -fno-zero-initialized-in-bss -fno-toplevel-reorder
18CFLAGS+= -I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I. \
19 -I${CCDIR}/cc_tools
20CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG}
21MKDEP= -DCRT_BEGIN
6GCCDIR= ${.CURDIR}/../../../contrib/gcc
7GCCLIB= ${.CURDIR}/../../../contrib/gcclibs
8CCDIR= ${.CURDIR}/../../usr.bin/cc
9.include "${CCDIR}/Makefile.tgt"
10
11.PATH: ${GCCDIR}/config/${GCC_CPU} ${GCCDIR}
12
13SRCS= crtstuff.c tconfig.h tm.h options.h
14OBJS= crtbegin.o crtend.o crtbeginT.o
15SOBJS= crtbegin.So crtend.So
16CSTD?= gnu89
17CFLAGS+= -DIN_GCC -DHAVE_LD_EH_FRAME_HDR -DDT_CONFIG -D__GLIBC__=3
18CFLAGS+= -finhibit-size-directive -fno-inline-functions \
19 -fno-exceptions -fno-zero-initialized-in-bss \
20 -fno-zero-initialized-in-bss -fno-toplevel-reorder
21CFLAGS+= -I${GCCLIB}/include -I${GCCDIR}/config -I${GCCDIR} -I. \
22 -I${CCDIR}/cc_tools
23CRTS_CFLAGS= -DCRTSTUFFS_O -DSHARED ${PICFLAG}
24MKDEP= -DCRT_BEGIN
22WITHOUT_SSP=
23
24.if ${MACHINE_ARCH} == "ia64"
25BEGINSRC= crtbegin.asm
26ENDSRC= crtend.asm
27CFLAGS+= -x assembler-with-cpp # Ugly hack
28CFLAGS+= -include osreldate.h
29.undef SRCS # hack for 'make depend'
30.endif

--- 47 unchanged lines hidden ---
25
26.if ${MACHINE_ARCH} == "ia64"
27BEGINSRC= crtbegin.asm
28ENDSRC= crtend.asm
29CFLAGS+= -x assembler-with-cpp # Ugly hack
30CFLAGS+= -include osreldate.h
31.undef SRCS # hack for 'make depend'
32.endif

--- 47 unchanged lines hidden ---