diff options
author | bde <bde@FreeBSD.org> | 1998-03-12 13:03:06 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-03-12 13:03:06 +0000 |
commit | e835626991290ae311309e9b274276c9db189303 (patch) | |
tree | 547fe8070f7a3a1cc78300b70f5ce0ad9a5cb069 /gnu/lib/libgmp/Makefile | |
parent | a7597a1ee0df7a475cf655046aeb783e2e7eee6f (diff) | |
download | FreeBSD-src-e835626991290ae311309e9b274276c9db189303.zip FreeBSD-src-e835626991290ae311309e9b274276c9db189303.tar.gz |
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.
Diffstat (limited to 'gnu/lib/libgmp/Makefile')
-rw-r--r-- | gnu/lib/libgmp/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/lib/libgmp/Makefile b/gnu/lib/libgmp/Makefile index 5e67e9b..8b2b9e2 100644 --- a/gnu/lib/libgmp/Makefile +++ b/gnu/lib/libgmp/Makefile @@ -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 |