diff options
author | Miles Bader <miles@gnu.org> | 1995-08-15 17:43:01 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-08-15 17:43:01 +0000 |
commit | d03bdba22629e119e06216348ff01d1923979870 (patch) | |
tree | f5249d85e76883d86998c53538583337266dadf6 | |
parent | aed7623cbbbc21034a5b6ba5cd7cc157f068f860 (diff) |
(SRCS): Add fifo.c.
(targets): Add fifo.
(fifo): New target.
-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 \ |