blob: 58de96f03c7c0d3a93a3ee946d38334807b3a2a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
SUBDIRS = \
allpingers \
images \
include \
latency \
load \
meta \
mixminion-nodes \
rot26 \
template \
tls \
tor-running-routers
based_in = htdocs
include $(top_srcdir)/Makefile.common
doc_DATA = index.php resources.html favicon.ico echolot/copied.stamp
#doc_DATA = account-create.php account-edit.php index.php login.php logout.php remsaint-subscription.php remsaint.php resources.html favicon.ico
.PHONY: echolot/copied.stamp
echolot/copied.stamp:
rsync -rav --exclude copied.stamp --delete $(ECHOLOT_BASE)/results/ echolot
touch "$@"
clean:
rm -rf echolot
install-data-local: echolot/copied.stamp
[ -d $(docdir) ] || mkdir $(docdir)
rsync -rav --delete echolot/ $(docdir)/echolot
uninstall-local:
rm -f $(docdir)/echolot
|