aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 0190e40fe09bfac7f544ecb80aae7f99f6162f20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DEST="sebastiano@tronto.net:/var/www/sebastiano.tronto.net"
RSYNC=$$( (command -V rsync 2>&1 > /dev/null && echo rsync) || echo openrsync)

all: clean
	./build.sh

clean:
	rm -rf http
	mkdir -p http

deploy: synchttp

synchttp:
	${RSYNC} -rv --delete http/ ${DEST}

.PHONY: all clean deploy synchttp

Generated with cgit - Back to sebastiano.tronto.net