-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FSI workflow: Split Makefile into steps
- Loading branch information
Showing
1 changed file
with
19 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,27 @@ | ||
.PHONY: all | ||
|
||
all: | ||
(cd 00_geometry && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task0.pdf) | ||
all: task0 task1 task2 task3 task4 task5 | ||
|
||
(cd 01_solidMesh && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task1.pdf) | ||
pdfunite 00_geometry/task0.pdf 01_solidMesh/task1.pdf 02_solidSimulation/task2.pdf 03_fluidMesh/task3.pdf 04_fluidSimulation/task4.pdf 05_FSI/task5.pdf precice-course-fsi-workflow-tasks.pdf | ||
|
||
task0: 00_geometry/tasks.md | ||
(cd 00_geometry && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task0.pdf) | ||
|
||
task1: 01_solidMesh/tasks.md | ||
(cd 01_solidMesh && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task1.pdf) | ||
|
||
task2: 02_solidSimulation/tasks.md | ||
(cd 02_solidSimulation && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task2.pdf) | ||
|
||
|
||
task3: 03_fluidMesh/tasks.md | ||
(cd 03_fluidMesh && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task3.pdf) | ||
|
||
|
||
task4: 04_fluidSimulation/tasks.md | ||
(cd 04_fluidSimulation && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task4.pdf) | ||
|
||
|
||
task5: 05_FSI/tasks.md | ||
(cd 05_FSI && pandoc -V geometry:left=1in -V geometry:right=1in -V geometry:bottom=1.5in -V geometry:top=1in -V linkcolor:blue --filter pandoc-fignos -s tasks.md -o task5.pdf) | ||
|
||
pdfunite 00_geometry/task0.pdf 01_solidMesh/task1.pdf 02_solidSimulation/task2.pdf 03_fluidMesh/task3.pdf 04_fluidSimulation/task4.pdf 05_FSI/task5.pdf fsi-workflow-tasks.pdf | ||
|
||
clean: | ||
rm -f 00_geometry/task0.pdf 01_solidMesh/task1.pdf 02_solidSimulation/task2.pdf 03_fluidMesh/task3.pdf 04_fluidSimulation/task4.pdf 05_FSI/task5.pdf precice-course-fsi-workflow-tasks.pdf | ||
|