diff options
author | Andrew Moore <alm@FreeBSD.org> | 1993-07-31 01:10:24 +0000 |
---|---|---|
committer | Andrew Moore <alm@FreeBSD.org> | 1993-07-31 01:10:24 +0000 |
commit | e20f62775f48640f6c537aef81ac966633eb081e (patch) | |
tree | da0dc629176f09b8598440f7bd7bc300683235ac /gnu/usr.bin/dc/Makefile | |
parent | 6eefa612a977ece8f5e118392b27413260cb6996 (diff) | |
download | src-e20f62775f48640f6c537aef81ac966633eb081e.tar.gz src-e20f62775f48640f6c537aef81ac966633eb081e.zip |
adding GNU dc ("desk calculator")
Notes
Notes:
svn path=/cvs2svn/branches/unlabeled-1.1.1/; revision=220
Diffstat (limited to 'gnu/usr.bin/dc/Makefile')
-rw-r--r-- | gnu/usr.bin/dc/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gnu/usr.bin/dc/Makefile b/gnu/usr.bin/dc/Makefile new file mode 100644 index 000000000000..d786bc80544d --- /dev/null +++ b/gnu/usr.bin/dc/Makefile @@ -0,0 +1,7 @@ +PROG= dc +CFLAGS+=-I${.CURDIR} -DHAVE_BCOPY=1 -DHAVE_BZERO=1 +SRCS= dc.c decimal.c +DPADD= ${LIBM} +LDADD= -lm + +.include <bsd.prog.mk> |