-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
42 lines (30 loc) · 963 Bytes
/
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
############################################################
#
# Compiler and linker
#
CMP = gfortran -c
LNK = gfortran
OPT = -O2
OPT = -Og -g -Wall -Wextra -pedantic -fcheck=all
############################################################
#
# Objects: list of all objects *.o
OBJS =
############################################################
# Executable generation
#
pipeMeshNek: pipeMeshNek.o $(OBJS)
$(LNK) $(OPT) pipeMeshNek.o $(OBJS) \
-o pipeMeshNek
############################################################
# Objects generation
pipeMeshNek.o: pipeMeshNek.f90 $(OBJS)
$(CMP) $(OPT) pipeMeshNek.f90
############################################################
# Cleaning command to remove all objects *.o, files *.mod and
# the executables *.exe
clean:
@echo cleaning
@rm -f *.o *.mod
# The command "make clean" deletes all the indicated files
############################################################