diff options
author | Ludovic Courtès <ludo@gnu.org> | 2013-09-15 23:30:31 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2013-09-15 23:33:21 +0200 |
commit | 0d34b03f0e5e5eac5e04c795cce2655b52b7cfc9 (patch) | |
tree | fdc554990c8dd508f79bd2ed3794745f7c485cdf /guile | |
parent | 44c9f12a886c4070b64daeb02e1746351b493aee (diff) | |
download | gnutls-0d34b03f0e5e5eac5e04c795cce2655b52b7cfc9.tar.gz |
guile: Make builds parallel-safe.
Reported by Andreas Metzler <ametzler@bebt.de>.
Diffstat (limited to 'guile')
-rw-r--r-- | guile/src/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/guile/src/Makefile.am b/guile/src/Makefile.am index 10775027d3..28c924f556 100644 --- a/guile/src/Makefile.am +++ b/guile/src/Makefile.am @@ -1,5 +1,5 @@ # GnuTLS --- Guile bindings for GnuTLS. -# Copyright (C) 2007-2012 Free Software Foundation, Inc. +# Copyright (C) 2007-2013 Free Software Foundation, Inc. # # GnuTLS is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -102,7 +102,10 @@ priorities.i.c: $(srcdir)/make-session-priorities.scm snarfcppopts = $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(CFLAGS) $(guile_gnutls_v_2_la_CFLAGS) -.c.x: $(GENERATED_BINDINGS) +# Note: we cannot use the portable ".c.x" form, since that leads +# prerequisites to be ignored: +# <http://lists.gnutls.org/pipermail/gnutls-devel/2013-September/006453.html>. +%.x: %.c $(GENERATED_BINDINGS) $(guile_snarf) -o $@ $< $(snarfcppopts) # Target used by doc/Makefile, to create all built sources necessary |