Deleted Added
full compact
Makefile (42450) Makefile (45171)
1#
1#
2# $Id: Makefile,v 1.18 1998/10/06 11:28:29 peter Exp $
2# $Id: Makefile,v 1.19 1999/01/09 21:50:55 jdp Exp $
3#
4
3#
4
5GCCDIR= ${.CURDIR}/../../../contrib/gcc
6.PATH: ${GCCDIR}/cp ${GCCDIR}
7
5LIB= gcc
6
7# Install libgcc_pic.a, since ld.so uses it.
8INSTALL_PIC_ARCHIVE= yes
9
10#
11# XXX This is a hack, but it seems to work. libgcc1.a is supposed to be
12# compiled by the native compiler, and libgcc2.a is meant to be compiled

--- 27 unchanged lines hidden (view full) ---

40 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
41 _fixtfdi _fixunstfdi _floatditf \
42 __gcc_bcmp _varargs _eprintf _op_new _op_vnew _new_handler \
43 _op_delete \
44 _op_vdel _bb _shtab _clear_cache _trampoline __main _exit _ctors \
45 _eh _pure
46
47COMMONHDRS= config.h tconfig.h tm.h
8LIB= gcc
9
10# Install libgcc_pic.a, since ld.so uses it.
11INSTALL_PIC_ARCHIVE= yes
12
13#
14# XXX This is a hack, but it seems to work. libgcc1.a is supposed to be
15# compiled by the native compiler, and libgcc2.a is meant to be compiled

--- 27 unchanged lines hidden (view full) ---

43 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
44 _fixtfdi _fixunstfdi _floatditf \
45 __gcc_bcmp _varargs _eprintf _op_new _op_vnew _new_handler \
46 _op_delete \
47 _op_vdel _bb _shtab _clear_cache _trampoline __main _exit _ctors \
48 _eh _pure
49
50COMMONHDRS= config.h tconfig.h tm.h
48CFLAGS+= -I.
51CFLAGS+= -I${GCCDIR}/config -I.
49CLEANFILES+= ${COMMONHDRS}
50
51LIB1OBJS= ${LIB1FUNCS:S/$/.o/}
52LIB2OBJS= ${LIB2FUNCS:S/$/.o/}
53LIB1SOBJS= ${LIB1FUNCS:S/$/.So/}
54LIB2SOBJS= ${LIB2FUNCS:S/$/.So/}
55LIB1POBJS= ${LIB1FUNCS:S/$/.po/}
56LIB2POBJS= ${LIB2FUNCS:S/$/.po/}

--- 46 unchanged lines hidden ---
52CLEANFILES+= ${COMMONHDRS}
53
54LIB1OBJS= ${LIB1FUNCS:S/$/.o/}
55LIB2OBJS= ${LIB2FUNCS:S/$/.o/}
56LIB1SOBJS= ${LIB1FUNCS:S/$/.So/}
57LIB2SOBJS= ${LIB2FUNCS:S/$/.So/}
58LIB1POBJS= ${LIB1FUNCS:S/$/.po/}
59LIB2POBJS= ${LIB2FUNCS:S/$/.po/}

--- 46 unchanged lines hidden ---