mirror of
https://https.git.savannah.gnu.org/git/gnulib.git
synced 2026-08-26 03:17:50 +00:00
bf9412ab2e
* modules/iconv_open (Makefile.am): In the rules that use gperf, prefix the target file names with '$(srcdir)/'. * modules/unicase/locale-language (Makefile.am): Likewise. * modules/unicase/special-casing (Makefile.am): Likewise. * modules/unictype/bidiclass-byname (Makefile.am): Likewise. * modules/unictype/category-byname (Makefile.am): Likewise. * modules/unictype/combining-class-byname (Makefile.am): Likewise. * modules/unictype/joininggroup-byname (Makefile.am): Likewise. * modules/unictype/joiningtype-byname (Makefile.am): Likewise. * modules/unictype/property-byname (Makefile.am): Likewise. * modules/unictype/scripts (Makefile.am): Likewise. * modules/uninorm/composition (Makefile.am): Likewise.
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
Description:
|
|
Special casing table.
|
|
|
|
Files:
|
|
lib/unicase/special-casing.in.h
|
|
lib/unicase/special-casing.c
|
|
lib/unicase/special-casing-table.gperf
|
|
|
|
Depends-on:
|
|
gperf
|
|
|
|
configure.ac:
|
|
|
|
Makefile.am:
|
|
lib_SOURCES += unicase/special-casing.c
|
|
|
|
$(srcdir)/unicase/special-casing-table.h: $(srcdir)/unicase/special-casing-table.gperf
|
|
$(V_GPERF)$(GPERF) -m 10 $(srcdir)/unicase/special-casing-table.gperf > $(srcdir)/unicase/special-casing-table.h-t && \
|
|
mv $(srcdir)/unicase/special-casing-table.h-t $(srcdir)/unicase/special-casing-table.h
|
|
BUILT_SOURCES += unicase/special-casing-table.h
|
|
MOSTLYCLEANFILES += unicase/special-casing-table.h-t
|
|
MAINTAINERCLEANFILES += unicase/special-casing-table.h
|
|
EXTRA_DIST += unicase/special-casing-table.h
|
|
|
|
# Generate special-casing.h with a declaration that depends on the gperf version.
|
|
unicase/special-casing.h: unicase/special-casing.in.h unicase/special-casing-table.h
|
|
$(AM_V_GEN)rm -f $@-t $@ && \
|
|
declaration=`grep '^gl_unicase_special_lookup' $(srcdir)/unicase/special-casing-table.h | sed -e 's/register //g'` && \
|
|
{ echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \
|
|
sed -e "/gl_unicase_special_lookup/s/gl_unicase_special_lookup.*/$${declaration};/" $(srcdir)/unicase/special-casing.in.h; \
|
|
} > $@-t && \
|
|
mv -f $@-t $@
|
|
BUILT_SOURCES += unicase/special-casing.h
|
|
MOSTLYCLEANFILES += unicase/special-casing.h unicase/special-casing.h-t
|
|
|
|
Include:
|
|
"unicase/special-casing.h"
|
|
|
|
License:
|
|
LGPLv3+ or GPLv2
|
|
|
|
Maintainer:
|
|
all
|