diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-12-29 08:51:20 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-12-29 08:51:20 +0000 |
commit | 2c21275fdd232d956693ac9c03b362ca0ba9d50a (patch) | |
tree | f93efedb97cc7ec9e6b1af95d4f1199f74bb8f7d /usr.bin/jot/Makefile | |
parent | ce61cde32137d0cf9eaf1932fef9a3c70d8d36e4 (diff) |
Cleanup: KNF, -Wall, do not use pointers if the actual var is
available, plus some other minor cleanup.
New features: Allow explicit precision 0. For infinite sequences,
do not print trailing newline if the counter wraps.
Testing by henning@ and jmc@
ok deraadt@
Diffstat (limited to 'usr.bin/jot/Makefile')
-rw-r--r-- | usr.bin/jot/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/jot/Makefile b/usr.bin/jot/Makefile index 5462e00241b..c552df3f955 100644 --- a/usr.bin/jot/Makefile +++ b/usr.bin/jot/Makefile @@ -1,5 +1,6 @@ -# $OpenBSD: Makefile,v 1.3 1997/09/21 11:49:22 deraadt Exp $ +# $OpenBSD: Makefile,v 1.4 2003/12/29 08:51:19 otto Exp $ PROG= jot +CFLAGS+= -Wall .include <bsd.prog.mk> |