1130b656e5
This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
16 lines
407 B
Makefile
16 lines
407 B
Makefile
# @(#)Makefile 5.3 (Berkeley) 5/12/90
|
|
# $FreeBSD$
|
|
|
|
PROG= yacc
|
|
SRCS= closure.c error.c lalr.c lr0.c main.c mkpar.c output.c reader.c \
|
|
skeleton.c symtab.c verbose.c warshall.c
|
|
MAN1= yacc.1 yyfix.1
|
|
LINKS+= ${BINDIR}/yacc ${BINDIR}/byacc
|
|
MLINKS+=yacc.1 byacc.1
|
|
|
|
beforeinstall:
|
|
${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
|
|
${.CURDIR}/yyfix.sh ${DESTDIR}${BINDIR}/yyfix
|
|
|
|
.include <bsd.prog.mk>
|