diff options
author | Miles Bader <miles@gnu.org> | 1995-04-05 13:32:06 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-04-05 13:32:06 +0000 |
commit | 9f29200ba50b25a3a61f504753f127f9bbce5032 (patch) | |
tree | 5e86092b11d7325cdc389227cf0c5ced4a9ea691 /proc/Makefile | |
parent | 66c1fc6cef92722dac6798ec3c55b383905bb1b8 (diff) |
Use the hashing routines from ../lib/ihash.c.
Diffstat (limited to 'proc/Makefile')
-rw-r--r-- | proc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/proc/Makefile b/proc/Makefile index 510145f7..f295ea2d 100644 --- a/proc/Makefile +++ b/proc/Makefile @@ -21,7 +21,7 @@ makemode := server MIGSFLAGS ="-DPROCESS_INTRAN=pstruct_t reqport_find (process_t)" \ "-DPROCESS_IMPORTS=import \"proc.h\";" -OBJS = wait.o hash.o host.o info.o main.o mgt.o notify.o pgrp.o msg.o \ +OBJS = wait.o hash.o ihash.o host.o info.o main.o mgt.o notify.o pgrp.o msg.o \ primes.o cpu-types.o stubs.o \ processServer.o notifyServer.o process_replyUser.o ourmsgUser.o \ interruptServer.o proc_excUser.o proc_excServer.o proc_excreplUser.o \ @@ -30,6 +30,9 @@ OBJS = wait.o hash.o host.o info.o main.o mgt.o notify.o pgrp.o msg.o \ SRCS = wait.c hash.c host.c info.c main.c mgt.c notify.c pgrp.c msg.c \ primes.c cpu-types.c stubs.c +CPPFLAGS += -I../lib +vpath %.c ../lib + LCLHDRS = proc.h REMHDRS = ../libthreads/cthreads.h HURDLIBS = libthreads |