-
Notifications
You must be signed in to change notification settings - Fork 11
/
Makefile
88 lines (76 loc) · 2.25 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
#This make file builds the sub folder make files
#example make call for bigred2
# make cluster-submit Q=1500 n=25 c=0.150 q=35 D=56 d=6.7 i=0 N=150
PROGPRE = preprocessor
PROGPOST = postprocessor
JOBSCR = macroassembly.pbs
TESTSCR = test.pbs
BIN = bin
PRE = src/preprocessing
POST = src/postprocessing
SCRIPT = scripts
Q=1500
n=25
c=0.150
q=35
D=56
d=6.7
i=0
N=150
NODESIZE=4
all:
@echo "Starting build of the project";
ifeq ($(CCF),BigRed2)
+$(MAKE) -C $(PRE) cluster-install
+$(MAKE) -C $(POST) cluster-install
else ifeq ($(CCF),nanoHUB)
+$(MAKE) -C $(PRE) nanoHUB-install
+$(MAKE) -C $(POST) nanoHUB-install
else
+$(MAKE) -C $(PRE) install
+$(MAKE) -C $(POST) install
endif
@echo "Ending the build of the project";
local-install: create-dirs
make all
cluster-install: create-dirs
make CCF=BigRed2 all
nanoHUB-install: create-dirs
make CCF=nanoHUB all
create-dirs:
@echo "Checking and creating needed sub-directories in the $(BIN) directory"
if ! [ -d $(BIN) ]; then mkdir $(BIN); fi
if ! [ -d $(BIN)/outfiles ]; then mkdir $(BIN)/outfiles; fi
if ! [ -d $(BIN)/infiles ]; then mkdir $(BIN)/infiles; fi
@echo "Directory creation is over."
cluster-submit:
@echo "Running the preprocessor to create lammps script."
+$(MAKE) -C $(BIN) run-preprocessor Q=$(Q) n=$(n) c=$(c) q=$(q) D=$(D) d=$(d) i=$(i) N=$(N)
@echo "Running the preprocessor is over."
@echo "Installing jobscript into $(BIN) directory"
cp -f $(SCRIPT)/$(JOBSCR) $(BIN)
+$(MAKE) -C $(BIN) submit
local-run-parallel:
@echo "Running the preprocessor to create lammps script."
+$(MAKE) -C $(BIN) run-preprocessor Q=$(Q) n=$(n) c=$(c) q=$(q) D=$(D) d=$(d) i=$(i) N=$(N)
@echo "Running the preprocessor is over."
+$(MAKE) -C $(BIN) run-local-parallel NODESIZE=$(NODESIZE)
local-run:
@echo "Running the preprocessor to create lammps script."
+$(MAKE) -C $(BIN) run-preprocessor Q=$(Q) n=$(n) c=$(c) q=$(q) D=$(D) d=$(d) i=$(i) N=$(N)
@echo "Running the preprocessor is over."
+$(MAKE) -C $(BIN) run-local-serial
clean:
rm -f $(PRE)/*.o
rm -f $(PRE)/$(PROGPRE)
rm -f $(BIN)/$(PROGPRE)
rm -f $(POST)/*.o
rm -f $(POST)/$(PROGPOST)
rm -f $(BIN)/$(PROGPOST)
dataclean:
rm -f $(BIN)/outfiles/*
rm -f $(BIN)/dumpfiles/*
rm -f $(BIN)/*.lammps
rm -f $(BIN)/*.log
rm -f $(BIN)/*.pbs
.PHONY: all clean