diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-04-20 12:23:12 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-10-22 11:17:59 +0200 |
commit | 90b231ba43096b1c9954fd37731e07c2957285e9 (patch) | |
tree | 5ad174de0fe95ba43c1e9827b279b17a110f6826 | |
parent | 7ece9f9cf3084a1c41921d397408e9a44b0cb233 (diff) | |
download | asynk-rules-90b231ba43096b1c9954fd37731e07c2957285e9.zip asynk-rules-90b231ba43096b1c9954fd37731e07c2957285e9.tar.gz |
Makefile cleanup
-rw-r--r-- | DDayAtOmahaBeach/Makefile | 8 | ||||
-rw-r--r-- | FieldOfFire/Makefile | 5 | ||||
-rw-r--r-- | Makefile_lout | 12 | ||||
-rw-r--r-- | WhiteStarRising/Makefile | 5 |
4 files changed, 15 insertions, 15 deletions
diff --git a/DDayAtOmahaBeach/Makefile b/DDayAtOmahaBeach/Makefile index a885073..2931e57 100644 --- a/DDayAtOmahaBeach/Makefile +++ b/DDayAtOmahaBeach/Makefile @@ -1,4 +1,10 @@ -include /home/jeyzu/usr/git/asynk-rules/Makefile_lout +.SUFFIXES: .lou .ps .pdf + +.lou.ps: + lout -I.. -r3 $< -o $@ + +.ps.pdf: + ps2pdf $< DDayOmaha.pdf: DDayOmaha.lou \ german_fire.lou \ diff --git a/FieldOfFire/Makefile b/FieldOfFire/Makefile index 4668d2e..8660fe5 100644 --- a/FieldOfFire/Makefile +++ b/FieldOfFire/Makefile @@ -1,4 +1,7 @@ -include ../Makefile_lout +.SUFFIXES: .lou .pdf + +.lou.pdf: + lout -Z $< -o $@ FieldsOfFire.pdf: FieldsOfFire.lou \ rulesdoc diff --git a/Makefile_lout b/Makefile_lout deleted file mode 100644 index e45f462..0000000 --- a/Makefile_lout +++ /dev/null @@ -1,12 +0,0 @@ - -# clear out all suffixes -.SUFFIXES: -# # list only those we use -.SUFFIXES: .lou .ps .pdf - -.lou.ps: - lout -I.. -r3 $< -o $@ - -.ps.pdf: - ps2pdf $< - diff --git a/WhiteStarRising/Makefile b/WhiteStarRising/Makefile index b192f89..3a7cf3a 100644 --- a/WhiteStarRising/Makefile +++ b/WhiteStarRising/Makefile @@ -1,4 +1,7 @@ -include ../Makefile_lout +.SUFFIXES: .lou .pdf + +.lou.pdf: + lout -Z $< -o $@ WhiteStarRising.pdf: rulesdoc |