diff options
author | 2011-09-17 14:05:27 +0000 | |
---|---|---|
committer | 2011-09-17 14:05:27 +0000 | |
commit | a08a54a515852773d17aa0f0d43fc6ca7077851c (patch) | |
tree | 8c8baa6a9c62758bbadaf5e2bc0cb62c43246b50 | |
parent | Change the mandocdb(8) interface to better agree with makewhatis(8); (diff) | |
download | wireguard-openbsd-a08a54a515852773d17aa0f0d43fc6ca7077851c.tar.xz wireguard-openbsd-a08a54a515852773d17aa0f0d43fc6ca7077851c.zip |
Add SMALL infrastructure to ping.
ok mcbride@ sthen@
-rw-r--r-- | distrib/special/Makefile | 4 | ||||
-rw-r--r-- | distrib/special/ping/Makefile | 7 |
2 files changed, 9 insertions, 2 deletions
diff --git a/distrib/special/Makefile b/distrib/special/Makefile index c7707951d11..48b6eef2699 100644 --- a/distrib/special/Makefile +++ b/distrib/special/Makefile @@ -1,8 +1,8 @@ -# $OpenBSD: Makefile,v 1.22 2010/03/31 17:51:24 deraadt Exp $ +# $OpenBSD: Makefile,v 1.23 2011/09/17 14:05:27 haesbaert Exp $ SUBDIR= libstubs \ ccdconfig date dd dhclient dmesg ed ftp grep gzip ifconfig init \ - kbd less more mt newfs pppd restore rsh sha256 sysctl + kbd less more mt newfs ping pppd restore rsh sha256 sysctl install: diff --git a/distrib/special/ping/Makefile b/distrib/special/ping/Makefile new file mode 100644 index 00000000000..777e0aa2483 --- /dev/null +++ b/distrib/special/ping/Makefile @@ -0,0 +1,7 @@ +# $OpenBSD: Makefile,v 1.1 2011/09/17 14:05:27 haesbaert Exp $ + +PROG= ping +COPTS+= -DSMALL +.PATH: ${.CURDIR}/../../../sbin/ping + +.include <bsd.prog.mk> |