2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
#SYNOPSIS:
|
|
|
|
#
|
|
|
|
# make [all] - makes everything.
|
|
|
|
# make TARGET - makes the given target.
|
|
|
|
# make clean - removes all files generated by make.
|
|
|
|
|
2019-06-21 18:15:22 +00:00
|
|
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../../../share/trick/makefiles/Makefile.common
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
# Flags passed to the preprocessor.
|
2023-02-07 21:35:22 +00:00
|
|
|
TRICK_CPPFLAGS += -I$(GTEST_HOME)/include -I$(TRICK_HOME)/include -g -Wall -Wextra ${TRICK_SYSTEM_CXXFLAGS} ${TRICK_TEST_FLAGS}
|
2024-03-28 20:15:19 +00:00
|
|
|
TRICK_LIBS = -L${TRICK_LIB_DIR} -ltrick -ltrick_units -ltrick_mm -ltrick_pyip -ltrick_connection_handlers -ltrick_comm
|
2016-07-01 16:50:06 +00:00
|
|
|
LIBS = -L${GTEST_HOME}/lib64 -L${GTEST_HOME}/lib -lgtest -lgtest_main
|
|
|
|
|
2015-07-16 20:02:33 +00:00
|
|
|
|
|
|
|
ifeq ($(TRICK_HOST_TYPE), Linux)
|
|
|
|
LIBS += -lpthread -lrt
|
|
|
|
endif
|
2015-07-01 23:21:56 +00:00
|
|
|
|
|
|
|
BASE_OBJECTS = ../object_${TRICK_HOST_CPU}/Clock.o\
|
|
|
|
../object_${TRICK_HOST_CPU}/clock_c_intf.o
|
|
|
|
|
|
|
|
|
2017-10-20 20:03:31 +00:00
|
|
|
GETTIMEOFDAY_CLOCK_OBJECTS = ${BASE_OBJECTS} GetTimeOfDayClock_test.o ../object_${TRICK_HOST_CPU}/GetTimeOfDayClock.o exec_get_rt_nap_stub.o
|
2015-07-01 23:21:56 +00:00
|
|
|
|
2015-02-26 15:02:31 +00:00
|
|
|
# All tests produced by this Makefile. Remember to add new tests you
|
|
|
|
# created to the list.
|
2021-08-02 05:40:55 +00:00
|
|
|
TESTS = GetTimeOfDayClock_test
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
# House-keeping build targets.
|
|
|
|
|
|
|
|
all : $(TESTS)
|
|
|
|
|
|
|
|
test: $(TESTS)
|
2021-08-02 05:40:55 +00:00
|
|
|
./GetTimeOfDayClock_test --gtest_output=xml:${TRICK_HOME}/trick_test/GetTimeOfDayClock.xml
|
2015-02-26 15:02:31 +00:00
|
|
|
|
|
|
|
clean :
|
|
|
|
rm -f $(TESTS) *.o
|
|
|
|
|
|
|
|
GetTimeOfDayClock_test.o : GetTimeOfDayClock_test.cpp
|
2023-02-07 21:35:22 +00:00
|
|
|
$(TRICK_CXX) $(TRICK_CPPFLAGS) -c $<
|
2015-02-26 15:02:31 +00:00
|
|
|
|
2015-07-01 23:21:56 +00:00
|
|
|
GetTimeOfDayClock_test : ${GETTIMEOFDAY_CLOCK_OBJECTS}
|
2024-03-28 20:15:19 +00:00
|
|
|
$(TRICK_CXX) $(TRICK_SYSTEM_LDFLAGS) $(TRICK_CPPFLAGS) -o $@ $^ $(TRICK_LIBS) ${LIBS}
|
2015-02-26 15:02:31 +00:00
|
|
|
|
2017-10-20 20:03:31 +00:00
|
|
|
exec_get_rt_nap_stub.o : exec_get_rt_nap_stub.cpp
|
2023-02-07 21:35:22 +00:00
|
|
|
$(TRICK_CXX) $(TRICK_CPPFLAGS) -c $<
|