@@ -43,22 +43,14 @@ include $(AMREX_HOME)/Tools/GNUMake/Make.defs
43
43
44
44
MICROPHYSICS_AUTO_SOURCE_DIR := $(TmpBuildDir)/microphysics_sources/$(optionsSuffix).EXE
45
45
46
- all: build_status $(executable) starkiller_library
46
+ all: build_status $(executable)
47
47
@echo SUCCESS
48
48
49
49
build_status:
50
50
$(AMREX_HOME)/Tools/C_scripts/describe_sources.py \
51
51
--git_names "Microphysics AMReX" \
52
52
--git_dirs "$(TOP) $(AMREX_HOME)"
53
53
54
- starkiller_library: $(executable)
55
- ifeq ($(USE_COMPILE_WITH_F2PY), TRUE)
56
- @echo Wrapping sources with f90wrap ...
57
- sh dowrap.sh
58
- @echo Linking objects with f2py ...
59
- sh dof2py.sh
60
- endif
61
-
62
54
# OpenACC support
63
55
ifeq ($(USE_ACC), TRUE)
64
56
DEFINES += -DACC
@@ -68,10 +60,6 @@ ifeq ($(USE_REACT), TRUE)
68
60
DEFINES += -DREACTIONS
69
61
endif
70
62
71
- ifeq ($(USE_COMPILE_WITH_F2PY), TRUE)
72
- DEFINES += -DCOMPILE_WITH_F2PY
73
- endif
74
-
75
63
76
64
#------------------------------------------------------------------------------
77
65
# AMReX
@@ -198,20 +186,9 @@ $(objEXETempDir)/AMReX_buildInfo.o: .FORCE
198
186
include $(AMREX_HOME)/Tools/GNUMake/Make.rules
199
187
200
188
clean::
201
- $(SILENT) $(RM) extern.F90
202
- $(SILENT) $(RM) network_properties.F90 network_properties.H
203
- $(SILENT) $(RM) $(MICROPHYSICS_AUTO_SOURCE_DIR)/*.H $(MICROPHYSICS_AUTO_SOURCE_DIR)/*.[fF]90
204
- $(SILENT) $(RM) extern_parameters.cpp extern_parameters_F.H extern_parameters.H
205
-
206
- # Older versions of CASTRO generated a "network.f90" file when using
207
- # the general_null network, which conflicts with our generalized
208
- # network.f90 file. So we should delete the local copy if we are
209
- # trying to rebuild from an old directory.
210
- # The same is true for "extern.f90".
211
-
212
- clean::
213
- $(RM) network.f90
214
- $(RM) extern.f90
189
+ $(SILENT) $(RM) network_properties.H
190
+ $(SILENT) $(RM) $(MICROPHYSICS_AUTO_SOURCE_DIR)/*.H
191
+ $(SILENT) $(RM) extern_parameters.cpp extern_parameters.H
215
192
216
193
217
194
# for debugging. To see the value of a Makefile variable,
0 commit comments