diff options
author | Thomas Bushnell <thomas@gnu.org> | 1996-11-18 23:43:28 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1996-11-18 23:43:28 +0000 |
commit | 75134b8f36fb816af5b9d783b156dd71224ce9dd (patch) | |
tree | f491aaefdeacf37c2a64900dd85b460758fca4a1 /defpager/Makefile | |
parent | e5f12a034cf64425f478aa93cd9c5ea6cc6f4296 (diff) |
*** empty log message ***
Diffstat (limited to 'defpager/Makefile')
-rw-r--r-- | defpager/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/defpager/Makefile b/defpager/Makefile index d774073e..8f92dd7c 100644 --- a/defpager/Makefile +++ b/defpager/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 1995 Free Software Foundation +# Copyright (C) 1995, 1996 Free Software Foundation # Written by Michael I. Bushnell. # # This file is part of the GNU Hurd. @@ -23,4 +23,12 @@ makemode := misc SRCS = defpager.c +subst-functions=__syscall_vm_allocate syscall_vm_allocate \ + __vm_allocate_rpc vm_allocate_rpc \ + __syscall_vm_map syscall_vm_map \ + __vm_map_rpc vm_map_rpc +comma=, +LDFLAGS=-Wl,$(subst :,$(comma),$(strip $(subst-functions))) + include ../Makeconf + |