mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-11-24 07:00:01 -05:00
Syntax:
DefineRegex.VariableName {
String "something to match"
Regex "(me)thi(ng)"
}
Result:
- configuration variable "VariableName" is equal to "mething"
- configuration variable "VariableName1" is equal to "me"
- configuration variable "VariableName2" is equal to "ng"
Notes:
The "Flags" string in the DefineRegex compound may specify
the compilation flags (e = extended, i = ignore case,
s = no substitutes, n = newline). See 'man 3 regex' for
more details.
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
11 lines
215 B
Makefile
11 lines
215 B
Makefile
EXTRA_LTLIBRARIES = libucm.la
|
|
|
|
libucm_la_SOURCES = utils.c parser.c ucm_cond.c ucm_subs.c ucm_include.c \
|
|
ucm_regex.c main.c
|
|
|
|
noinst_HEADERS = ucm_local.h
|
|
|
|
all: libucm.la
|
|
|
|
|
|
AM_CPPFLAGS=-I$(top_srcdir)/include
|