diff options
author | Roland McGrath <roland@gnu.org> | 1999-06-18 22:04:43 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-06-18 22:04:43 +0000 |
commit | 2f35e2d596ab2b2fcfdd3460488a1485a13e85ec (patch) | |
tree | f96491dcc830f1e1a06a4b0e96da101ed86e1a56 | |
parent | ec04debfab755b1a3eeee2c11c33d7903bcaefd5 (diff) |
1999-06-18 Roland McGrath <roland@baalperazim.frob.com>
* runsystem.sh: New file.
* Makefile (targets, special-targets): Add runsystem.
(runsystem): New target.
1999-06-15 Roland McGrath <roland@baalperazim.frob.com>
* runttys.c: New file.c
* Makefile (targets, SRCS): Add runttys, runttys.c.
(runttys): New target.
(runttys-LDLIBS): New variable, -lutil.
* console-run.c: New file.
* Makefile (targets, SRCS): Add console-run, console-run.c.
(console-run): New target.
-rw-r--r-- | daemons/Makefile | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/daemons/Makefile b/daemons/Makefile index 6a6075d4..72394733 100644 --- a/daemons/Makefile +++ b/daemons/Makefile @@ -1,6 +1,6 @@ # Makefile for daemons -# -# Copyright (C) 1996 Free Software Foundation +# +# Copyright (C) 1996,99 Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as @@ -20,9 +20,9 @@ dir := daemons makemode := utilities -targets = rc getty mail.local -special-targets = rc -SRCS = rc.sh getty.c lmail.c +targets = rc getty mail.local console-run runttys runsystem +special-targets = rc runsystem +SRCS = rc.sh getty.c lmail.c console-run.c runttys.c installationdir = $(libexecdir) HURDLIBS=shouldbeinlibc @@ -36,3 +36,9 @@ include ../Makeconf rc: rc.sh getty: getty.o ../libshouldbeinlibc/libshouldbeinlibc.a mail.local: lmail.o ../libshouldbeinlibc/libshouldbeinlibc.a +console-run: console-run.o ../libfshelp/libfshelp.a ../libports/libports.a + +runttys: runttys.o +runttys-LDLIBS = -lutil + +runsystem: runsystem.sh |