mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-11-30 04:22:44 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
28 lines
422 B
Makefile
28 lines
422 B
Makefile
PROG= localedef
|
|
SRCS= charmap.c \
|
|
collate.c \
|
|
ctype.c \
|
|
localedef.c \
|
|
messages.c \
|
|
monetary.c \
|
|
numeric.c \
|
|
parser.y \
|
|
scanner.c \
|
|
time.c \
|
|
wide.c
|
|
|
|
WARNS?= 3
|
|
${SRCS:M*.c}: parser.h
|
|
parser.h: parser.y
|
|
|
|
IGNORE_PRAGMA= yes
|
|
|
|
CFLAGS+= -I. -I${.CURDIR}
|
|
.if defined(BOOTSTRAPPING)
|
|
CFLAGS+= -I${.CURDIR}/bootstrap
|
|
.endif
|
|
CFLAGS+= -I${SRCTOP}/lib/libc/locale
|
|
CFLAGS+= -I${SRCTOP}/lib/libc/stdtime
|
|
|
|
.include <bsd.prog.mk>
|