diff options
author | Miles Bader <miles@gnu.org> | 1995-09-22 20:59:56 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-09-22 20:59:56 +0000 |
commit | b0d23321686e6d87f479dac0f475423b230ce551 (patch) | |
tree | 3413cc6ab79699335250511fc092073394a64ebe /trans | |
parent | 8f830be14bf16e93b17e6cf461ec657d051350fb (diff) |
(targets): Add new-fifo
(SRCS): Add new-fifo.c
(new-fifo): New target.
Diffstat (limited to 'trans')
-rw-r--r-- | trans/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/trans/Makefile b/trans/Makefile index a022fb46..8636050e 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -18,16 +18,18 @@ dir := trans makemode := servers -targets = symlink ifsock magic null fifo -SRCS = ifsock.c symlink.c magic.c null.c fifo.c +targets = symlink ifsock magic null fifo new-fifo +SRCS = ifsock.c symlink.c magic.c null.c fifo.c new-fifo.c OBJS = $(SRCS:.c=.o) fsysServer.o ifsockServer.o all: $(targets) symlink magic: fsysServer.o ifsock: ifsockServer.o -fifo: ../libpipe/libpipe.a ../libthreads/libthreads.a -null ifsock fifo: ../libtrivfs/libtrivfs.a ../libports/libports.a ../libihash/libihash.a +fifo new-fifo: ../libpipe/libpipe.a +new-fifo: ../libfshelp/libfshelp.a +null ifsock fifo new-fifo: ../libtrivfs/libtrivfs.a ../libports/libports.a ../libihash/libihash.a $(targets): ../libshouldbeinlibc/libshouldbeinlibc.a +null ifsock fifo new-fifo: ../libthreads/libthreads.a include ../Makeconf |