From f7103bc2a4c5845a3d66f2f590630cc50e3b4643 Mon Sep 17 00:00:00 2001 From: Leonid Volnitsky Date: Mon, 1 Dec 2008 20:54:46 +0200 Subject: -- --- Makefile | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 245101f..5c3a39b 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,24 @@ -install: - cp git-prompt.sh /etc/ - [ -s /etc/prompt ] || ln -sf /etc/git-prompt.sh /etc/prompt - -clean: - git clean -df +#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 ..." -release: install - git tag $(shell git tag -l | awk -F. 'END{printf "%s.%s\n", $$1,$$2+1}') - git push +DESTDIR ?= /tmp/html-lopti +ASCIIDOC ?= asciidoc + + +show: install + firefox $(DESTDIR)/index.html + +index.html: index.txt + $(ASCIIDOC) -o $@ $< + +install: index.html *.png + mkdir -p $(DESTDIR) + cp -uv $^ $(DESTDIR) + +clean: + rm -f *.html -- cgit v1.2.3