2018-10-25 20:14:52 +00:00
|
|
|
|
|
|
|
#SYNOPSIS:
|
|
|
|
#
|
|
|
|
# make [all] - makes everything.
|
|
|
|
# make TARGET - makes the given target.
|
|
|
|
# make clean - removes all files generated by make.
|
|
|
|
|
|
|
|
include ${TRICK_HOME}/share/trick/makefiles/Makefile.common
|
|
|
|
|
|
|
|
# Flags passed to the preprocessor.
|
|
|
|
TRICK_CPPFLAGS += -I$(GTEST_HOME)/include -I$(TRICK_HOME)/include -g -Wall -Wextra -DGTEST_HAS_TR1_TUPLE=0
|
|
|
|
|
|
|
|
TRICK_LIBS = ${TRICK_LIB_DIR}/libtrick.a
|
2018-11-27 20:24:48 +00:00
|
|
|
TRICK_EXEC_LINK_LIBS += -L${GTEST_HOME}/lib64 -L${GTEST_HOME}/lib -lgtest -lpthread
|
2018-10-25 20:14:52 +00:00
|
|
|
|
|
|
|
# Added for Ubuntu... not required for other systems.
|
|
|
|
TRICK_EXEC_LINK_LIBS += -lpthread
|
|
|
|
|
|
|
|
# All tests produced by this Makefile. Remember to add new tests you
|
|
|
|
# created to the list.
|
|
|
|
TESTS = unicode_utils_test
|
|
|
|
|
|
|
|
OTHER_OBJECTS =
|
|
|
|
|
|
|
|
# House-keeping build targets.
|
|
|
|
|
|
|
|
all : $(TESTS)
|
|
|
|
|
|
|
|
test: $(TESTS)
|
|
|
|
./unicode_utils_test --gtest_output=xml:${TRICK_HOME}/trick_test/Unicode_utils.xml
|
|
|
|
|
|
|
|
clean :
|
|
|
|
rm -f $(TESTS) *.o
|
|
|
|
rm -rf io_src xml
|
|
|
|
|
|
|
|
unicode_utils_test.o : unicode_utils_test.cpp
|
2019-06-18 16:00:08 +00:00
|
|
|
$(TRICK_CXX) $(TRICK_CPPFLAGS) -c $<
|
2018-10-25 20:14:52 +00:00
|
|
|
|
|
|
|
unicode_utils_test : unicode_utils_test.o
|
2019-06-18 16:00:08 +00:00
|
|
|
$(TRICK_CXX) $(TRICK_CPPFLAGS) -o $@ $^ $(OTHER_OBJECTS) -L${TRICK_HOME}/lib_${TRICK_HOST_CPU} $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|
2018-10-25 20:14:52 +00:00
|
|
|
|