summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9135ccc30cd179595836c424c29df41a25574e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#install: 
# cp git-prompt.sh /etc/ 
# [ -s /etc/prompt ] || ln -sf /etc/git-prompt.sh /etc/prompt 
 
tgit:
xclip -i git-demo
echo "ready to paste ..."
 
WEB_DESTDIR ?= /tmp/html-lopti
ASCIIDOC ?= asciidoc
 
 
show: web_install
firefox $(WEB_DESTDIR)/index.html
 
index.html: index.txt
$(ASCIIDOC)  -o $@  $<
 
web_install: index.html *.png
mkdir -p  $(WEB_DESTDIR)
cp -uv $^ $(WEB_DESTDIR)
 
clean:
rm -f *.html