aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/perror/Makefile
diff options
context:
space:
mode:
authorGeorge V. Neville-Neil <gnn@FreeBSD.org>2009-05-19 17:40:22 +0000
committerGeorge V. Neville-Neil <gnn@FreeBSD.org>2009-05-19 17:40:22 +0000
commit9a3009b8009f43f5d6d763c9e1e37ac9c5f8b358 (patch)
treee3a5afac956eb44ef6300380a76cd19f4b035e05 /usr.bin/perror/Makefile
parent88608a2211e9bf2aa5a823a5e6c5cb76d7220a15 (diff)
downloadsrc-9a3009b8009f43f5d6d763c9e1e37ac9c5f8b358.tar.gz
src-9a3009b8009f43f5d6d763c9e1e37ac9c5f8b358.zip
Add a new program, perror, which takes an errno as a command line argument
and outputs the associated textual message in the same way that perror(3) would if called within a program.
Notes
Notes: svn path=/head/; revision=192398
Diffstat (limited to 'usr.bin/perror/Makefile')
-rw-r--r--usr.bin/perror/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.bin/perror/Makefile b/usr.bin/perror/Makefile
new file mode 100644
index 000000000000..39e5dfffab27
--- /dev/null
+++ b/usr.bin/perror/Makefile
@@ -0,0 +1,6 @@
+# $FreeBSD$
+
+PROG= perror
+SRCS= perror.c
+
+.include <bsd.prog.mk>