Makefile revision 1.8
1# $Id: Makefile,v 1.8 1993/08/06 01:20:44 mycroft Exp $ 2 3PROG= expr 4# XXX bsd.prog.mk should be able to generate this from expr.y without SRCS 5SRCS= expr.c 6CFLAGS+= -I. 7LDADD= -lgnuregex 8DPADD= /usr/lib/libgnuregex.a 9CLEANFILES+= expr.c y.tab.h 10 11expr.c: 12 ${YACC} -d ${.IMPSRC} 13 mv y.tab.c expr.c 14 15.include <bsd.prog.mk> 16 17