I was not aware of any problem, can you please provide some sample? I worked very hard to make it work with automake generation of rules.
Alon. On 10/9/08, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Revision: 3580 > Author: ludovic.rousseau > Date: 2008-10-09 11:02:42 +0200 (Thu, 09 Oct 2008) > > Log Message: > ----------- > make the * targets depend on only one dependency to avoid problems on > concurrent make (-j) > > Modified Paths: > -------------- > trunk/doc/Makefile.am > Modified: trunk/doc/Makefile.am > =================================================================== > --- trunk/doc/Makefile.am 2008-10-09 08:35:32 UTC (rev 3579) > +++ trunk/doc/Makefile.am 2008-10-09 09:02:42 UTC (rev 3580) > @@ -37,7 +37,8 @@ > if SVN_CHECKOUT > if ENABLE_MAN > > -html.out/*: api.work > +html.out/*: html.out > +html.out: api.work > test -n "$(XSLTPROC)" > -rm -fr html.tmp html.out > $(MKDIR_P) html.tmp > @@ -45,7 +46,8 @@ > $(XSLTPROC) --nonet --path "$(srcdir)/api" --xinclude -o > "html.tmp/tools.html" "api.work/html.xsl" "$(srcdir)/tools/tools.xml" > mv html.tmp html.out > > -man.out/*.1: api.work > +man.out/*.1: man.out > +man.out: api.work > test -n "$(XSLTPROC)" > -rm -fr man.tmp man.out > $(MKDIR_P) man.tmp > @@ -100,3 +102,4 @@ > if test -L man.out; then \ > rm -rf man.out; \ > fi > + > > > > _______________________________________________ > opensc-commits mailing list > [EMAIL PROTECTED] > http://www.opensc-project.org/mailman/listinfo/opensc-commits > _______________________________________________ opensc-devel mailing list opensc-devel@lists.opensc-project.org http://www.opensc-project.org/mailman/listinfo/opensc-devel