mirror of
https://github.com/nasa/trick.git
synced 2024-12-27 00:31:07 +00:00
c4e60d9f9a
* Proposed fix for deadlock on shutdown * Terminate C style comment. * Added needed libs for applicable tests and updated the logic for when allowing/disallowing connections. * Need to load additional trick libs for applicable tests for Linux. --------- Co-authored-by: Hong Chen <hong.chen-1@nasa.gov>
44 lines
1.7 KiB
Makefile
44 lines
1.7 KiB
Makefile
|
|
#SYNOPSIS:
|
|
#
|
|
# make [all] - makes everything.
|
|
# make TARGET - makes the given target.
|
|
# make clean - removes all files generated by make.
|
|
|
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../../../share/trick/makefiles/Makefile.common
|
|
|
|
# Replace -isystem with -I so ICG doesn't skip Trick headers
|
|
TRICK_SYSTEM_CXXFLAGS := $(subst -isystem,-I,$(TRICK_SYSTEM_CXXFLAGS))
|
|
|
|
# Flags passed to the preprocessor.
|
|
TRICK_CXXFLAGS += -I$(GTEST_HOME)/include -I$(TRICK_HOME)/include -g -Wall -Wextra -std=c++11 ${TRICK_SYSTEM_CXXFLAGS} ${TRICK_TEST_FLAGS}
|
|
|
|
# so it seems like there's some weirdness linking in the bitfield objects since they are C
|
|
MM_OBJECTS = $(TRICK_HOME)/trick_source/sim_services/MemoryManager/object_${TRICK_HOST_CPU}/extract_bitfield.o \
|
|
$(TRICK_HOME)/trick_source/sim_services/MemoryManager/object_${TRICK_HOST_CPU}/extract_unsigned_bitfield.o
|
|
|
|
TRICK_LIBS = -L${TRICK_LIB_DIR} -ltrick_mm -ltrick_units -ltrick -ltrick_mm -ltrick_units -ltrick -ltrick_pyip -ltrick_connection_handlers -ltrick_comm -ltrick_mm -ltrick_units -ltrick
|
|
TRICK_EXEC_LINK_LIBS += -L${GTEST_HOME}/lib64 -L${GTEST_HOME}/lib -lgtest -lgtest_main -lpthread
|
|
|
|
|
|
# All tests produced by this Makefile. Remember to add new tests you
|
|
# created to the list.
|
|
TESTS = create_path_test
|
|
|
|
# House-keeping build targets.
|
|
|
|
all : $(TESTS)
|
|
|
|
test: $(TESTS)
|
|
./create_path_test --gtest_output=xml:${TRICK_HOME}/trick_test/create_path_test.xml
|
|
|
|
clean :
|
|
rm -f $(TESTS) *.o *.gcno *.gcda
|
|
rm -rf a pre_existing_output_dir/a ../a
|
|
|
|
create_path_test.o : create_path_test.cpp
|
|
$(TRICK_CXX) $(TRICK_CXXFLAGS) -c $<
|
|
|
|
create_path_test : create_path_test.o $(MM_OBJECTS)
|
|
$(TRICK_CXX) $(TRICK_SYSTEM_LDFLAGS) -o $@ $^ -L${TRICK_HOME}/lib_${TRICK_HOST_CPU} $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|