From a254817b087d2baaf77cce8bca01ec86403c4efb Mon Sep 17 00:00:00 2001 From: peter Date: Fri, 17 May 2002 08:59:13 +0000 Subject: Move LIB1ASMFUNCS from the SYMS variable and explicitly add it to OBJS later. Otherwise make will try and build the supposedly assembler .o files from libgcc2.c - which does not work too well (the .o's have no content) Reviewed by: obrien --- gnu/lib/libgcc/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gnu/lib/libgcc') diff --git a/gnu/lib/libgcc/Makefile b/gnu/lib/libgcc/Makefile index 14cf2b5..d0ac364 100644 --- a/gnu/lib/libgcc/Makefile +++ b/gnu/lib/libgcc/Makefile @@ -169,8 +169,7 @@ ASM_T= ${LIB1ASMFUNCS:S/$/.o/} ASM_P= ${LIB1ASMFUNCS:S/$/.po/} ASM_S= ${LIB1ASMFUNCS:S/$/.So/} -SYMS= ${LIB1ASMFUNCS} \ - ${LIB2FUNCS_1} \ +SYMS= ${LIB2FUNCS_1} \ ${LIB2FUNCS_2} \ ${LIB2_DIVMOD_FUNCS} .if ${TARGET_ARCH} == "arm" || ${TARGET_ARCH} == "powerpc" || ${TARGET_ARCH} == "sparc64" @@ -178,7 +177,7 @@ SYMS+= ${FPBIT_FUNCS} ${DPBIT_FUNCS} .endif SYMS_ST= ${LIB2FUNCS_ST} \ ${LIB2ADD_ST} -OBJS+= ${SYMS:S/$/.o/} +OBJS+= ${SYMS:S/$/.o/} ${LIB1ASMFUNCS:S/$/.o/} OBJS_T= ${SYMS:S/$/.o/} ${SYMS_ST:S/$/.o/} OBJS_P= ${SYMS:S/$/.po/} ${SYMS_ST:S/$/.po/} OBJS_S= ${SYMS:S/$/.So/} -- cgit v1.1