diff options
author | Roland McGrath <roland@gnu.org> | 2002-06-25 05:06:40 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-06-25 05:06:40 +0000 |
commit | 5f42652415968654b7046ee4549614afc008f16f (patch) | |
tree | 799844f4e1c8d146905c960cc39f44818391bd33 /trans/Makefile | |
parent | 5fb9a5d9994d687ec17d83d3483a17536760d8ed (diff) |
2002-06-14 Roland McGrath <roland@frob.com>
* proxy-defpager.c: New file.
* Makefile (targets, SRCS): Add it.
(proxy-defpager): New target.
(OBJS): Add default_pagerServer.o here.
Diffstat (limited to 'trans/Makefile')
-rw-r--r-- | trans/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/trans/Makefile b/trans/Makefile index 13fb0856..1fc07a3a 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -19,12 +19,13 @@ dir := trans makemode := servers targets = symlink firmlink ifsock magic null fifo new-fifo fwd crash \ - password hello hello-mt streamio fakeroot + password hello hello-mt streamio fakeroot proxy-defpager SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c fwd.c \ - crash.c firmlink.c password.c hello.c hello-mt.c streamio.c fakeroot.c + crash.c firmlink.c password.c hello.c hello-mt.c streamio.c \ + fakeroot.c proxy-defpager.c OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o passwordServer.o \ crashServer.o crash_replyUser.o msgServer.o \ - device_replyServer.o elfcore.o + default_pagerServer.o device_replyServer.o elfcore.o HURDLIBS = threads ports trivfs fshelp pipe ihash shouldbeinlibc password-LDLIBS = $(LIBCRYPT) @@ -37,8 +38,9 @@ ifsock: ifsockServer.o crash: crashServer.o crash_replyUser.o msgServer.o elfcore.o password: passwordServer.o streamio: device_replyServer.o +proxy-defpager: default_pagerServer.o -crash password streamio: ../libthreads/libthreads.a ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.a +proxy-defpager crash password streamio: ../libthreads/libthreads.a ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.a fifo new-fifo: ../libpipe/libpipe.a fwd: ../libfshelp/libfshelp.a ../libports/libports.a hello-mt magic null ifsock fifo new-fifo firmlink: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libthreads/libthreads.a ../libports/libports.a ../libihash/libihash.a |