Home | History | Annotate | Line # | Download | only in expr
Makefile revision 1.9
      1 #	$Id: Makefile,v 1.9 1993/11/11 01:30:19 jtc Exp $
      2 
      3 PROG=		expr
      4 # XXX bsd.prog.mk should be able to generate this from expr.y without SRCS
      5 SRCS=		expr.c
      6 CFLAGS+=	-I.
      7 CLEANFILES+=	expr.c y.tab.h
      8 
      9 expr.c:
     10 	${YACC} -d ${.IMPSRC}
     11 	mv y.tab.c expr.c
     12 
     13 .include <bsd.prog.mk>
     14 
     15