2007-11-20 09:28:50 +01:00
|
|
|
ifeq ($(shell which ikiwiki),)
|
|
|
|
IKIWIKI=echo "** ikiwiki not found" >&2 ; echo ikiwiki
|
|
|
|
else
|
|
|
|
IKIWIKI=ikiwiki
|
|
|
|
endif
|
|
|
|
|
|
|
|
push: output
|
2008-05-20 19:40:35 +02:00
|
|
|
rsync -Pavz html/ awesome.naquadah.org:/var/www/awesome.naquadah.org/
|
2007-11-20 09:28:50 +01:00
|
|
|
|
|
|
|
output:
|
2007-11-23 14:15:59 +01:00
|
|
|
$(IKIWIKI) `pwd` html -v --wikiname about --plugin=goodstuff --templatedir=templates \
|
2007-11-20 09:28:50 +01:00
|
|
|
--exclude=html --exclude=Makefile --rss --url http://awesome.naquadah.org
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf .ikiwiki html
|