Home | History | Annotate | Line # | Download | only in expr
Makefile revision 1.6
      1 #	$Header: /tank/opengrok/rsync2/NetBSD/src/bin/expr/Makefile,v 1.6 1993/07/20 20:16:25 jtc Exp $
      2 
      3 PROG=		expr
      4 SRCS=		expr.c
      5 CFLAGS+=	-I.
      6 LDADD=		-lgnuregex
      7 DPADD=		/usr/lib/libgnuregex.a
      8 CLEANFILES+=	expr.c y.tab.h
      9 
     10 expr.c:
     11 	${YACC} -d ${.IMPSRC}
     12 	mv y.tab.c expr.c
     13 
     14 .include <bsd.prog.mk>
     15 
     16