mirror of
https://github.com/nasa/trick.git
synced 2024-12-25 07:41:08 +00:00
34 lines
1.2 KiB
Makefile
34 lines
1.2 KiB
Makefile
|
|
# $Id: Makefile 3787 2015-01-27 21:14:43Z jpenn1 $
|
|
|
|
include ${TRICK_HOME}/makefiles/Makefile.common
|
|
include ${TRICK_HOME}/makefiles/Makefile.tricklib
|
|
-include Makefile_deps
|
|
|
|
ifeq ($(USE_ER7_UTILS_INTEGRATORS), 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
|
|
|