diff options
author | EuAndreh <eu@euandre.org> | 2023-04-02 07:47:26 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2023-04-02 07:47:26 -0300 |
commit | e7656726f30ae38899fd5e4a39a15da26e5c856d (patch) | |
tree | 668fd75898c4350e4c0d05679005961c72d663e4 /aux | |
parent | mv po4a.cfg po/ (diff) | |
download | remembering-e7656726f30ae38899fd5e4a39a15da26e5c856d.tar.gz remembering-e7656726f30ae38899fd5e4a39a15da26e5c856d.tar.xz |
Generate .en.md symlinks in aux/dev.mk
Diffstat (limited to 'aux')
-rw-r--r-- | aux/dev.mk | 22 |
1 files changed, 17 insertions, 5 deletions
@@ -29,9 +29,8 @@ manpages.html = $(manpages.in:.in=.html) md_files.html = $(md_files:.md=.html) -public: manpages.sentinel public/makefile.svg po/po4a.cfg md.sentinel \ - public/index.html public/ci public/TODOs.html public/style.css \ - public/favicon.svg +public: manpages.sentinel public/makefile.svg md.sentinel public/index.html \ + public/ci public/TODOs.html public/style.css public/favicon.svg touch $@ public/index.html: @@ -74,8 +73,21 @@ public/makefile.svg: Makefile mkdir -p $(@D) LANG=en.UTF-8 make -Bnd dev | make2graph | dot -Tsvg >$@ -po/po4a.cfg: $(en_files) po - sh aux/po4a-cfg.sh -f '$(en_files) aux/checks/manpages/footer.en.0.in' > $@ + +index.en.md: + ln -s README.md $@ + +CHANGELOG.en.md: + ln -s CHANGELOG.md $@ + +all_en_files = \ + $(en_files) \ + index.en.md \ + CHANGELOG.en.md + +po/po4a.cfg: $(all_en_files) po + sh aux/po4a-cfg.sh -f '$(all_en_files) aux/checks/manpages/footer.en.0.in' > $@ + po4a $@ test-files = \ |