xref: /dragonfly/lib/libc/citrus/Makefile.inc (revision 678e8cc6)
1.PATH: ${.CURDIR}/../libc/citrus
2
3.include "../../i18n_module/Makefile.shlib"
4
5CFLAGS+=	-DI18NMODULE_MAJOR=${MODULE_SHLIB_MAJOR} -D_I18N_DYNAMIC
6STATIC_LOCALES?=
7
8SRCS+=	citrus_bcs.c citrus_csmapper.c citrus_ctype.c citrus_ctype_fallback.c
9SRCS+=	citrus_db.c citrus_db_hash.c citrus_esdb.c citrus_hash.c
10SRCS+=	citrus_iconv.c citrus_lookup.c citrus_mapper.c citrus_memstream.c
11SRCS+=	citrus_mmap.c citrus_module.c citrus_none.c citrus_stdenc.c
12SRCS+=  citrus_prop.c
13
14# Add the locale modules to compile-in in the static libc.a
15# (and profile/libc.a).
16# If a new locale module is added, the includes and the table in
17# citrus_module.c must be updated.
18# A new module must have the file name citrus_xxx.c where xxx is the lower
19# case name of the module.
20# Currently the modules specified by STATIC_LOCALES are included in the
21# shared libc (but never used). This is a bug.
22.if ${STATIC_LOCALES} != ""
23.PATH: ${.CURDIR}/../libc/citrus/modules
24CFLAGS+=-I${.CURDIR}/../libc/citrus
25CFLAGS+=-D_I18N_STATIC
26.for var in ${STATIC_LOCALES}
27SRCS+= citrus_${var:L}.c
28CFLAGS+=-D_I18N_STATIC_${var}
29.endfor
30# iconv support
31SRCS+=citrus_iconv_std.c citrus_mapper_std.c citrus_mapper_none.c citrus_mapper_serial.c citrus_utf1632.c
32.endif # STATIC_LOCALES
33