1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
noinst_LTLIBRARIES = libidzebra-dfa.la
noinst_PROGRAMS = agrep lexer grepper
check_PROGRAMS = test_dfa
TESTS = $(check_PROGRAMS)
test_dfa_SOURCES = test_dfa.c
AM_CPPFLAGS = -I$(srcdir)/../include $(YAZINC)
LDADD = libidzebra-dfa.la ../util/libidzebra-util.la $(YAZLALIB)
agrep_SOURCES = agrep.c
lexer_SOURCES = lexer.c readfile.c
grepper_SOURCES = grepper.c
libidzebra_dfa_la_SOURCES = dfa.c imalloc.c states.c set.c bset.c \
dfap.h imalloc.h lexer.h
clean-local:
-rm -f *.log
|