Skip to content

Commit

Permalink
Add ParU to root Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mmuetzel committed Oct 21, 2023
1 parent 00cbdf3 commit 9747d1d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ library:
( cd LDL && $(MAKE) )
( cd KLU && $(MAKE) )
( cd UMFPACK && $(MAKE) )
( cd ParU && $(MAKE) )
( cd RBio && $(MAKE) )
( cd SPQR && $(MAKE) )
( cd GraphBLAS && $(MAKE) )
Expand All @@ -55,6 +56,7 @@ local:
( cd LDL && $(MAKE) local )
( cd KLU && $(MAKE) local )
( cd UMFPACK && $(MAKE) local )
( cd ParU && $(MAKE) local )
( cd RBio && $(MAKE) local )
( cd SPQR && $(MAKE) local )
( cd GraphBLAS && $(MAKE) local )
Expand All @@ -76,6 +78,7 @@ global:
( cd LDL && $(MAKE) global )
( cd KLU && $(MAKE) global )
( cd UMFPACK && $(MAKE) global )
( cd ParU && $(MAKE) global )
( cd RBio && $(MAKE) global )
( cd SPQR && $(MAKE) global )
( cd GraphBLAS && $(MAKE) global )
Expand All @@ -95,6 +98,7 @@ install:
( cd LDL && $(MAKE) install )
( cd KLU && $(MAKE) install )
( cd UMFPACK && $(MAKE) install )
( cd ParU && $(MAKE) install )
( cd RBio && $(MAKE) install )
( cd SPQR && $(MAKE) install )
( cd GraphBLAS && $(MAKE) install )
Expand All @@ -111,6 +115,7 @@ uninstall:
( cd KLU && $(MAKE) uninstall )
( cd LDL && $(MAKE) uninstall )
( cd CCOLAMD && $(MAKE) uninstall )
( cd ParU && $(MAKE) uninstall )
( cd UMFPACK && $(MAKE) uninstall )
( cd CHOLMOD && $(MAKE) uninstall )
( cd CXSparse && $(MAKE) uninstall )
Expand Down Expand Up @@ -144,6 +149,7 @@ purge:
- $(RM) -r Example/build/*
- ( cd GraphBLAS && $(MAKE) purge )
- ( cd SPEX && $(MAKE) purge )
- ( cd ParU && $(MAKE) purge )
- $(RM) -r include/* bin/* lib/*

clean: purge
Expand All @@ -167,6 +173,7 @@ demos:
- ( cd SPQR && $(MAKE) demos )
- ( cd GraphBLAS && $(MAKE) demos )
- ( cd SPEX && $(MAKE) demos )
- ( cd ParU && $(MAKE) demos )

# Create the PDF documentation
docs:
Expand All @@ -178,6 +185,7 @@ docs:
( cd LDL && $(MAKE) docs )
( cd UMFPACK && $(MAKE) docs )
( cd CHOLMOD && $(MAKE) docs )
( cd ParU && $(MAKE) docs )
( cd SPQR && $(MAKE) docs )
( cd SPEX && $(MAKE) docs )

Expand Down Expand Up @@ -211,6 +219,7 @@ debug:
( cd LDL && $(MAKE) debug )
( cd KLU && $(MAKE) debug )
( cd UMFPACK && $(MAKE) debug )
( cd ParU && $(MAKE) debug )
( cd RBio && $(MAKE) debug )
( cd SPQR && $(MAKE) debug )
( cd GraphBLAS && $(MAKE) cdebug )
Expand Down

0 comments on commit 9747d1d

Please sign in to comment.