forked from Imagelibrary/rtems
utf8proc is a library for processing UTF-8 encoded Unicode strings. Some features are Unicode normalization, stripping of default ignorable characters, case folding and detection of grapheme cluster boundaries. For now utf8proc is intended for normalizing and folding strings for comparison purposes within the UTF-8 support of the FAT file system. This test will call interface methods of library utf8proc in order to make sure they compiled and linked ok. The library is third party, thus it should be sufficient for us to make sure we can build it correctly.
20 lines
530 B
Makefile
20 lines
530 B
Makefile
rtems_tests_PROGRAMS = utf8proc01
|
|
utf8proc01_SOURCES = init.c
|
|
|
|
dist_rtems_tests_DATA = utf8proc01.scn utf8proc01.doc
|
|
|
|
include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
|
|
include $(top_srcdir)/../automake/compile.am
|
|
include $(top_srcdir)/../automake/leaf.am
|
|
|
|
AM_CPPFLAGS += -I$(top_srcdir)/../support/include
|
|
|
|
LINK_OBJS = $(utf8proc01_OBJECTS)
|
|
LINK_LIBS = $(utf8proc01_LDLIBS)
|
|
|
|
utf8proc01$(EXEEXT): $(utf8proc01_OBJECTS) $(utf8proc01_DEPENDENCIES)
|
|
@rm -f utf8proc01$(EXEEXT)
|
|
$(make-exe)
|
|
|
|
include $(top_srcdir)/../automake/local.am
|