diff options
author | Roland McGrath <roland@gnu.org> | 2002-05-03 12:53:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2002-05-03 12:53:45 +0000 |
commit | 158591438b31233a057c5a1fc8e9f768ed56f6ca (patch) | |
tree | c1e81ef03594632f92567c774b4b6e64e5bec0ce | |
parent | 4f1647c0e5dc7d5ae14c0132c757e621a662fc2c (diff) |
2002-05-03 Roland McGrath <roland@frob.com>
* Makefile (fakeroot): New target.
(targets): Add it.
(SRCS): Add fakeroot.c.
* fakeroot.c: New file.
-rw-r--r-- | trans/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/trans/Makefile b/trans/Makefile index ed5e36f4..13fb0856 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -19,9 +19,9 @@ dir := trans makemode := servers targets = symlink firmlink ifsock magic null fifo new-fifo fwd crash \ - password hello hello-mt streamio + password hello hello-mt streamio fakeroot 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 + crash.c firmlink.c password.c hello.c hello-mt.c streamio.c fakeroot.c OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o passwordServer.o \ crashServer.o crash_replyUser.o msgServer.o \ device_replyServer.o elfcore.o @@ -43,6 +43,7 @@ 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 hello: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a +fakeroot: ../libnetfs/libnetfs.a ../libfshelp/libfshelp.a ../libiohelp/libiohelp.a ../libthreads/libthreads.a ../libports/libports.a ../libihash/libihash.a $(targets): ../libshouldbeinlibc/libshouldbeinlibc.a $(targets): %: %.o |