-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
46 lines (38 loc) · 1.02 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
FFLAGS = -g
#FFLAGS = -g -nbs -C -d2 -FR
#FFLAGS = -g -nbs -C
exe = gdmc
FC = gfortran
#FC = ifc -Vaxlib
#FC = g77
INCL =
MPIFLAG =
LIBS =
###############################################################
# MPI parameters: replace identical parameters if MPI needed #
###############################################################
#FC = pgf90 -Mfree
#INCL = -I/opt/scali/include
#MPIFLAG = -DMPI
#LIBS = -L/opt/scali/lib -lfmpi -lmpi
################## end of MPI section #########################
OBJ = kmc.o io.o trans.o get.o cutstr.o
#################################################################################
# targets
##################################################################################
# goal
$(exe): $(OBJ)
$(FC) $(FFLAGS) -o $(exe) $(OBJ) $(LIBS)
# targets
kmc.o : kmc.f
$(FC) $(FFLAGS) -c $*.f
io.o : io.f
$(FC) $(FFLAGS) -c $*.f
trans.o: trans.f
$(FC) $(FFLAGS) -c $*.f
get.o: get.f
$(FC) $(FFLAGS) -c $*.f
cutstr.o: cutstr.f
$(FC) $(FFLAGS) -c $*.f
clean:
@rm -f $(OBJ) $(exe)