trick/trick_source/sim_services/Integrator/Makefile
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

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_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