summaryrefslogtreecommitdiffstats
path: root/cgram/Makefile
diff options
context:
space:
mode:
authordholland <dholland@NetBSD.org>2013-08-04 05:42:47 +0000
committerdholland <dholland@NetBSD.org>2013-08-04 05:42:47 +0000
commitedae42d03385ad6cc80974f04021637d74f329af (patch)
treebc1e3c92b9916a0a0a0b078f96684df0266a5f06 /cgram/Makefile
parent13562cc5cbeb4bdc784aeb88bb957c1764e90f19 (diff)
downloadbsdgames-darwin-edae42d03385ad6cc80974f04021637d74f329af.tar.gz
bsdgames-darwin-edae42d03385ad6cc80974f04021637d74f329af.tar.zst
bsdgames-darwin-edae42d03385ad6cc80974f04021637d74f329af.zip
Add a curses gizmo for solving Sunday-paper-type cryptograms based on
substitution ciphers. It gets the cleartext from fortune. I wrote this some years ago for my own amusement; a couple people have suggested that I should import it. Approved only by groo, so I'm going to wait a couple days to hook it to the build in case anyone demands it be removed again...
Diffstat (limited to 'cgram/Makefile')
-rw-r--r--cgram/Makefile10
1 files changed, 10 insertions, 0 deletions
diff --git a/cgram/Makefile b/cgram/Makefile
new file mode 100644
index 00000000..70e01d50
--- /dev/null
+++ b/cgram/Makefile
@@ -0,0 +1,10 @@
+# $NetBSD: Makefile,v 1.1 2013/08/04 05:42:47 dholland Exp $
+
+PROG=cgram
+DPADD=${LIBCURSES} ${LIBTERMINFO}
+LDADD=-lcurses -lterminfo
+SRCS=cgram.c
+MAN=cgram.6
+HIDEGAME=hidegame
+
+.include <bsd.prog.mk>