1*357f1050SThomas Veerman# $NetBSD: Makefile,v 1.2 2009/10/28 11:20:07 njoly Exp $ 2*357f1050SThomas Veerman 3*357f1050SThomas VeermanNOPIC= # defined 4*357f1050SThomas Veerman 5*357f1050SThomas Veerman.include <bsd.own.mk> 6*357f1050SThomas Veerman 7*357f1050SThomas VeermanLIB= l 8*357f1050SThomas VeermanSRCS= libmain.c libyywrap.c 9*357f1050SThomas Veerman 10*357f1050SThomas Veerman.if ${MKSTATICLIB} != "no" 11*357f1050SThomas VeermanLINKS= ${LIBDIR}/libl.a ${LIBDIR}/libfl.a 12*357f1050SThomas Veerman.endif 13*357f1050SThomas Veerman 14*357f1050SThomas Veerman.PATH: ${NETBSDSRCDIR}/usr.bin/lex 15*357f1050SThomas Veerman 16*357f1050SThomas Veerman.if ${MKPROFILE} != "no" 17*357f1050SThomas VeermanLINKS+= ${LIBDIR}/libl_p.a ${LIBDIR}/libfl_p.a 18*357f1050SThomas Veerman.endif 19*357f1050SThomas Veerman 20*357f1050SThomas Veerman.if ${MKDEBUGLIB} != "no" 21*357f1050SThomas VeermanLINKS+= ${LIBDIR}/libl_g.a ${LIBDIR}/libfl_g.a 22*357f1050SThomas Veerman.endif 23*357f1050SThomas Veerman 24*357f1050SThomas Veerman.include <bsd.lib.mk> 25