mirror of
https://github.com/nasa/trick.git
synced 2024-12-22 14:32:24 +00:00
45 lines
1.2 KiB
Makefile
45 lines
1.2 KiB
Makefile
|
|
# $Id$
|
|
|
|
#SYNOPSIS:
|
|
#
|
|
# make [all] - makes everything.
|
|
# make TARGET - makes the given target.
|
|
# make clean - removes all files generated by make.
|
|
|
|
include ${TRICK_HOME}/makefiles/Makefile.common
|
|
|
|
# Flags passed to the preprocessor.
|
|
TRICK_CPPFLAGS += -I$(GTEST_HOME)/include -I$(TRICK_HOME)/trick_source -g -Wall -Wextra -DGTEST_HAS_TR1_TUPLE=0
|
|
|
|
TRICK_LIBS = ${TRICK_HOME}/lib_${TRICK_HOST_CPU}/libtrick.a
|
|
TRICK_EXEC_LINK_LIBS += ${GTEST_HOME}/lib/libgtest.a ${GTEST_HOME}/lib/libgtest_main.a
|
|
|
|
|
|
# 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 = Interpolator_unittest
|
|
|
|
OTHER_OBJECTS =
|
|
|
|
# House-keeping build targets.
|
|
|
|
all : $(TESTS)
|
|
|
|
test: $(TESTS)
|
|
./Interpolator_unittest --gtest_output=xml:${TRICK_HOME}/trick_test/Interpolator.xml
|
|
|
|
clean :
|
|
rm -f $(TESTS) *.o
|
|
rm -rf io_src xml
|
|
|
|
Interpolator_unittest.o : Interpolator_unittest.cc
|
|
$(TRICK_CPPC) $(TRICK_CPPFLAGS) -c $<
|
|
|
|
Interpolator_unittest : Interpolator_unittest.o
|
|
$(TRICK_LD) $(TRICK_CPPFLAGS) -o $@ $^ $(OTHER_OBJECTS) -L${TRICK_HOME}/lib_${TRICK_HOST_CPU} $(TRICK_LIBS) $(TRICK_EXEC_LINK_LIBS)
|
|
|