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