aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 94093e5c75ea6df3186c278e328c3018a115b759 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
CVSREPO=:ext:gray@puszcza.gnu.org.ua:/webcvs/xenv
SOURCES=index.html style.css

index.html: index.org
	emacs --batch -l org2html.el index.org

clean: index.html

.PHONY: .cache
.cache:
	@if test -d .cache ; then \
	  cd .cache && cvs update ; \
	else \
          mkdir .cache && \
	  cvs -z3 -d $(CVSREPO) co -d .cache xenv; \
	fi

update: .cache index.html
	rsync -az $(SOURCES) .cache
	cd .cache && cvs commit -m 'Update'

Return to:

Send suggestions and report system problems to the System administrator.