blob: d86b473760a5f67d08dedf5ba1664eb755cc03e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
TESTS = allocator_test
check_PROGRAMS = allocator_test
noinst_PROGRAMS = allocator_test
allocator_test_SOURCES = allocator_test.c ../util/create_env.c
allocator_test_LDADD = \
$(top_builddir)/src/libaxutil.la
INCLUDES = -I$(top_builddir)/include \
-I ../../../axiom/include \
-I ../../../include \
-I ../../../test/cutest/include
|