diff options
Diffstat (limited to 'roms/edk2/MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/sample/Makefile.am')
-rw-r--r-- | roms/edk2/MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/sample/Makefile.am | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/roms/edk2/MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/sample/Makefile.am b/roms/edk2/MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/sample/Makefile.am new file mode 100644 index 000000000..2bf469711 --- /dev/null +++ b/roms/edk2/MdeModulePkg/Universal/RegularExpressionDxe/oniguruma/sample/Makefile.am @@ -0,0 +1,49 @@ +#noinst_PROGRAMS = encode listcap names posix simple sql syntax crnl + +lib_onig = ../src/libonig.la +LDADD = $(lib_onig) + +AM_CFLAGS = -Wall +AM_LDFLAGS = -L$(prefix)/lib +AM_CPPFLAGS = -I$(top_srcdir)/src + +if ENABLE_POSIX_API +TESTS = encode listcap names posix simple sql syntax user_property callout echo count bug_fix regset +else +TESTS = encode listcap names simple sql syntax user_property callout echo count bug_fix regset +endif + +check_PROGRAMS = $(TESTS) + +encode_SOURCES = encode.c +listcap_SOURCES = listcap.c +names_SOURCES = names.c +posix_SOURCES = posix.c +simple_SOURCES = simple.c +sql_SOURCES = sql.c +syntax_SOURCES = syntax.c +user_property_SOURCES = user_property.c +callout_SOURCES = callout.c +echo_SOURCES = echo.c +count_SOURCES = count.c +bug_fix = bug_fix.c +regset_SOURCES = regset.c + +sampledir = . + +test: $(TESTS) + $(sampledir)/encode + $(sampledir)/listcap + $(sampledir)/names +if ENABLE_POSIX_API + $(sampledir)/posix +endif + $(sampledir)/simple + $(sampledir)/sql + $(sampledir)/syntax + $(sampledir)/user_property + $(sampledir)/callout + $(sampledir)/echo + $(sampledir)/count + $(sampledir)/bug_fix + $(sampledir)/regset |