libwind from Assar. stringprep library supporting nameprep, saslprep and ldapprep
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@22551 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
118
lib/wind/Makefile.am
Normal file
118
lib/wind/Makefile.am
Normal file
@@ -0,0 +1,118 @@
|
||||
# $Id: Makefile.am,v 1.1 2004/12/20 08:31:45 assar Exp $
|
||||
|
||||
include $(top_srcdir)/Makefile.am.common
|
||||
|
||||
lib_LTLIBRARIES = libwind.la
|
||||
|
||||
libwind_la_SOURCES = \
|
||||
bidi.c \
|
||||
bidi_table.c \
|
||||
combining.c \
|
||||
combining_table.c \
|
||||
doxygen.c \
|
||||
errorlist.c \
|
||||
errorlist_table.c \
|
||||
map_table.c \
|
||||
map.c \
|
||||
normalize.c \
|
||||
normalize_table.c \
|
||||
punycode.c \
|
||||
stringprep.c \
|
||||
wind_err.c \
|
||||
utf8.c
|
||||
|
||||
$(libwind_la_OBJECTS): wind_err.h
|
||||
|
||||
libwind_la_LDFLAGS = -version-info 0:0:0
|
||||
|
||||
if versionscript
|
||||
libwind_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
|
||||
endif
|
||||
|
||||
|
||||
BUILT_SOURCES = \
|
||||
bidi_table.c \
|
||||
bidi_table.h \
|
||||
combining_table.c \
|
||||
combining_table.h \
|
||||
errorlist_table.c \
|
||||
errorlist_table.h \
|
||||
map_table.c \
|
||||
map_table.h \
|
||||
normalize_table.c \
|
||||
normalize_table.h \
|
||||
punycode_examples.c \
|
||||
punycode_examples.h \
|
||||
wind_err.c \
|
||||
wind_err.h
|
||||
|
||||
include_HEADERS = wind.h
|
||||
|
||||
nodist_include_HEADERS = wind_err.h
|
||||
|
||||
TESTS = \
|
||||
$(check_PROGRAMS)
|
||||
|
||||
check_PROGRAMS = \
|
||||
test-bidi \
|
||||
test-map \
|
||||
test-normalize \
|
||||
test-prohibited \
|
||||
test-punycode \
|
||||
test-utf8
|
||||
|
||||
test_punycode_SOURCES = \
|
||||
test-punycode.c \
|
||||
punycode_examples.c
|
||||
|
||||
bin_PROGRAMS = idn-lookup
|
||||
|
||||
idn_lookup_SOURCES = idn-lookup.c
|
||||
|
||||
idn_lookup_LDADD = libwind.la $(LIB_roken)
|
||||
|
||||
LDADD = libwind.la
|
||||
|
||||
PYTHON = python
|
||||
|
||||
map_table.h map_table.c: rfc3454.txt gen-map.py stringprep.py
|
||||
$(PYTHON) $(srcdir)/gen-map.py $(srcdir)/rfc3454.txt
|
||||
|
||||
errorlist_table.h errorlist_table.c: rfc3454.txt gen-errorlist.py stringprep.py
|
||||
$(PYTHON) $(srcdir)/gen-errorlist.py $(srcdir)/rfc3454.txt
|
||||
|
||||
normalize_table.h normalize_table.c: UnicodeData.txt CompositionExclusions-3.2.0.txt gen-normalize.py
|
||||
$(PYTHON) $(srcdir)/gen-normalize.py $(srcdir)/UnicodeData.txt $(srcdir)/CompositionExclusions-3.2.0.txt
|
||||
|
||||
combining_table.h combining_table.c: UnicodeData.txt gen-combining.py
|
||||
$(PYTHON) $(srcdir)/gen-combining.py $(srcdir)/UnicodeData.txt
|
||||
|
||||
bidi_table.h bidi_table.c: rfc3454.txt gen-bidi.py
|
||||
$(PYTHON) $(srcdir)/gen-bidi.py $(srcdir)/rfc3454.txt
|
||||
|
||||
punycode_examples.h punycode_examples.c: gen-punycode-examples.py rfc3492.txt
|
||||
$(PYTHON) $(srcdir)/gen-punycode-examples.py $(srcdir)/rfc3492.txt
|
||||
|
||||
EXTRA_DIST = \
|
||||
CompositionExclusions-3.2.0.txt \
|
||||
UnicodeData.txt \
|
||||
gen-bidi.py \
|
||||
gen-errorlist.py \
|
||||
gen-map.py \
|
||||
gen-normalize.py \
|
||||
gen-punycode-examples.py \
|
||||
rfc3454.py \
|
||||
rfc3454.txt \
|
||||
rfc3490.txt \
|
||||
rfc3491.txt \
|
||||
rfc3492.txt \
|
||||
rfc4013.txt \
|
||||
rfc4518.py \
|
||||
rfc4518.txt \
|
||||
stringprep.py \
|
||||
warn_err.et
|
||||
|
||||
CLEANFILES = \
|
||||
wind_err.c wind_err.h
|
||||
|
||||
wind_err.h: wind_err.et
|
Reference in New Issue
Block a user