source: rtems/testsuites/libtests/utf8proc01/Makefile.am @ 2ee8b15

4.115
Last change on this file since 2ee8b15 was 2ee8b15, checked in by Ralf Kirchner <ralf.kirchner@…>, on 02/26/13 at 12:25:46

libtests: Add new test: utf8proc01

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.

  • Property mode set to 100644
File size: 530 bytes
Line 
1rtems_tests_PROGRAMS = utf8proc01
2utf8proc01_SOURCES = init.c
3
4dist_rtems_tests_DATA = utf8proc01.scn utf8proc01.doc
5
6include $(RTEMS_ROOT)/make/custom/@RTEMS_BSP@.cfg
7include $(top_srcdir)/../automake/compile.am
8include $(top_srcdir)/../automake/leaf.am
9
10AM_CPPFLAGS += -I$(top_srcdir)/../support/include
11
12LINK_OBJS = $(utf8proc01_OBJECTS)
13LINK_LIBS = $(utf8proc01_LDLIBS)
14
15utf8proc01$(EXEEXT): $(utf8proc01_OBJECTS) $(utf8proc01_DEPENDENCIES)
16        @rm -f utf8proc01$(EXEEXT)
17        $(make-exe)
18
19include $(top_srcdir)/../automake/local.am
Note: See TracBrowser for help on using the repository browser.