mirror of
https://github.com/nasa/trick.git
synced 2025-03-11 15:04:14 +00:00
commit
11eae2c43d
19
Makefile
19
Makefile
@ -177,19 +177,9 @@ $(UTILS_DIRS): icg_sim_serv
|
|||||||
# 1.1.1.3 Compile the objects in the specified er7_utils directories.
|
# 1.1.1.3 Compile the objects in the specified er7_utils directories.
|
||||||
.PHONY: $(ER7_UTILS_DIRS)
|
.PHONY: $(ER7_UTILS_DIRS)
|
||||||
$(ER7_UTILS_DIRS): TRICK_CXXFLAGS += -Wno-unused-parameter
|
$(ER7_UTILS_DIRS): TRICK_CXXFLAGS += -Wno-unused-parameter
|
||||||
$(ER7_UTILS_DIRS): make_er7_makefiles icg_sim_serv
|
$(ER7_UTILS_DIRS): icg_sim_serv
|
||||||
@ $(MAKE) -C $@ trick
|
@ $(MAKE) -C $@ trick
|
||||||
|
|
||||||
.PHONY: make_er7_makefiles
|
|
||||||
make_er7_makefiles:
|
|
||||||
@for i in $(ER7_UTILS_DIRS) ; do \
|
|
||||||
$(CP) ${TRICK_HOME}/trick_source/sim_services/Executive/Makefile $$i; \
|
|
||||||
done
|
|
||||||
|
|
||||||
ifeq ($(USE_ER7_UTILS), 1)
|
|
||||||
icg_sim_serv: | make_er7_makefiles
|
|
||||||
endif
|
|
||||||
|
|
||||||
# 1.1.1.4 Generate interface code (using ICG) for the specified sim_services
|
# 1.1.1.4 Generate interface code (using ICG) for the specified sim_services
|
||||||
# header files.
|
# header files.
|
||||||
.PHONY: icg_sim_serv
|
.PHONY: icg_sim_serv
|
||||||
@ -285,10 +275,9 @@ clean_sim_serv:
|
|||||||
done
|
done
|
||||||
@ $(MAKE) -C ${TRICK_HOME}/trick_source/sim_services/mains real_clean
|
@ $(MAKE) -C ${TRICK_HOME}/trick_source/sim_services/mains real_clean
|
||||||
|
|
||||||
clean_er7_utils: make_er7_makefiles
|
clean_er7_utils:
|
||||||
@for i in $(ER7_UTILS_DIRS) ; do \
|
@for i in $(ER7_UTILS_DIRS) ; do \
|
||||||
$(MAKE) -C $$i real_clean ; \
|
$(MAKE) -C $$i real_clean ; \
|
||||||
rm $$i/Makefile; \
|
|
||||||
done
|
done
|
||||||
|
|
||||||
clean_utils:
|
clean_utils:
|
||||||
@ -301,10 +290,6 @@ clean_swig:
|
|||||||
$(MAKE) -C $$i real_clean ; \
|
$(MAKE) -C $$i real_clean ; \
|
||||||
done
|
done
|
||||||
|
|
||||||
ifeq ($(USE_ER7_UTILS), 1)
|
|
||||||
clean_swig: make_er7_makefiles
|
|
||||||
endif
|
|
||||||
|
|
||||||
clean_ICG :
|
clean_ICG :
|
||||||
$(MAKE) -C ${TRICK_HOME}/trick_source/codegen/Interface_Code_Gen clean
|
$(MAKE) -C ${TRICK_HOME}/trick_source/codegen/Interface_Code_Gen clean
|
||||||
|
|
||||||
|
@ -8,7 +8,6 @@ COMPILE_DIRS = \
|
|||||||
SIM_python_namespace \
|
SIM_python_namespace \
|
||||||
SIM_rti \
|
SIM_rti \
|
||||||
SIM_stls \
|
SIM_stls \
|
||||||
SIM_target_specific_variables \
|
|
||||||
SIM_test_dp \
|
SIM_test_dp \
|
||||||
SIM_test_dr \
|
SIM_test_dr \
|
||||||
SIM_test_io \
|
SIM_test_io \
|
||||||
@ -22,6 +21,7 @@ SIMS_NEEDING_TEST = \
|
|||||||
SIM_demo_inputfile \
|
SIM_demo_inputfile \
|
||||||
SIM_measurement_units \
|
SIM_measurement_units \
|
||||||
SIM_parse_s_define \
|
SIM_parse_s_define \
|
||||||
|
SIM_target_specific_variables \
|
||||||
SIM_test_abstract \
|
SIM_test_abstract \
|
||||||
SIM_test_inherit \
|
SIM_test_inherit \
|
||||||
SIM_test_ip2 \
|
SIM_test_ip2 \
|
||||||
|
1
trick_source/er7_utils/.gitignore
vendored
1
trick_source/er7_utils/.gitignore
vendored
@ -1 +0,0 @@
|
|||||||
Makefile
|
|
3
trick_source/er7_utils/common.mk
Normal file
3
trick_source/er7_utils/common.mk
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../share/trick/makefiles/Makefile.common
|
||||||
|
include ${TRICK_HOME}/share/trick/makefiles/Makefile.tricklib
|
||||||
|
-include Makefile_deps
|
1
trick_source/er7_utils/integration/abm4/Makefile
Normal file
1
trick_source/er7_utils/integration/abm4/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/beeman/Makefile
Normal file
1
trick_source/er7_utils/integration/beeman/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/core/Makefile
Normal file
1
trick_source/er7_utils/integration/core/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/euler/Makefile
Normal file
1
trick_source/er7_utils/integration/euler/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/mm4/Makefile
Normal file
1
trick_source/er7_utils/integration/mm4/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/nl2/Makefile
Normal file
1
trick_source/er7_utils/integration/nl2/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rk2_heun/Makefile
Normal file
1
trick_source/er7_utils/integration/rk2_heun/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rk2_midpoint/Makefile
Normal file
1
trick_source/er7_utils/integration/rk2_midpoint/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rk4/Makefile
Normal file
1
trick_source/er7_utils/integration/rk4/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rkf45/Makefile
Normal file
1
trick_source/er7_utils/integration/rkf45/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rkf78/Makefile
Normal file
1
trick_source/er7_utils/integration/rkf78/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rkg4/Makefile
Normal file
1
trick_source/er7_utils/integration/rkg4/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/integration/rkn4/Makefile
Normal file
1
trick_source/er7_utils/integration/rkn4/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
1
trick_source/er7_utils/interface/Makefile
Normal file
1
trick_source/er7_utils/interface/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../common.mk
|
1
trick_source/er7_utils/math/Makefile
Normal file
1
trick_source/er7_utils/math/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../common.mk
|
1
trick_source/er7_utils/trick/integration/Makefile
Normal file
1
trick_source/er7_utils/trick/integration/Makefile
Normal file
@ -0,0 +1 @@
|
|||||||
|
include $(dir $(lastword $(MAKEFILE_LIST)))../../common.mk
|
Loading…
x
Reference in New Issue
Block a user