blob: 8dc9a8fe344603b2bc92e229d0be6ee34b983e7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
all: push
ssh git@tronto.net /home/git/BIN/post-receive-stagit all
push:
ssh git@tronto.net mkdir -p BIN FILES
scp post-receive-stagit copy-hook git@tronto.net:BIN/
scp bottom.html favicon.png logo.png style.css git@tronto.net:FILES/
ssh git@tronto.net /home/git/BIN/copy-hook
index: push
ssh git@tronto.net /home/git/BIN/post-receive-stagit index
clean:
ssh git@tronto.net rm -r FILES/* BIN/*
.PHONY: all clean index push updateall
|