[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 3/5] Makeconf: Add mach_i386 defs
From: |
Damien Zammit |
Subject: |
[PATCH v2 3/5] Makeconf: Add mach_i386 defs |
Date: |
Sat, 25 Jul 2020 11:18:45 +1000 |
---
Makeconf | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Makeconf b/Makeconf
index f68ff6e3..b4a5dbd5 100644
--- a/Makeconf
+++ b/Makeconf
@@ -582,15 +582,19 @@ mach_defs_names = bootstrap exc mach mach4 \
gnumach \
task_notify \
+mach_i386_defs_names = mach_i386
mach_debug_defs_names = mach_debug
device_defs_names = dev_forward device device_reply device_request
mach_defs = $(addsuffix .defs,$(mach_defs_names))
+mach_i386_defs = $(addsuffix .defs,$(mach_i386_defs_names))
mach_debug_defs = $(addsuffix .defs,$(mach_debug_defs_names))
device_defs = $(addsuffix .defs,$(device_defs_names))
$(mach_defs): %.defs:
echo '#include <mach/$@>' > $@
+$(mach_i386_defs): %.defs:
+ echo '#include <mach/i386/$@>' > $@
$(mach_debug_defs): %.defs:
echo '#include <mach_debug/$@>' > $@
$(device_defs): %.defs:
--
2.25.1