diff options
Diffstat (limited to 'trans/Makefile')
-rw-r--r-- | trans/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/trans/Makefile b/trans/Makefile index 73bed80a..9b4f4d81 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -18,15 +18,16 @@ dir := trans makemode := servers -SRCS = ifsock.c symlink.c magic.c null.c +SRCS = ifsock.c symlink.c magic.c null.c fifo.c OBJS = $(subst .c,.o,$(SRCS)) fsysServer.o error.o -targets = symlink ifsock magic null +targets = symlink ifsock magic null fifo CPPFLAGS += -I../lib CPPFLAGS += $(CPPFLAGS-$(notdir $<)) vpath %.c ../lib null-HURDLIBS=libtrivfs libports libihash ifsock-HURDLIBS=libtrivfs libports libihash +fifo-HURDLIBS=libpipe libtrivfs libports libihash libthreads include ../Makeconf @@ -34,6 +35,8 @@ symlink: symlink.o fsysServer.o magic: magic.o fsysServer.o error.o +fifo: fifo.o error.o + # The .a files have to be mentioned explicitly due to a make deficiency, # even though they are already specified by null-HURDLIBS above. null: null.o error.o ../libtrivfs/libtrivfs.a ../libports/libports.a \ |