diff options
author | Miles Bader <miles@gnu.org> | 1997-02-21 21:52:59 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-02-21 21:52:59 +0000 |
commit | 9953e4872f6185e37f363950c251b56a3277d619 (patch) | |
tree | 1f77e7748523928b3293f88fd8bbf180399c098f /trans/Makefile | |
parent | c3adc4a61a1fd0ce270f250248ddab7ca4de6240 (diff) |
(firmlink):
New target.
(SRCS):
Add firmlink.c.
(targets):
Add firmlink.
Diffstat (limited to 'trans/Makefile')
-rw-r--r-- | trans/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/trans/Makefile b/trans/Makefile index 5b5c51cd..e6c3cb35 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 1994, 1995, 1996 Free Software Foundation +# Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -18,9 +18,9 @@ dir := trans makemode := servers -targets = symlink ifsock magic null fifo new-fifo fwd devport crash +targets = symlink firmlink ifsock magic null fifo new-fifo fwd devport crash SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c fwd.c devport.c \ - crash.c + crash.c firmlink.c OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o HURDLIBS=ports trivfs threads fshelp pipe ihash shouldbeinlibc @@ -33,7 +33,7 @@ crash: crashServer.o crash_replyUser.o msgServer.o crash: ../libports/libports.a ../libtrivfs/libtrivfs.a ../libthreads/libthreads.a ../libfshelp/libfshelp.a fifo new-fifo: ../libpipe/libpipe.a fwd new-fifo: ../libfshelp/libfshelp.a ../libports/libports.a -null ifsock fifo new-fifo devport: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a +null ifsock fifo new-fifo devport firmlink: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a ../libports/libports.a ../libihash/libihash.a $(targets): ../libshouldbeinlibc/libshouldbeinlibc.a fwd null ifsock fifo new-fifo devport: ../libthreads/libthreads.a |