mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
d1b28647ed
and builds a *very* efficient engine that will tell you which regex a string matches with only a single pass through the string. To be used in the config file when specifying devices. o Anchor's aren't supported yet (^ and $) but that won't take long. o Also when we get some realistic config files we may want to consider adding an extra level of indirection to the dfa state in order to compress the table. It all depends on how large typical tables get.
27 lines
464 B
Makefile
27 lines
464 B
Makefile
#
|
|
# Copyright (C) 2001 Sistina Software (UK) Limited
|
|
#
|
|
# This file is released under the GPL.
|
|
#
|
|
|
|
srcdir = @srcdir@
|
|
top_srcdir = @top_srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
SOURCES=\
|
|
parse_t.c \
|
|
matcher_t.c
|
|
|
|
TARGETS=\
|
|
parse_t \
|
|
matcher_t
|
|
|
|
include ../../make.tmpl
|
|
|
|
parse_t: parse_t.o $(top_srcdir)/lib/liblvm.a
|
|
$(CC) -o parse_t parse_t.o -L$(top_srcdir)/lib -llvm
|
|
|
|
matcher_t: matcher_t.o $(top_srcdir)/lib/liblvm.a
|
|
$(CC) -o matcher_t matcher_t.o -L$(top_srcdir)/lib -llvm
|
|
|