Get rid of disklabel faking/processing.
[dragonfly.git] / usr.bin / colldef / Makefile
blob5bbdee06a5410681d9bfd1feb455c41e045b5d37
1 # $FreeBSD: src/usr.bin/colldef/Makefile,v 1.16.2.1 2002/08/17 18:57:10 ache Exp $
2 # $DragonFly: src/usr.bin/colldef/Makefile,v 1.3 2005/03/02 07:16:23 joerg Exp $
4 PROG= colldef
5 SRCS= parse.y scan.l y.tab.h
6 LFLAGS= -8 -i
7 CFLAGS+=-I. -I${.CURDIR}
8 CFLAGS+=-DCOLLATE_DEBUG -DYY_NO_UNPUT
9 LDADD= -ll
10 DPADD= ${LIBL}
11 WARNS?= 6
13 SRCS+= collate.h
14 CLEANFILES+= collate.h
16 collate.h: ${.CURDIR}/../../lib/libc/locale/collate.h
17 cp ${.CURDIR}/../../lib/libc/locale/collate.h ${.TARGET}
19 .include <bsd.prog.mk>