--- exec/Makefile | 2 +- ext2fs/Makefile | 3 ++- startup/Makefile | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/exec/Makefile b/exec/Makefile index 890ee4b..f975632 100644 --- a/exec/Makefile +++ b/exec/Makefile @@ -22,7 +22,7 @@ makemode := server SRCS = exec.c main.c hashexec.c hostarch.c OBJS = main.o hostarch.o exec.o hashexec.o \ - execServer.o exec_startupServer.o + execServer.o exec_startupServer.o processUser.o target = exec #targets = exec exec.static diff --git a/ext2fs/Makefile b/ext2fs/Makefile index 983dbee..7a14550 100644 --- a/ext2fs/Makefile +++ b/ext2fs/Makefile @@ -21,7 +21,8 @@ makemode := server target = ext2fs SRCS = balloc.c dir.c ext2fs.c getblk.c hyper.c ialloc.c \ - inode.c pager.c pokel.c truncate.c storeinfo.c msg.c xinl.c + inode.c pager.c pokel.c truncate.c storeinfo.c msg.c xinl.c \ + processUser.o OBJS = $(SRCS:.c=.o) HURDLIBS = diskfs pager iohelp fshelp store ports ihash shouldbeinlibc OTHERLIBS = -lpthread diff --git a/startup/Makefile b/startup/Makefile index 23d35cb..d7e398a 100644 --- a/startup/Makefile +++ b/startup/Makefile @@ -21,7 +21,7 @@ makemode := server SRCS = startup.c OBJS = $(SRCS:.c=.o) \ startupServer.o notifyServer.o startup_replyUser.o msgServer.o \ - startup_notifyUser.o fsysServer.o + startup_notifyUser.o fsysServer.o processUser.o target = startup HURDLIBS = shouldbeinlibc -- 1.7.10.4