diff options
author | Gerrit Pape <pape@smarden.org> | 2005-07-23 12:08:56 +0000 |
---|---|---|
committer | Gerrit Pape <pape@smarden.org> | 2005-07-23 12:08:56 +0000 |
commit | c06cf0a26730485d79f2a232b9fe2fc036989f99 (patch) | |
tree | b1899108b25c5571a5f9948297379a166f429fc0 /src/Makefile | |
parent | f4448fb62bb94b14edeb15b130703188dbe717df (diff) | |
download | runit-c06cf0a26730485d79f2a232b9fe2fc036989f99.tar.gz runit-c06cf0a26730485d79f2a232b9fe2fc036989f99.tar.xz runit-c06cf0a26730485d79f2a232b9fe2fc036989f99.zip |
* sv.c: new sv program to control services, optionally can be linked to
/etc/init.d/ as lsb "init script" command line interface. * Makefile, TARGETS: adapt.
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index 55bb71f..b35fae9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -24,6 +24,9 @@ runsvstat: load runsvstat.o unix.a byte.a time.a runsvctrl: load runsvctrl.o unix.a byte.a ./load runsvctrl unix.a byte.a +sv: load sv.o unix.a byte.a time.a + ./load sv unix.a byte.a time.a + svwaitup: load svwaitup.o unix.a byte.a time.a ./load svwaitup unix.a byte.a time.a @@ -61,6 +64,9 @@ runsvstat.o: compile sysdeps runsvstat.c runsvctrl.o: compile runsvctrl.c ./compile runsvctrl.c +sv.o: compile sysdeps sv.c + ./compile sv.c + svwaitup.o: compile sysdeps svwaitup.c ./compile svwaitup.c |