summaryrefslogtreecommitdiffstats
path: root/lib/libunicode/Makefile.am
blob: 0a4734c037bd2dedff8d729f21a8e342f8b0b4b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
include $(top_srcdir)/config/Rules.am

VPATH = $(top_srcdir)/module/unicode

# Includes kernel code, generate warnings for large stack frames
AM_CFLAGS += $(FRAME_LARGER_THAN)

DEFAULT_INCLUDES += \
	-I$(top_srcdir)/include \
	-I$(top_srcdir)/lib/libspl/include

noinst_LTLIBRARIES = libunicode.la

USER_C =

KERNEL_C = \
	u8_textprep.c \
	uconv.c

nodist_libunicode_la_SOURCES = \
	$(USER_C) \
	$(KERNEL_C)

EXTRA_DIST = $(USER_C)