blob: f51caab964f1df3bc328febf6db8feef5ae08893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
INCLUDES = -I$(top_builddir) -I$(top_srcdir)/src/include
noinst_PROGRAMS = t
t_SOURCES = salvage.c
t_LDADD = $(top_builddir)/libwiredtiger.la
t_LDFLAGS = -static
# Run this during a "make check" smoke test.
TESTS = $(noinst_PROGRAMS)
clean-local:
rm -rf WiredTiger* *.core __*
|