summaryrefslogtreecommitdiff
path: root/test/Makefile.am
blob: 34b750dd972f6f327929f04fdd8d2c557def56b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Rules for the test code (use `make check` to execute)
if ENABLE_TESTS

TESTS = logintest

EXTRA_DIST = \
	dgunit.h \
	scopedfile.h

check_PROGRAMS = $(TESTS)

logintest_CXXFLAGS = -DOUTPUT=\"logintest\" \
	$(DEBUG_FLAGS) \
	-I$(top_srcdir)/src
logintest_LDFLAGS =
logintest_SOURCES = \
	logintest.cc \
	dgtest.cc

endif