aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile8
-rw-r--r--svcscan.c (renamed from scan.c)2
-rw-r--r--svcsupervise.c (renamed from supervise.c)0
3 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f4be2ba..81cdd2a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-scan: scan.c
- ${CC} -o scan -Wall -Werror -pedantic scan.c
+svcscan: svcscan.c
+ ${CC} -o svcscan -Wall -Werror -pedantic svcscan.c
-supervise: supervise.c
- ${CC} -o supervise -Wall -Werror -pedantic supervise.c
+svcsupervise: svcsupervise.c
+ ${CC} -o svcsupervise -Wall -Werror -pedantic svcsupervise.c
diff --git a/scan.c b/svcscan.c
index 8e92a68..1de5b46 100644
--- a/scan.c
+++ b/svcscan.c
@@ -17,7 +17,7 @@
#include <unistd.h>
char *supdir = "/home/marius/r/svc";
-char *super_path[] = { "/home/marius/r/supervise", NULL, NULL };
+char *super_path[] = { "/home/marius/r/svcsupervise", NULL, NULL };
struct svc {
char dir[MAXNAMLEN + 1];
diff --git a/supervise.c b/svcsupervise.c
index 95ede21..95ede21 100644
--- a/supervise.c
+++ b/svcsupervise.c