diff options
-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 |