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