aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make
diff options
context:
space:
mode:
authorJuli Mallett <jmallett@FreeBSD.org>2002-09-26 01:39:22 +0000
committerJuli Mallett <jmallett@FreeBSD.org>2002-09-26 01:39:22 +0000
commit4fed818c7e958f6df621f63077b94f52ea7d71eb (patch)
tree5efa63e636375c913fc2fe3cca9a2f081055a9ea /usr.bin/make
parent6fc15f9bdfdc63986b7fbdb43e5f10456b62b046 (diff)
Notes
Diffstat (limited to 'usr.bin/make')
-rw-r--r--usr.bin/make/job.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/make/job.h b/usr.bin/make/job.h
index e12702cd34101..f5d406bbb9e2f 100644
--- a/usr.bin/make/job.h
+++ b/usr.bin/make/job.h
@@ -203,7 +203,11 @@ typedef struct Shell {
char *exit; /* exit on error */
} Shell;
-
+/*
+ * If REMOTE is defined then these things need exposed, otherwise they are
+ * static to job.c!
+ */
+#ifdef REMOTE
extern char *targFmt; /* Format string for banner that separates
* output from multiple jobs. Contains a
* single %s where the name of the node being
@@ -218,6 +222,7 @@ extern Lst jobs; /* List of active job descriptors */
extern Lst stoppedJobs; /* List of jobs that are stopped or didn't
* quite get started */
extern Boolean jobFull; /* Non-zero if no more jobs should/will start*/
+#endif
void Job_Touch(GNode *, Boolean);