summaryrefslogtreecommitdiff
path: root/tests/utils/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/utils/GNUmakefile')
-rwxr-xr-xtests/utils/GNUmakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/utils/GNUmakefile b/tests/utils/GNUmakefile
index 98526e7..1ab17e8 100755
--- a/tests/utils/GNUmakefile
+++ b/tests/utils/GNUmakefile
@@ -4,16 +4,19 @@ SUBDIRS =
INCLUDE_DIRS = \
-I. -I$(TOPDIR)/src \
+ -I$(TOPDIR)/include \
-I$(TOPDIR)/include/util
INCLUDE_LDFLAGS =
-INCLUDE_LIBS =
+INCLUDE_LIBS = \
+ $(TOPDIR)/src/libutil/libutil.a
TEST_CPP_BINS = \
test1$(EXE) \
test2$(EXE) \
- test3$(EXE)
+ test3$(EXE) \
+ test4$(EXE)
OBJS =
@@ -30,3 +33,4 @@ local_test:
@./exec_test test1 "TypeList and TypeTraits"
@./exec_test test2 "TypeInfo C++ demangle"
@./exec_test test3 "Singleton"
+ @./exec_test test4 "StringUtils split"