diff options
| author | Cameron Katri <me@cameronkatri.com> | 2021-05-11 15:21:33 -0400 |
|---|---|---|
| committer | Cameron Katri <me@cameronkatri.com> | 2021-05-11 15:21:33 -0400 |
| commit | c6c2ccbbeeccd3144957a26b6041fd8bd7b27486 (patch) | |
| tree | 30d397cfa44ef0ed1d0a26355f17d95537899b42 /network_cmds/spray.tproj | |
| parent | c0cc487dfc7cf31a2ac002ee282594a767e3ead7 (diff) | |
| download | apple_cmds-c6c2ccbbeeccd3144957a26b6041fd8bd7b27486.tar.gz apple_cmds-c6c2ccbbeeccd3144957a26b6041fd8bd7b27486.zip | |
network_cmds: Get it all working
Diffstat (limited to 'network_cmds/spray.tproj')
| -rw-r--r-- | network_cmds/spray.tproj/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/network_cmds/spray.tproj/Makefile b/network_cmds/spray.tproj/Makefile new file mode 100644 index 0000000..904e17b --- /dev/null +++ b/network_cmds/spray.tproj/Makefile @@ -0,0 +1,15 @@ +PROG= spray +MAN= spray.8 +SRCS= spray.c spray_xdr.c spray.h +RPCSRC= spray.x +CLEANFILES+= spray_xdr.c spray.h + +spray.h: ${RPCSRC} + ${RPCGEN} -h -o ${.TARGET} ${RPCSRC} + +spray_xdr.c: ${RPCSRC} + ${RPCGEN} -c -o ${.TARGET} ${RPCSRC} + +BINDIR=/usr/sbin + +.include <bsd.prog.mk> |
