summaryrefslogtreecommitdiff
path: root/dep.h
diff options
context:
space:
mode:
authorIgor Pashev <pashev.igor@gmail.com>2015-03-24 22:30:52 +0300
committerIgor Pashev <pashev.igor@gmail.com>2015-03-24 22:52:20 +0300
commitf312d23f4598097b56883d95d598dc4b502498b7 (patch)
tree406dc4a095d1b5ba70afb08953c786b370dbf351 /dep.h
parent5e4b4e1c1142a747fa1ba6286639b4d82d80f4ce (diff)
downloadgunmake-master.tar.gz
Implemented .WAITHEADmaster
Based on this patch: http://lists.gnu.org/archive/html/help-make/2005-04/msg00091.html Test file (wait.mk): simple: 1 .WAIT 2 @echo $@ 1: @sleep 2; echo $@ 2: @echo $@ run: ./make --sun -f wait.mk -j50 simple Output: 1 2 simple
Diffstat (limited to 'dep.h')
-rw-r--r--dep.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/dep.h b/dep.h
index b8c0d29..7551e63 100644
--- a/dep.h
+++ b/dep.h
@@ -42,6 +42,7 @@ struct dep
unsigned int staticpattern : 1;
unsigned int need_2nd_expansion : 1;
unsigned int dontcare : 1;
+ unsigned int wait : 1;
};