mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 06:27:49 +00:00
d3acfa5fc0
Adjusted all of the source code to point to the header files in their new locations. Adjusted the makefiles for the header locations as well. Added .gitignore files in the test directories to ignore test object code.
54 lines
1.7 KiB
Makefile
54 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 ${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
|
|
TRICK_EXEC_LINK_LIBS += ${GTEST_HOME}/lib/libgtest.a ${GTEST_HOME}/lib/libgtest_main.a
|
|
|
|
# All tests produced by this Makefile. Remember to add new tests you
|
|
# created to the list.
|
|
TESTS = TPROCTEClock_test BC635Clock_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)
|
|
#./GetTimeOfDayClock_test --gtest_output=xml:${TRICK_HOME}/trick_test/GetTimeOfDayClock.xml
|
|
#./TPROCTEClock_test --gtest_output=xml:${TRICK_HOME}/trick_test/TPROCTEClock.xml
|
|
#./BC635Clock_test --gtest_output=xml:${TRICK_HOME}/trick_test/BC635Clock.xml
|
|
|
|
|
|
clean :
|
|
rm -f $(TESTS) *.o
|
|
|
|
GetTimeOfDayClock_test.o : GetTimeOfDayClock_test.cpp
|
|
$(TRICK_CPPC) $(TRICK_CPPFLAGS) -c $<
|
|
|
|
GetTimeOfDayClock_test : GetTimeOfDayClock_test.o
|
|
$(TRICK_LD) $(TRICK_LDFLAGS) -o $@ $^ $(OTHER_OBJECTS) $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|
|
|
|
TPROCTEClock_test.o : TPROCTEClock_test.cpp
|
|
$(TRICK_CPPC) $(TRICK_CPPFLAGS) -c $<
|
|
|
|
TPROCTEClock_test : TPROCTEClock_test.o
|
|
$(TRICK_LD) $(TRICK_LDFLAGS) -o $@ $^ $(OTHER_OBJECTS) $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|
|
|
|
BC635Clock_test.o : BC635Clock_test.cpp
|
|
$(TRICK_CPPC) $(TRICK_CPPFLAGS) -c $<
|
|
|
|
BC635Clock_test : BC635Clock_test.o
|
|
$(TRICK_LD) $(TRICK_LDFLAGS) -o $@ $^ $(OTHER_OBJECTS) $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|
|
|