Changeset 3494 for palm/trunk/UTIL/Makefile_utilities
- Timestamp:
- Nov 6, 2018 2:51:27 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
palm/trunk/UTIL/Makefile_utilities
r3208 r3494 23 23 # ----------------- 24 24 # $Id$ 25 # Added make directive for surface-output post-processing 26 # 27 # 3208 2018-08-27 13:10:50Z sward 25 28 # Added make directive for agent_preprocessing tool 26 29 # … … 54 57 PROG2 = compare_palm_logs.x 55 58 PROG3 = agent_preprocessing 59 PROG4 = surface_output_to_vtk 56 60 57 61 OBJS1 = combine_plot_fields.o 58 62 OBJS2 = compare_palm_logs.o 59 63 OBJS3 = agent_preprocessing.o 64 OBJS4 = surface_output_to_vtk.o 60 65 61 66 CC = cc … … 71 76 72 77 73 all: $(PROG1) $(PROG2) $(PROG3) 78 all: $(PROG1) $(PROG2) $(PROG3) $(PROG4) 74 79 75 80 $(PROG1): $(OBJS1) … … 82 87 $(F90_SER) -o $(PROG3) $(OBJS3) $(LDFLAGS) 83 88 89 $(PROG4): $(OBJS4) 90 $(F90_SER) -o $(PROG4) $(OBJS4) $(LDFLAGS) 91 84 92 .f90.o: 85 93 $(F90_SER) $(F90FLAGS) $(COPT) -c $<
Note: See TracChangeset
for help on using the changeset viewer.