flex cleanup, silence errors
[dragonfly.git] / usr.bin / colldef / Makefile
1 # $FreeBSD: src/usr.bin/colldef/Makefile,v 1.16.2.1 2002/08/17 18:57:10 ache Exp $
2
3 PROG=   colldef
4 SRCS=   parse.y scan.l y.tab.h
5 LFLAGS= -8 -i
6 CFLAGS+=-I. -I${.CURDIR}
7 CFLAGS+=-DCOLLATE_DEBUG
8 LDADD=  -ll
9 DPADD=  ${LIBL}
10
11 SRCS+=          collate.h
12 CLEANFILES+=    collate.h
13
14 collate.h: ${.CURDIR}/../../lib/libc/locale/collate.h
15         cp ${.CURDIR}/../../lib/libc/locale/collate.h ${.TARGET}
16
17 .include <bsd.prog.mk>