summaryrefslogtreecommitdiff
path: root/trans
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1995-08-15 17:43:01 +0000
committerMiles Bader <miles@gnu.org>1995-08-15 17:43:01 +0000
commitd03bdba22629e119e06216348ff01d1923979870 (patch)
treef5249d85e76883d86998c53538583337266dadf6 /trans
parentaed7623cbbbc21034a5b6ba5cd7cc157f068f860 (diff)
(SRCS): Add fifo.c.
(targets): Add fifo. (fifo): New target.
Diffstat (limited to 'trans')
-rw-r--r--trans/Makefile7
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 \