mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-22 17:00:25 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@82 e7d03fd6-7b0d-0410-9947-9c21f3af8025
37 lines
947 B
Makefile
37 lines
947 B
Makefile
VERSION=$(shell ./setup.py --version)
|
|
#HOST=treasure.calvinsplayground.de
|
|
#PROXY=
|
|
#PROXY=-P$(HOST):5050
|
|
HOST=fsinfo.cs.uni-sb.de
|
|
PROXY=-Pwww-proxy.uni-sb.de:3128
|
|
PACKAGE = linkchecker
|
|
DEBPACKAGE = $(PACKAGE)_$(VERSION)_i386.deb
|
|
ALLPACKAGES = ../$(DEBPACKAGE)
|
|
DESTDIR=/.
|
|
.PHONY: test clean files homepage dist install all
|
|
TAR = tar
|
|
ZIP = zip
|
|
|
|
all:
|
|
@echo "run ./setup.py --help to see how to install"
|
|
|
|
clean:
|
|
./setup.py clean --all
|
|
rm -rf $(ALLPACKAGES) $(PACKAGE)-out.*
|
|
|
|
dist:
|
|
./setup.py sdist
|
|
fakeroot debian/rules binary
|
|
|
|
files:
|
|
./$(PACKAGE) -ocolored -Ftext -Fhtml -Fgml -Fsql -Fcsv -R -t0 -v $(PROXY) -i$(HOST) http://$(HOST)/~calvin/
|
|
|
|
homepage:
|
|
scp debian/changelog shell1.sourceforge.net:/home/groups/linkchecker/htdocs/changes.txt
|
|
|
|
test:
|
|
rm -f test/*.result
|
|
@for i in test/*.html; do \
|
|
echo "Testing $$i. Results are in $$i.result"; \
|
|
./$(PACKAGE) -t0 -N"news.rz.uni-sb.de" -v -a $$i > $$i.result 2>&1; \
|
|
done
|