source: palm/tags/release-3.7a/UTIL/Makefile @ 4003

Last change on this file since 4003 was 487, checked in by raasch, 14 years ago

bugfix in utility makefile of release-3.7a

File size: 1008 bytes
Line 
1#------------------------------------------------------------------------------!
2#
3# Actual revisions:
4# -----------------
5# compare_palm_logs added
6#
7#
8# Former revisions:
9# -----------------
10# $Id$
11#
12# Initial revision somewhere in 2003/04
13#
14# Description:
15# ------------
16# Makefile for generating the utility programs needed by mrun and palm
17#------------------------------------------------------------------------------!
18
19PROG1 =  ../SCRIPTS/combine_plot_fields.x
20PROG2 =  ../SCRIPTS/compare_palm_logs.x
21PROG3 =  ../SCRIPTS/interpret_config.x
22
23OBJS1 =  combine_plot_fields.o
24OBJS2 =  compare_palm_logs.o
25OBJS3 =  interpret_config.o
26
27CC = cc
28CFLAGS = -O
29
30F90 =
31F90_SER =
32COPT =
33F90FLAGS =
34LDFLAGS =
35
36.SUFFIXES: $(SUFFIXES) .f90
37
38
39all: $(PROG1) $(PROG2) $(PROG3)
40
41$(PROG1): $(OBJS1)
42        $(F90_SER) -o $(PROG1) $(OBJS1) $(LDFLAGS)
43
44$(PROG2): $(OBJS2)
45        $(F90_SER) -o $(PROG2) $(OBJS2) $(LDFLAGS)
46
47$(PROG3): $(OBJS3)
48        $(F90_SER) -o $(PROG3) $(OBJS3) $(LDFLAGS)
49
50.f90.o:
51        $(F90_SER) $(F90FLAGS) $(COPT) -c $<
52
53
Note: See TracBrowser for help on using the repository browser.