Add missing ',' between parameters [HEIMDAL-599]
[heimdal.git] / lib / wind / Makefile.am
blobd1ee70f58fb1ace9a1eb494c13eacaf52f4dd46f
1 # $Id: Makefile.am,v 1.1 2004/12/20 08:31:45 assar Exp $
3 include $(top_srcdir)/Makefile.am.common
5 lib_LTLIBRARIES = libwind.la
7 dist_libwind_la_SOURCES =                       \
8         bidi.c                                  \
9         bidi_table.c                            \
10         bidi_table.h                            \
11         combining.c                             \
12         combining_table.c                       \
13         combining_table.h                       \
14         doxygen.c                               \
15         errorlist.c                             \
16         errorlist_table.c                       \
17         errorlist_table.h                       \
18         map.c                                   \
19         map_table.c                             \
20         map_table.h                             \
21         ldap.c                                  \
22         normalize.c                             \
23         normalize_table.c                       \
24         normalize_table.h                       \
25         punycode.c                              \
26         stringprep.c                            \
27         wind.h                                  \
28         windlocl.h                              \
29         utf8.c
31 dist_include_HEADERS = wind.h
33 nodist_libwind_la_SOURCES = wind_err.c wind_err.h
34 nodist_include_HEADERS = wind_err.h
36 $(libwind_la_OBJECTS): wind_err.h
38 libwind_la_LDFLAGS = -version-info 0:0:0
40 libwind_la_LIBADD = \
41         $(LIB_com_err)
43 if versionscript
44 libwind_la_LDFLAGS += $(LDFLAGS_VERSION_SCRIPT)$(srcdir)/version-script.map
45 endif
47 BUILT_SOURCES =                                 \
48         bidi_table.c                            \
49         bidi_table.h                            \
50         combining_table.c                       \
51         combining_table.h                       \
52         errorlist_table.c                       \
53         errorlist_table.h                       \
54         map_table.c                             \
55         map_table.h                             \
56         normalize_table.c                       \
57         normalize_table.h                       \
58         punycode_examples.c                     \
59         punycode_examples.h                     \
60         wind_err.c                              \
61         wind_err.h
63 TESTS =                                         \
64         $(check_PROGRAMS)
66 check_PROGRAMS =                                \
67         test-bidi                               \
68         test-map                                \
69         test-rw                                 \
70         test-normalize                          \
71         test-prohibited                         \
72         test-punycode                           \
73         test-ldap                               \
74         test-utf8
76 test_punycode_SOURCES =                         \
77         test-punycode.c                         \
78         punycode_examples.c                     \
79         punycode_examples.h
81 bin_PROGRAMS = idn-lookup
83 idn_lookup_SOURCES = idn-lookup.c
85 LDADD = libwind.la $(LIB_roken)
87 PYTHON = python
89 map_table.h map_table.c: rfc3454.txt gen-map.py stringprep.py
90         $(PYTHON) $(srcdir)/gen-map.py $(srcdir)/rfc3454.txt
92 errorlist_table.h errorlist_table.c: rfc3454.txt gen-errorlist.py stringprep.py
93         $(PYTHON) $(srcdir)/gen-errorlist.py $(srcdir)/rfc3454.txt
95 normalize_table.h normalize_table.c: UnicodeData.txt CompositionExclusions-3.2.0.txt gen-normalize.py
96         $(PYTHON) $(srcdir)/gen-normalize.py $(srcdir)/UnicodeData.txt $(srcdir)/CompositionExclusions-3.2.0.txt
98 combining_table.h combining_table.c: UnicodeData.txt gen-combining.py
99         $(PYTHON) $(srcdir)/gen-combining.py $(srcdir)/UnicodeData.txt
101 bidi_table.h bidi_table.c: rfc3454.txt gen-bidi.py
102         $(PYTHON) $(srcdir)/gen-bidi.py $(srcdir)/rfc3454.txt
104 punycode_examples.h punycode_examples.c: gen-punycode-examples.py rfc3492.txt
105         $(PYTHON) $(srcdir)/gen-punycode-examples.py $(srcdir)/rfc3492.txt
107 EXTRA_DIST = \
108         CompositionExclusions-3.2.0.txt \
109         DerivedNormalizationProps.txt \
110         NormalizationCorrections.txt \
111         NormalizationTest.txt \
112         UnicodeData.py \
113         UnicodeData.txt \
114         gen-bidi.py \
115         gen-combining.py \
116         gen-errorlist.py \
117         gen-map.py \
118         gen-normalize.py \
119         gen-punycode-examples.py \
120         generate.py \
121         rfc3454.py \
122         rfc3454.txt \
123         rfc3490.txt \
124         rfc3491.txt \
125         rfc3492.txt \
126         rfc4013.txt \
127         rfc4518.py \
128         rfc4518.txt \
129         stringprep.py \
130         util.py \
131         version-script.map \
132         wind_err.et
134 CLEANFILES = \
135         bidi_table.c \
136         bidi_table.h \
137         combining_table.c \
138         combining_table.h \
139         errorlist_table.c \
140         errorlist_table.h \
141         map_table.c \
142         map_table.h \
143         normalize_table.c \
144         normalize_table.h \
145         punycode_examples.c \
146         punycode_examples.h \
147         wind_err.c  \
148         wind_err.h
150 wind_err.h: wind_err.et