mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
Taken from: https://github.com/freebsd/freebsd.git Commit id: d44ce30d3054a38723f89a161c5e003e64d1aaae
13 lines
243 B
Makefile
13 lines
243 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= colldef
|
|
SRCS= parse.y scan.l y.tab.h
|
|
LFLAGS= -8 -i
|
|
CFLAGS+=-I. -I${.CURDIR} -I${.CURDIR}/../../lib/libc/locale
|
|
CFLAGS+=-DCOLLATE_DEBUG -DYY_NO_UNPUT -DYY_NO_INPUT
|
|
LDADD= -ll
|
|
DPADD= ${LIBL}
|
|
|
|
WARNS?= 2
|
|
|
|
.include <bsd.prog.mk>
|