Changeset 3499 for palm/trunk
- Timestamp:
- Nov 7, 2018 10:55:15 AM (6 years ago)
- Location:
- palm/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/SCRIPTS/palmbuild
r3494 r3499 27 27 # ----------------- 28 28 # $Id$ 29 # Temporarily avoid compilation of post-processing tool for surface output 30 # until a workaround for compiler-specific intrinsic functions is found. 31 # 32 # 3494 2018-11-06 14:51:27Z suehring 29 33 # Add tool for surface-output post-processing 30 34 # … … 500 504 cp -p ../UTIL/compare_palm_logs.f90 . 501 505 cp -p ../UTIL/agent_preprocessing/agent_preprocessing.f90 . 502 cp -p ../UTIL/surface_output_processing/surface_output_to_vtk.f90 .506 #cp -p ../UTIL/surface_output_processing/surface_output_to_vtk.f90 . 503 507 cp -p ../UTIL/Makefile_utilities . 504 508 tar -cf ${program_name}_sources.tar Makefile* *.$suf 505 rm combine_plot_fields.f90 compare_palm_logs.f90 agent_preprocessing.f90 surface_output_to_vtk.f90 Makefile_utilities509 rm combine_plot_fields.f90 compare_palm_logs.f90 agent_preprocessing.f90 Makefile_utilities #surface_output_to_vtk.f90 506 510 507 511 -
palm/trunk/UTIL/Makefile_utilities
r3494 r3499 23 23 # ----------------- 24 24 # $Id$ 25 # Temporarily avoid compilation of post-processing tool for surface output 26 # until a workaround for compiler-specific intrinsic functions is found. 27 # 28 # 3494 2018-11-06 14:51:27Z suehring 25 29 # Added make directive for surface-output post-processing 26 30 # … … 57 61 PROG2 = compare_palm_logs.x 58 62 PROG3 = agent_preprocessing 59 PROG4 = surface_output_to_vtk63 #PROG4 = surface_output_to_vtk 60 64 61 65 OBJS1 = combine_plot_fields.o 62 66 OBJS2 = compare_palm_logs.o 63 67 OBJS3 = agent_preprocessing.o 64 OBJS4 = surface_output_to_vtk.o68 #OBJS4 = surface_output_to_vtk.o 65 69 66 70 CC = cc … … 87 91 $(F90_SER) -o $(PROG3) $(OBJS3) $(LDFLAGS) 88 92 89 $(PROG4): $(OBJS4)90 $(F90_SER) -o $(PROG4) $(OBJS4) $(LDFLAGS)93 #$(PROG4): $(OBJS4) 94 # $(F90_SER) -o $(PROG4) $(OBJS4) $(LDFLAGS) 91 95 92 96 .f90.o:
Note: See TracChangeset
for help on using the changeset viewer.