diff options
author | Miles Bader <miles@gnu.org> | 1996-08-14 14:25:34 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1996-08-14 14:25:34 +0000 |
commit | c8a38642b0c4808edc3eb27e91f25c8fd2f090af (patch) | |
tree | c3d73fff36666a49e66c62c8870d6a9740d96325 /init/Makefile | |
parent | 2731414ffa9a42d49e47c5d9c18493a070000baf (diff) |
(LDLIBS): New variable.
(init): Dependcy on -lutil removed.
(libutil-libsubst): Variable removed.
Diffstat (limited to 'init/Makefile')
-rw-r--r-- | init/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/init/Makefile b/init/Makefile index 91e3e16b..0724c408 100644 --- a/init/Makefile +++ b/init/Makefile @@ -22,9 +22,10 @@ SRCS = init.c OBJS = init.o startupServer.o notifyServer.o startup_replyUser.o msgServer.o \ startup_notifyUser.o target = init -libutil-libsubst = -lutil -init: $(OBJS) ../libports/libports.a ../libfshelp/libfshelp.a ../libshouldbeinlibc/libshouldbeinlibc.a -lutil +LDLIBS=-lutil + +init: $(OBJS) ../libports/libports.a ../libfshelp/libfshelp.a ../libshouldbeinlibc/libshouldbeinlibc.a mung_msg_S.h: msg_S.h sed 's/msg_server/mung_msg_server/' < $< > $@ |