Skip to content

Releases: wlandau/parallelRemake

Patch: fix #14

09 Apr 06:27
Compare
Choose a tag to compare

#14 anticipated difficulties with timestamp files and file targets in project subdirectories.

Use system2() not system()

22 Feb 12:12
Compare
Choose a tag to compare

That means makefile(..., command = "make --jobs=2") becomes makefile(..., command = "make", args = "--jobs=2").

Makefiles are no longer standalone!

18 Feb 17:56
Compare
Choose a tag to compare

You must call makefile(...) to run the Makefile. Do not use the command line. The reason is that makefile(...) creates dummy timestamp files so that the Makefile can see which jobs don't need to be run. As a consequence, makefile(...) needs to run an initialization step right before each time the Makefile is called. Otherwise, your build steps will be incorrect. You can just generate the Makefile without running it using makefile(..., run = FALSE).

Fix broken vignette links

19 Nov 11:46
Compare
Choose a tag to compare
v0.0.2

Complete broken sentence

Fix name ordering and point to vignette in help files.

22 Sep 15:48
Compare
Choose a tag to compare

First release

20 Sep 20:40
Compare
Choose a tag to compare
v0.0.0

Refine DESCRIPTION