mirror of
https://github.com/nasa/trick.git
synced 2025-01-09 14:32:53 +00:00
2c794060f4
Taking in the latest er7_utils directory and adding it into Trick in the same location it was as an external repository. Made one change to the files_to_ICG.hh file in the repository to remove the CheckpointHelper header files. Those go in the Trick files_to_ICG.hh file. refs #180 Conflicts: Makefile autoconf/configure.ac configure include/trick/files_to_ICG.hh share/trick/makefiles/Makefile.common share/trick/makefiles/config_user.mk.in trick_source/sim_services/Integrator/Makefile trick_source/trick_swig/Makefile
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
|
|
include ${TRICK_HOME}/makefiles/Makefile.common
|
|
include ${TRICK_HOME}/makefiles/Makefile.tricklib
|
|
-include Makefile_deps
|
|
|
|
ifeq ($(USE_ER7_UTILS), 1)
|
|
trick:
|
|
@echo "#####################################################################"
|
|
@echo "## Make ER7 ALGORITHMS ##"
|
|
@echo "#####################################################################"
|
|
$(MAKE) -C er7_algorithms
|
|
else
|
|
trick:
|
|
@echo "#####################################################################"
|
|
@echo "## Make Trick ALGORITHMS ##"
|
|
@echo "#####################################################################"
|
|
$(MAKE) -C trick_algorithms
|
|
endif
|
|
|
|
clean_algs:
|
|
@echo "#####################################################################"
|
|
@echo "## Clean Integ ALGORITHMS ##"
|
|
@echo "#####################################################################"
|
|
$(MAKE) -C er7_algorithms real_clean
|
|
$(MAKE) -C trick_algorithms real_clean
|
|
|
|
real_clean: clean_algs
|
|
|
|
# source files do not have usual relative path, so we have to add this to get "make depend" to work
|
|
depend: TRICK_CXXFLAGS += -Iinclude
|
|
|