summaryrefslogtreecommitdiff
path: root/mach
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-07-19 21:51:49 +0000
committerRoland McGrath <roland@gnu.org>1994-07-19 21:51:49 +0000
commitd9246f4e9d3ad60780fc6492e5e0d64c77fbd071 (patch)
tree2e5f46bd4be4690c4348eec451a2b2d817b318e2 /mach
parent31d43e558059cffefe6714a24fce0ef658678b88 (diff)
(%.ir): Match SimpleRoutine as well as Routine comments.
Diffstat (limited to 'mach')
-rw-r--r--mach/Machrules2
1 files changed, 1 insertions, 1 deletions
diff --git a/mach/Machrules b/mach/Machrules
index 37c3056d16..d6def2e49f 100644
--- a/mach/Machrules
+++ b/mach/Machrules
@@ -88,7 +88,7 @@ endif
# intermediate in order to make %.ir and then removed before re-exec, when
# %.uh is built all over again to build %.h.
$(objpfx)%.ir: $(objpfx)%.uh $(objpfx)%.h
- (awk "NF == 4 && \$$2 == \"Routine\" \
+ (awk "NF == 4 && (\$$2 == \"Routine\" || \$$2 == \"SimpleRoutine\")\
{ printf \"$*-calls += %s\\n\", \$$3 } \
/^#include/ { printf \"$*-imports += %s\\n\", \$$2 }" $< ;\
echo '$$($*-calls:%=$$(objpfx)R\%C_%.c): $$(objpfx)$*.ustamp ;';\