about summary refs log tree commit diff
path: root/mach/Makefile
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2002-02-17 07:13:23 +0000
committerRoland McGrath <roland@gnu.org>2002-02-17 07:13:23 +0000
commitc12bc232a1d747402e88efc8b4a90e0014f04928 (patch)
tree84ba3d0998be9e63a125c57b7aab6eff2e4c52f5 /mach/Makefile
parentb209e34ad62446d73e5b83ef3cf3a874d2da57d3 (diff)
downloadglibc-c12bc232a1d747402e88efc8b4a90e0014f04928.tar.gz
glibc-c12bc232a1d747402e88efc8b4a90e0014f04928.tar.xz
glibc-c12bc232a1d747402e88efc8b4a90e0014f04928.zip
2002-02-16 Roland McGrath <roland@frob.com>
	* mach/Makefile (routines): Remove bootprivport.
	* mach/bootprivport.c: File removed.  It has never been used.
Diffstat (limited to 'mach/Makefile')
-rw-r--r--mach/Makefile30
1 files changed, 18 insertions, 12 deletions
diff --git a/mach/Makefile b/mach/Makefile
index f13c285fd9..674250c9ad 100644
--- a/mach/Makefile
+++ b/mach/Makefile
@@ -36,29 +36,34 @@ routines = $(mach-syscalls) $(mach-shortcuts) \
 	   mig-alloc mig-dealloc mig-reply \
 	   msg-destroy msgserver \
 	   mach_error errstring error_compat errsystems \
-	   devstream bootprivport setup-thread $(lock)
+	   devstream setup-thread $(lock)
+
 # The RPC interfaces go in a separate library.
 interface-library := libmachuser
-user-interfaces := $(addprefix mach/,mach_interface mach_port mach_host	\
-				     memory_object_user			\
-				     memory_object_default		\
-				     exc mach4				\
-				     default_pager			\
-	            )\
-		   $(addprefix device/,device device_request)
+
 # We produce mach_interface.h from mach.defs because there is already a
 # <mach/mach.h> that is not the interface header (thanks CMU).
+mach-interface-list := $(patsubst mach,mach_interface,$(mach-interface-list))
 mach/mach_interface.defs = mach/mach.defs
+
 # Similarly for memory_object_user vs. memory_object
+mach-interface-list := $(patsubst memory_object,memory_object_user,\
+				  $(mach-interface-list))
 mach/memory_object_user.defs = mach/memory_object.defs
+
+user-interfaces := $(addprefix mach/,$(mach-interface-list)	\
+			       	     mach_port mach_host exc	\
+	            )\
+		   $(addprefix device/,device device_request)
+
 server-interfaces := mach/exc
+
 # It is important that we do not use the wildcard function to expand
 # `err_*.sub'.  Leaving the wildcard allows Make-dist to find all matching
 # files in all sysdep directories.
 distribute += Machrules syscalls.awk shortcut.awk \
 	      errorlib.h err_*.sub errsystems.awk
 
-
 # Clear any environment	value.
 generated =
 
@@ -103,7 +108,7 @@ ifndef mach-shortcuts
 # Forget about mach_interface.defs for this run.  On the next run,
 # $(mach-shortcuts) will be set, and that will change how
 # mach_interface.defs is processed: it will get the -D flags below.
-user-interfaces := $(filter-out mach/mach_interface \
+user-interfaces := $(filter-out $(mach-interface-list:%=mach/%) \
 				mach/mach_port mach/mach_host mach/mach4 \
 				device/device_request,\
 				$(user-interfaces))
@@ -114,7 +119,8 @@ 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
+$(mach-interface-list:%=mach/%.uh) \
+  mach/mach_host.uh mach/mach_port.uh: $(objpfx)mach-syscalls.mk
 
 ifdef mach-shortcuts
 $(mach-shortcuts:%=$(objpfx)%.c): $(objpfx)%.c: shortcut.awk \
@@ -127,7 +133,7 @@ endif	# mach-shortcuts
 
 # Generate mach-shortcuts.h, which will contain the prototypes for the
 # shortcutted kernel RPC functions.
-$(objpfx)mach-shortcuts.h: $(objpfx)mach/mach_interface.h \
+$(objpfx)mach-shortcuts.h: $(mach-interface-list:%=$(objpfx)mach/%.h) \
 			   $(objpfx)mach/mach_host.h \
 			   $(objpfx)mach/mach_port.h
 # The first line gets us one paragraph per line, with @s separating real lines.