mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-25 07:49:18 +00:00
Put sources in SRCS and don't depend on them in beforedepend. IIRC,
this is to fix `make -j50' where `make -j18' worked. The race may just have been more likely to be lost for -j50.
This commit is contained in:
parent
db7662af72
commit
c9cbce0fdb
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=34518
@ -1,5 +1,5 @@
|
||||
#
|
||||
# $Id: Makefile,v 1.14 1997/08/29 14:02:14 peter Exp $
|
||||
# $Id: Makefile,v 1.15 1998/01/25 09:44:18 jb Exp $
|
||||
#
|
||||
|
||||
LIB= gmp
|
||||
@ -83,7 +83,8 @@ MPQ_SRCS= mpq/add.c mpq/canonicalize.c mpq/clear.c mpq/cmp.c \
|
||||
|
||||
SRCS= memory.c mp_set_fns.c mp_clz_tab.c version.c stack-alloc.c mp_bpl.c \
|
||||
extract-double.c insert-double.c \
|
||||
${MPN_SRC_ASM}
|
||||
${MPN_SRC_ASM} \
|
||||
asm-syntax.h sysdep.h
|
||||
|
||||
# Look though the generic C source for names that don't have assembly
|
||||
# source version.
|
||||
@ -116,7 +117,7 @@ CFLAGS+= -DBROKEN_ALIGN
|
||||
|
||||
.endif
|
||||
|
||||
beforedepend all: mpz mpf mpq sysdep.h asm-syntax.h
|
||||
beforedepend all: mpz mpf mpq
|
||||
|
||||
CLEANFILES+= sysdep.h asm-syntax.h
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# $Id: Makefile,v 1.12 1997/08/29 13:58:08 peter Exp $
|
||||
# $Id: Makefile,v 1.13 1998/01/25 09:45:00 jb Exp $
|
||||
#
|
||||
|
||||
LIB= mp
|
||||
@ -47,7 +47,8 @@ MPBSD_SRCS= itom.c mdiv.c mfree.c min.c mout.c move.c mtox.c sdiv.c xtom.c \
|
||||
|
||||
SRCS= memory.c mp_set_fns.c mp_clz_tab.c version.c stack-alloc.c \
|
||||
mp_bpl.c extract-double.c insert-double.c \
|
||||
${MPN_SRC_ASM}
|
||||
${MPN_SRC_ASM} \
|
||||
asm-syntax.h sysdep.h
|
||||
|
||||
# Look though the generic C source for names that don't have assembly
|
||||
# source version.
|
||||
@ -59,7 +60,7 @@ SRCS+=$(_src)
|
||||
|
||||
SRCS+= ${MPBSD_SRCS}
|
||||
|
||||
beforedepend all: mpz sysdep.h asm-syntax.h
|
||||
beforedepend all: mpz
|
||||
|
||||
.if defined(BINFORMAT) && ${BINFORMAT} == elf
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user