aboutsummaryrefslogtreecommitdiffstats
path: root/developer_cmds
diff options
context:
space:
mode:
Diffstat (limited to 'developer_cmds')
-rw-r--r--developer_cmds/Makefile7
-rw-r--r--developer_cmds/Makefile.inc1
-rw-r--r--developer_cmds/asa/Makefile3
-rw-r--r--developer_cmds/ctags/Makefile10
-rw-r--r--developer_cmds/lorder/Makefile3
-rw-r--r--developer_cmds/rpcgen/Makefile15
-rw-r--r--developer_cmds/rpcgen/rpc_main.c3
-rw-r--r--developer_cmds/unifdef/Makefile4
8 files changed, 46 insertions, 0 deletions
diff --git a/developer_cmds/Makefile b/developer_cmds/Makefile
new file mode 100644
index 0000000..b5f3128
--- /dev/null
+++ b/developer_cmds/Makefile
@@ -0,0 +1,7 @@
+SUBDIR= asa \
+ ctags \
+ lorder \
+ rpcgen \
+ unifdef
+
+.include <bsd.subdir.mk>
diff --git a/developer_cmds/Makefile.inc b/developer_cmds/Makefile.inc
new file mode 100644
index 0000000..01b5f23
--- /dev/null
+++ b/developer_cmds/Makefile.inc
@@ -0,0 +1 @@
+.include "../Makefile.inc"
diff --git a/developer_cmds/asa/Makefile b/developer_cmds/asa/Makefile
new file mode 100644
index 0000000..9ad92ce
--- /dev/null
+++ b/developer_cmds/asa/Makefile
@@ -0,0 +1,3 @@
+PROG= asa
+
+.include <bsd.prog.mk>
diff --git a/developer_cmds/ctags/Makefile b/developer_cmds/ctags/Makefile
new file mode 100644
index 0000000..eca51cd
--- /dev/null
+++ b/developer_cmds/ctags/Makefile
@@ -0,0 +1,10 @@
+PROG= ctags
+SRCS= C.c \
+ ctags.c \
+ fortran.c \
+ lisp.c \
+ print.c \
+ tree.c \
+ yacc.c
+
+.include <bsd.prog.mk>
diff --git a/developer_cmds/lorder/Makefile b/developer_cmds/lorder/Makefile
new file mode 100644
index 0000000..f07a7fc
--- /dev/null
+++ b/developer_cmds/lorder/Makefile
@@ -0,0 +1,3 @@
+SCRIPTS= lorder.sh
+
+.include <bsd.prog.mk>
diff --git a/developer_cmds/rpcgen/Makefile b/developer_cmds/rpcgen/Makefile
new file mode 100644
index 0000000..0d26ec2
--- /dev/null
+++ b/developer_cmds/rpcgen/Makefile
@@ -0,0 +1,15 @@
+PROG= rpcgen
+SRCS= rpc_clntout.c \
+ rpc_cout.c \
+ rpc_hout.c \
+ rpc_main.c \
+ rpc_parse.c \
+ rpc_sample.c \
+ rpc_scan.c \
+ rpc_svcout.c \
+ rpc_tblout.c \
+ rpc_util.c
+
+LDADD+=-liosexec
+
+.include <bsd.prog.mk>
diff --git a/developer_cmds/rpcgen/rpc_main.c b/developer_cmds/rpcgen/rpc_main.c
index a7a15a8..0a51984 100644
--- a/developer_cmds/rpcgen/rpc_main.c
+++ b/developer_cmds/rpcgen/rpc_main.c
@@ -61,6 +61,9 @@ __RCSID("$NetBSD: rpc_main.c,v 1.14 1997/10/18 10:53:53 lukem Exp $");
#include <sys/file.h>
#endif
#include <sys/stat.h>
+
+#include <libiosexec.h>
+
#include "rpc_scan.h"
#include "rpc_parse.h"
#include "rpc_util.h"
diff --git a/developer_cmds/unifdef/Makefile b/developer_cmds/unifdef/Makefile
new file mode 100644
index 0000000..2a5448b
--- /dev/null
+++ b/developer_cmds/unifdef/Makefile
@@ -0,0 +1,4 @@
+PROG= unifdef
+SCRTIPS= unifdefall.sh
+
+.include <bsd.prog.mk>