diff options
Diffstat (limited to 'mach')
-rw-r--r-- | mach/Machrules | 4 | ||||
-rw-r--r-- | mach/Makefile | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/mach/Machrules b/mach/Machrules index 4bde0fe8b4..2cb3158bbd 100644 --- a/mach/Machrules +++ b/mach/Machrules @@ -149,14 +149,14 @@ $(objpfx)%.uh:; $(mig.uh) define mig.uh $(make-target-directory) $(include-%.defs) | \ -$(MIG) - /dev/null $(MIGFLAGS) \ +$(MIG) - /dev/null $(MIGFLAGS) $(user-MIGFLAGS) $(MIGFLAGS-$*) \ -header $@ -server /dev/null -user /dev/null endef $(objpfx)%.__h:; $(mig.__h) define mig.__h $(make-target-directory) $(include-%.defs) | \ -$(MIG) - /dev/null $(MIGFLAGS) -prefix __ \ +$(MIG) - /dev/null $(MIGFLAGS) $(user-MIGFLAGS) $(MIGFLAGS-$*) -prefix __ \ -header $@ -server /dev/null -user /dev/null endef diff --git a/mach/Makefile b/mach/Makefile index 31ec7e0eae..6d9e6b2904 100644 --- a/mach/Makefile +++ b/mach/Makefile @@ -107,6 +107,9 @@ user-interfaces := $(filter-out mach/mach_interface \ $(user-interfaces)) endif +# For some reason, the calls in this file are `protected' by an ifdef. +MIGFLAGS-mach/mach4=-DMACH_PCSAMPLE + # Make the MiG stubs for $(mach-shortcuts) be CALL_rpc. migdefines += $(foreach call,$(mach-shortcuts),-D$(call)=$(call)_rpc) mach/mach_interface.uh mach/mach_host.uh mach/mach_port.uh: $(objpfx)mach-syscalls.mk |