diff options
author | Robert Alessi <alessi@robertalessi.net> | 2023-01-28 20:58:54 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2023-01-28 20:58:54 +0100 |
commit | adc5f5015dcde68a169af273f9574f3879da7fbd (patch) | |
tree | 6c15c31298eeca5e2d0fcf258736f8dfc7ccb90d /Makefile | |
parent | f204896c7441810ad19b138315424b6252c7371c (diff) | |
download | icite-adc5f5015dcde68a169af273f9574f3879da7fbd.tar.gz |
makefile: use typeoutfileinfo instead of ltxfileinfo
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,8 @@ | |||
1 | NAME = icite | 1 | NAME = icite |
2 | SHELL = bash | 2 | SHELL = bash |
3 | PWD = $(shell pwd) | 3 | PWD = $(shell pwd) |
4 | VERS = $(shell ltxfileinfo -v $(NAME).dtx|sed -e 's/^v//') | 4 | #VERS = $(shell ltxfileinfo -v $(NAME).dtx|sed -e 's/^v//') |
5 | VERS := $(shell typeoutfileinfo $(NAME).dtx | egrep -o '\+.*$$' | awk '{ print $$6 }' | sed -e 's/^v//') | ||
5 | LOCAL = $(shell kpsewhich --var-value TEXMFLOCAL) | 6 | LOCAL = $(shell kpsewhich --var-value TEXMFLOCAL) |
6 | UTREE = $(shell kpsewhich --var-value TEXMFHOME) | 7 | UTREE = $(shell kpsewhich --var-value TEXMFHOME) |
7 | CMP = lualatex-dev | 8 | CMP = lualatex-dev |