diff options
author | David Michael <fedora.dm0@gmail.com> | 2014-06-16 15:08:06 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2014-06-17 23:53:39 +0200 |
commit | fda66d0405f0fdf42cc6c7ae5e494c4ca3c83ad7 (patch) | |
tree | 70d2e7f278da50abb560f507b0ea5ddf78bb80b3 /Makeconf | |
parent | 6e047f852cb052cf4cbc50799373c5f13382540d (diff) | |
download | hurd-fda66d0405f0fdf42cc6c7ae5e494c4ca3c83ad7.tar.gz hurd-fda66d0405f0fdf42cc6c7ae5e494c4ca3c83ad7.tar.bz2 hurd-fda66d0405f0fdf42cc6c7ae5e494c4ca3c83ad7.zip |
Add mach_debug defs rules
* Makeconf (mach_debug_defs_names,mach_debug_defs): New variables.
* Makeconf: Add rule to generate local $(mach_debug_defs) files.
* procfs/Makefile: Remove vpath for mach_debug defs.
Diffstat (limited to 'Makeconf')
-rw-r--r-- | Makeconf | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -576,13 +576,17 @@ vpath %.defs $(top_srcdir)/hurd mach_defs_names = bootstrap exc mach mach4 \ mach_host mach_port mach_timer_reply memory_object \ memory_object_default notify +mach_debug_defs_names = mach_debug device_defs_names = dev_forward device device_reply device_request mach_defs = $(addsuffix .defs,$(mach_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_debug_defs): %.defs: + echo '#include <mach_debug/$@>' > $@ $(device_defs): %.defs: echo '#include <device/$@>' > $@ |