1include $(top_srcdir)/config/Rules.am
2
3VPATH = $(top_srcdir)/module/unicode
4
5# Includes kernel code, generate warnings for large stack frames
6AM_CFLAGS += $(FRAME_LARGER_THAN)
7
8noinst_LTLIBRARIES = libunicode.la
9
10KERNEL_C = \
11	u8_textprep.c \
12	uconv.c
13
14nodist_libunicode_la_SOURCES = \
15	$(KERNEL_C)
16