11 lines
475 B
Makefile
11 lines
475 B
Makefile
|
INCLUDES = @CHECK_CFLAGS@
|
||
|
if HAVE_CHECK
|
||
|
## Had to disable check_lht because lht needs to be rewritten.
|
||
|
TESTS = check_logEntry check_logWriter check_operations check_transactional2 check_recovery
|
||
|
else
|
||
|
TESTS =
|
||
|
endif
|
||
|
noinst_PROGRAMS = $(TESTS)
|
||
|
LDADD = @CHECK_LIBS@ $(top_builddir)/src/lladd/liblladd.a $(top_builddir)/src/pbl/libpbl.a
|
||
|
CLEANFILES = check_lht.log check_logEntry.log storefile.txt logfile.txt blob0_file.txt blob1_file.txt
|
||
|
AM_CFLAGS= -g -Wall -pedantic -std=gnu99
|