diff options
author | Nate Williams <nate@FreeBSD.org> | 1993-08-03 16:35:31 +0000 |
---|---|---|
committer | Nate Williams <nate@FreeBSD.org> | 1993-08-03 16:35:31 +0000 |
commit | 470210e2dc467eeb16a3ddcbd969974a54923d5a (patch) | |
tree | ba162ea285f21a16fa5b5496d1a8d6a05ff50c03 /gnu/usr.bin/dc/Makefile | |
parent | 8beb75523174a469cd25a0d4530e9e3e2aab5d83 (diff) | |
download | src-470210e2dc467eeb16a3ddcbd969974a54923d5a.tar.gz src-470210e2dc467eeb16a3ddcbd969974a54923d5a.zip |
dc has no man page, so add NOMAN to Makefile
Notes
Notes:
svn path=/head/; revision=237
Diffstat (limited to 'gnu/usr.bin/dc/Makefile')
-rw-r--r-- | gnu/usr.bin/dc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/usr.bin/dc/Makefile b/gnu/usr.bin/dc/Makefile index d786bc80544d..6f6a7074b777 100644 --- a/gnu/usr.bin/dc/Makefile +++ b/gnu/usr.bin/dc/Makefile @@ -1,6 +1,7 @@ PROG= dc -CFLAGS+=-I${.CURDIR} -DHAVE_BCOPY=1 -DHAVE_BZERO=1 SRCS= dc.c decimal.c +NOMAN= noman +CFLAGS+=-I${.CURDIR} -DHAVE_BCOPY=1 -DHAVE_BZERO=1 DPADD= ${LIBM} LDADD= -lm |