diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-10-24 23:06:45 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-10-24 23:06:45 +0200 |
commit | 7f03b53626b2cf88238e0b5fb070dd211486d02f (patch) | |
tree | a22a100be982418cb3a1924a96226cc27d506c16 /Makefile | |
parent | gpp conflicts with other packages (diff) | |
download | gpp-7f03b53626b2cf88238e0b5fb070dd211486d02f.tar.gz gpp-7f03b53626b2cf88238e0b5fb070dd211486d02f.tar.bz2 gpp-7f03b53626b2cf88238e0b5fb070dd211486d02f.tar.xz |
more flexible info file1.1
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -24,10 +24,13 @@ doc: info .PHONY: info info: gpp.info.gz -%.info.gz: info/%.texinfo +%.info.gz: info/%.texinfo.install makeinfo "$<" gzip -9 -f "$*.info" +info/%.texinfo.install: info/%.texinfo + $(PY3) gpp -s '?' -D GPP=$(COMMAND) < "$<" > "$@" + gpp: src/gpp.py VERSION=$(VERSION) SHEBANG="$(SHEBANG)" $(PY3) "$<" -u -u < "$<" > "$@" |