6198522971
linear hash implementation. In particular, I've implemented (sort of) an iterator for linear hash, and (sort of) ported libdfa to linearhash.c I say 'sort of' since this functionality is broken with this commit. On the other hand, CVS should build now, and the tests under lladd will pass. libdfa's new tests don't pass at the moment.
12 lines
569 B
Makefile
12 lines
569 B
Makefile
LDADD= @CHECK_LIBS@ $(top_builddir)/src/libdfa/libdfa.a $(top_builddir)/src/lladd/liblladd.a $(top_builddir)/src/pbl/libpbl.a $(top_builddir)/src/libdfa/librw.a -lconfuse
|
|
bin_PROGRAMS=ping_pong_dfa fork_bomb star
|
|
AM_FLAGS= -g -Wall -pedantic -std=c99
|
|
if HAVE_CHECK
|
|
TESTS = check_networksetup ping_pong_dfa
|
|
else
|
|
TESTS =
|
|
endif
|
|
noinst_PROGRAMS = $(TESTS)
|
|
#LDADD = @CHECK_LIBS@ $(top_builddir)/src/lladd/liblladd.a $(top_builddir)/src/pbl/libpbl.a $(top_builddir)/src/libdfa/librw.a #-lefence
|
|
CLEANFILES = check_networksetup.log
|
|
#AM_CFLAGS= -g -Wall -pedantic -std=gnu99
|