mirror of
https://github.com/nasa/trick.git
synced 2024-12-21 22:17:51 +00:00
7a08829d3d
Like other TRICK_SYSTEM variables, users should not modify this. This renders TRICK_LDFLAGS and TRICK_USER_LINK_LIBS redundant. While we would like to eventually remove TRICK_USER_LINK_LIBS, it's not likely to ever actually happen. Refs #369
39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
|
|
#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 = -L ${TRICK_LIB_DIR} -ltrick_mm -ltrick_units -ltrick
|
|
TRICK_EXEC_LINK_LIBS += -L${GTEST_HOME}/lib64 -L${GTEST_HOME}/lib -lgtest -lgtest_main
|
|
|
|
# All tests produced by this Makefile. Remember to add new tests you
|
|
# created to the list.
|
|
TESTS = Executive_test
|
|
|
|
OTHER_OBJECTS = ../../include/object_${TRICK_HOST_CPU}/io_JobData.o \
|
|
../../include/object_${TRICK_HOST_CPU}/io_SimObject.o
|
|
|
|
# House-keeping build targets.
|
|
|
|
all : $(TESTS)
|
|
|
|
test: $(TESTS)
|
|
./Executive_test --gtest_output=xml:${TRICK_HOME}/trick_test/Executive.xml
|
|
|
|
clean :
|
|
rm -f $(TESTS) *.o
|
|
|
|
Executive_test.o : Executive_test.cpp
|
|
$(TRICK_CPPC) $(TRICK_CPPFLAGS) -c $<
|
|
|
|
Executive_test : Executive_test.o
|
|
$(TRICK_CPPC) $(TRICK_SYSTEM_LDFLAGS) -o $@ $^ $(OTHER_OBJECTS) $(TRICK_LIBS) $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|
|
|