Added ${DESTDIR} to the install target so bison.{simple,hairy}

will also appear in our releases. ;)

Forgotten by: peter
This commit is contained in:
Joerg Wunsch 1996-10-27 21:50:59 +00:00
parent f64f27f9f6
commit 2b0039e0a4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=19215

View File

@ -1,4 +1,4 @@
# $Id$
# $Id: Makefile,v 1.1 1996/09/10 13:23:44 peter Exp $
BISONDIR=${.CURDIR}/../../../../contrib/bison
@ -15,7 +15,9 @@ bison.s1: bison.simple
< ${BISONDIR}/bison.simple > bison.s1
install:
${INSTALL} -c -o bin -g bin -m 444 bison.s1 ${DATADIR}/bison.simple
${INSTALL} -c -o bin -g bin -m 444 ${BISONDIR}/bison.hairy ${DATADIR}
${INSTALL} -c -o bin -g bin -m 444 bison.s1 \
${DESTDIR}${DATADIR}/bison.simple
${INSTALL} -c -o bin -g bin -m 444 ${BISONDIR}/bison.hairy \
${DESTDIR}${DATADIR}
.include <bsd.prog.mk>