NetBSD/bin/expr/Makefile

15 lines
271 B
Makefile
Raw Normal View History

# $Id: Makefile,v 1.9 1993/11/11 01:30:19 jtc Exp $
1993-03-22 11:04:00 +03:00
PROG= expr
# XXX bsd.prog.mk should be able to generate this from expr.y without SRCS
SRCS= expr.c
CFLAGS+= -I.
CLEANFILES+= expr.c y.tab.h
1993-03-21 12:45:37 +03:00
expr.c:
${YACC} -d ${.IMPSRC}
mv y.tab.c expr.c
.include <bsd.prog.mk>