diff options
author | Mathias Gumz <akira at fluxbox dot org> | 2011-03-18 14:51:17 (GMT) |
---|---|---|
committer | Mathias Gumz <akira at fluxbox dot org> | 2011-03-18 14:51:17 (GMT) |
commit | 253f13d46ed96dd9a4ed8619820d14098d547fc8 (patch) | |
tree | b0d485fab64182be446d764d8adc211e8804eb55 /src/tests/Makefile.am | |
parent | 81b240e9762acde7e3682a6cec02932564d122f6 (diff) | |
download | fluxbox_pavel-253f13d46ed96dd9a4ed8619820d14098d547fc8.zip fluxbox_pavel-253f13d46ed96dd9a4ed8619820d14098d547fc8.tar.bz2 |
some love to src/tests, use automake to use the same build environment as the rest of fluxbox
Diffstat (limited to 'src/tests/Makefile.am')
-rw-r--r-- | src/tests/Makefile.am | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/tests/Makefile.am b/src/tests/Makefile.am new file mode 100644 index 0000000..85d42cf --- /dev/null +++ b/src/tests/Makefile.am | |||
@@ -0,0 +1,22 @@ | |||
1 | INCLUDES= -I.. | ||
2 | |||
3 | noinst_PROGRAMS= \ | ||
4 | testTexture \ | ||
5 | testFont \ | ||
6 | testSignals \ | ||
7 | testKeys \ | ||
8 | testDemandAttention \ | ||
9 | testFullscreen \ | ||
10 | testStringUtil | ||
11 | |||
12 | testTexture_SOURCES = texturetest.cc | ||
13 | testFont_SOURCES = testFont.cc | ||
14 | testSignals_SOURCES = testSignals.cc | ||
15 | testKeys_SOURCES = testKeys.cc | ||
16 | testDemandAttention_SOURCES = testDemandAttention.cc | ||
17 | #testResource_SOURCES = Resourcetest.cc | ||
18 | testFullscreen_SOURCES = fullscreentest.cc | ||
19 | testStringUtil_SOURCES = StringUtiltest.cc | ||
20 | |||
21 | LDADD=../FbTk/libFbTk.a | ||
22 | |||