mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
14 lines
243 B
Python
14 lines
243 B
Python
#!/usr/bin/env python
|
|
|
|
|
|
bld.SAMBA_SUBSYSTEM('CHARSET',
|
|
source='iconv.c charcnv.c util_unistr.c',
|
|
public_deps='iconv CODEPOINTS',
|
|
public_headers='charset.h',
|
|
)
|
|
|
|
bld.SAMBA_SUBSYSTEM('CODEPOINTS',
|
|
source='codepoints.c',
|
|
deps='DYNCONFIG'
|
|
)
|