-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmakefile
More file actions
21 lines (18 loc) · 751 Bytes
/
Copy pathmakefile
File metadata and controls
21 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
# Set Global Variables.
include setup.mk
#---------------------------------------------------------------------------------------------------------------------------------------------------------------
clean :
make -C MRFFL clean
make -C cashflows clean
make -C loans clean
make -C monte_carlo clean
make -C retirement clean
make -C retirement_simulation clean
all :
make -C cashflows all
make -C loans all
make -C monte_carlo all
make -C retirement all
make -C retirement_simulation all
make -C MRFFL all