diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-07-23 20:11:32 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2020-07-23 20:11:32 +0200 |
commit | 2c100ae2b2eb7dcabc2abc0963c8ae72a04322d3 (patch) | |
tree | df1178f0bed031cce6d4959c707c169826064337 /utils/cover/Makefile | |
parent | b0b9f78f09bac6c505882ab8542d97393c07d441 (diff) |
Massive rework on makefiles and cover generator:
- New style in cover
- Support for call from main Makefile
- Reorder directory structure
Diffstat (limited to 'utils/cover/Makefile')
-rw-r--r-- | utils/cover/Makefile | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/utils/cover/Makefile b/utils/cover/Makefile deleted file mode 100644 index 2fddab0..0000000 --- a/utils/cover/Makefile +++ /dev/null @@ -1,14 +0,0 @@ -TARGET_PDF = cover.pdf - -.PHONY: pdf -pdf: $(TARGET_PDF) - -$(TARGET_PDF): cover.svg - inkscape $^ --export-pdf=$@ - -cover.svg: cover.scm # Cover data too - chibi-scheme cover.scm > cover.svg - -.PHONY: clean -clean: - rm $(TARGET_PDF) cover.svg |