05c051d8d9
Signed-off-by: Nico Schottelius <nico@ikn.schottelius.org>
18 lines
382 B
Makefile
18 lines
382 B
Makefile
DESTDIR=/home/users/nico/privat/computer/net/netzseiten/www.nico.schottelius.org/dst/
|
|
PUBDIR=tee.schottelius.org:/home/services/www/nico/www.nico.schottelius.org/www/
|
|
BROWSER=conkeror
|
|
|
|
view: all
|
|
$(BROWSER) ${DESTDIR}/index.html
|
|
|
|
all:
|
|
ikiwiki --setup ikiwiki.setup --refresh
|
|
|
|
clean: all
|
|
rm -rf ${DESTDIR}
|
|
|
|
public: all
|
|
git push --mirror
|
|
rsync -av --delete ${DESTDIR} ${PUBDIR}
|
|
|
|
|