mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 20:38:00 +01:00
15 lines
256 B
Makefile
15 lines
256 B
Makefile
|
SHELL=bash
|
||
|
|
||
|
BRANCH="$(git branch | grep \\\* | sed -e s/\*\ //g)"
|
||
|
|
||
|
|
||
|
manual-update:
|
||
|
git checkout master
|
||
|
makeinfo --html "./manual/ponysay.texinfo"
|
||
|
git add "./manual/ponysay"
|
||
|
git stash
|
||
|
git checkout $(BRANCH)
|
||
|
git rm "./manual/ponysay/*"
|
||
|
git stash pop
|
||
|
|