[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / bc

Annotation of src/usr.bin/bc/Makefile, Revision 1.4

1.4     ! otto        1: #      $OpenBSD: Makefile,v 1.3 2006/05/27 22:53:44 deraadt Exp $
1.1       otto        2:
                      3: PROG=          bc
1.3       deraadt     4: SRCS=          bc.y scan.l
1.1       otto        5: CPPFLAGS+=     -I. -I${.CURDIR}
                      6: CFLAGS+=       -Wall -Wno-unused
                      7: YFLAGS+=
                      8:
                      9: beforeinstall:
                     10:        install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/bc.library \
                     11:            ${DESTDIR}/usr/share/misc
1.2       otto       12:
                     13: # These get installed verbatim
                     14: .if make(install)
                     15: SUBDIR+= USD.doc
                     16: .endif
1.1       otto       17:
                     18: .include <bsd.prog.mk>