mirror of https://github.com/git-ftp/git-ftp.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
396 B
24 lines
396 B
SHELL=/bin/sh
|
|
|
|
# files that need mode 644
|
|
MAN_FILE=git-ftp.1
|
|
HTML_FILE=html/git-ftp.html
|
|
|
|
all:
|
|
@echo "usage: make man"
|
|
@echo " make clean"
|
|
man:
|
|
pandoc -s \
|
|
-w man git-ftp.1.md \
|
|
-o $(MAN_FILE)
|
|
man-ronn:
|
|
ronn --roff --pipe \
|
|
git-ftp.1.md \
|
|
> $(MAN_FILE)
|
|
html:
|
|
pandoc -s -S --toc \
|
|
-c git-ftp.css git-ftp.1.md \
|
|
-o $(HTML_FILE)
|
|
clean:
|
|
rm -f $(MAN_FILE)
|
|
rm -f $(HTML_FILE)
|