diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2022-05-11 15:51:02 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2022-05-11 15:51:02 +0200 |
commit | af73d468c11cc1dadd9a521e9e00b5e8ac08d0a9 (patch) | |
tree | 3e4ea5c610049d30bc923360958bfd1da215e256 /cv/Makefile | |
parent | 9fd9b76d5bb4fd64d4f50fcae1836bd757d6fd15 (diff) | |
download | meself-af73d468c11cc1dadd9a521e9e00b5e8ac08d0a9.zip meself-af73d468c11cc1dadd9a521e9e00b5e8ac08d0a9.tar.gz |
CV add CI/CD
Diffstat (limited to 'cv/Makefile')
-rw-r--r-- | cv/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cv/Makefile b/cv/Makefile index 62494ed..569cc1b 100644 --- a/cv/Makefile +++ b/cv/Makefile @@ -8,7 +8,7 @@ FONTSDEF=cvfonts.ld all: jeremy.zurcher-CV.pdf -jeremy.zurcher-CV.ps: jeremy.zurcher-CV.lou cvdoc $(FONTSDEF) +jeremy.zurcher-CV.ps: jeremy.zurcher-CV.lou $(FONTSDEF) .SUFFIXES: .lou .ps .pdf .html @@ -19,7 +19,7 @@ jeremy.zurcher-CV.ps: jeremy.zurcher-CV.lou cvdoc $(FONTSDEF) $(PS2PDF) $< .lou.ps : - $(LOUT) -F $(FONTSDIR) -r3 -o $@ $< + $(LOUT) -F $(FONTSDIR) -o $@ $< clean: - -rm !(Makefile|cvdoc|$(FONTSDEF)|$(FONTSDIR)|*.lou) + -rm !(Makefile|$(FONTSDEF)|$(FONTSDIR)|*.lou) |