summaryrefslogtreecommitdiff
path: root/usr.bin/dc/Makefile
diff options
context:
space:
mode:
authorOtto Moerbeek <otto@cvs.openbsd.org>2003-09-19 17:58:26 +0000
committerOtto Moerbeek <otto@cvs.openbsd.org>2003-09-19 17:58:26 +0000
commite7be052f8750f1f09aa7d6d1911ba6f583f00c0e (patch)
tree2cd0ab7174b8f7f74474f5fd8be26eb9fa4c06a2 /usr.bin/dc/Makefile
parent72b36c1cb795050afed11afb38f1654f5c4474cc (diff)
A complete, BSD licensed rewrite of dc(1), using the bn(3) big number routines.
ok toby@ deraadt@
Diffstat (limited to 'usr.bin/dc/Makefile')
-rw-r--r--usr.bin/dc/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/usr.bin/dc/Makefile b/usr.bin/dc/Makefile
new file mode 100644
index 00000000000..a97c5c2255f
--- /dev/null
+++ b/usr.bin/dc/Makefile
@@ -0,0 +1,8 @@
+# $OpenBSD: Makefile,v 1.1 2003/09/19 17:58:25 otto Exp $
+
+PROG= dc
+SRCS= dc.c bcode.c inout.c mem.c stack.c
+COPTS+= -Wall
+LDADD= -lcrypto
+
+.include <bsd.prog.mk>