mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-22 00:40:30 +00:00
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@143 e7d03fd6-7b0d-0410-9947-9c21f3af8025
104 lines
3.1 KiB
Makefile
104 lines
3.1 KiB
Makefile
# This Makefile is only used by developers! No need for users to
|
|
# call make.
|
|
VERSION=$(shell python setup.py --version)
|
|
HOST=treasure.calvinsplayground.de
|
|
PROXY=--proxy= -itreasure.calvinsplayground.de -s
|
|
#PROXY=-P$(HOST):8080
|
|
#HOST=fsinfo.cs.uni-sb.de
|
|
#PROXY=-Pwww-proxy.uni-sb.de:3128
|
|
LCOPTS=-ocolored -Ftext -Fhtml -Fgml -Fsql -Fcsv -R -t0 -v
|
|
PACKAGE = linkchecker
|
|
DEBPACKAGE = ../$(PACKAGE)_$(VERSION)_i386.deb
|
|
SRCPACKAGE = dist/LinkChecker-$(VERSION).tar.gz
|
|
#RPMPATH=build/bdist.linux2/rpm
|
|
#RPMPACKAGE=$(RPMPATH)/RPMS/i386/$(PACKAGE)-$(VERSION)-1.i386.rpm
|
|
#SRPMPACKAGE=$(RPMPATH)/SRPMS/$(PACKAGE)-$(VERSION)-1.src.rpm
|
|
ALLPACKAGES = $(DEBPACKAGE) $(SRCPACKAGE) #$(RPMPACKAGE) $(SRPMPACKAGE)
|
|
SOURCES = \
|
|
linkcheck/Config.py.tmpl \
|
|
linkcheck/FileUrlData.py \
|
|
linkcheck/FtpUrlData.py \
|
|
linkcheck/GopherUrlData.py \
|
|
linkcheck/HostCheckingUrlData.py \
|
|
linkcheck/HttpUrlData.py \
|
|
linkcheck/HttpsUrlData.py \
|
|
linkcheck/JavascriptUrlData.py \
|
|
linkcheck/Logging.py \
|
|
linkcheck/MailtoUrlData.py \
|
|
linkcheck/NntpUrlData.py \
|
|
linkcheck/RobotsTxt.py \
|
|
linkcheck/TelnetUrlData.py \
|
|
linkcheck/Threader.py \
|
|
linkcheck/UrlData.py \
|
|
linkcheck/__init__.py.tmpl \
|
|
linkcheck/lc_cgi.py \
|
|
linkchecker.tmpl
|
|
|
|
TEMPLATEFILES = \
|
|
README \
|
|
linkcheck/Config.py \
|
|
linkcheck/__init__.py \
|
|
install.py \
|
|
linkchecker \
|
|
linkchecker.bat
|
|
|
|
DESTDIR=/.
|
|
.PHONY: test clean files homepage dist install all
|
|
|
|
all:
|
|
@echo "Read the file INSTALL to see how to build and install"
|
|
|
|
clean:
|
|
python setup.py clean --all
|
|
|
|
distclean: clean
|
|
rm -rf dist
|
|
rm -f $(DEBPACKAGE) $(PACKAGE)-out.* $(TEMPLATEFILES) VERSION
|
|
|
|
dist: mo
|
|
python setup.py sdist #bdist_rpm
|
|
fakeroot debian/rules binary
|
|
|
|
packages: dist
|
|
rm -rf debian/tmp
|
|
cd .. && dpkg-scanpackages . linkchecker/override.txt | gzip --best > Packages.gz
|
|
|
|
files:
|
|
./$(PACKAGE) $(LCOPTS) $(PROXY) -i$(HOST) http://$(HOST)/~calvin/
|
|
|
|
VERSION: setup.py
|
|
echo $(VERSION) > VERSION
|
|
|
|
upload: files packages VERSION
|
|
scp debian/changelog shell1.sourceforge.net:/home/groups/linkchecker/htdocs/changes.txt
|
|
scp linkchecker-out.* shell1.sourceforge.net:/home/groups/linkchecker/htdocs
|
|
scp VERSION shell1.sourceforge.net:/home/groups/linkchecker/htdocs/raw/
|
|
scp $(DEBPACKAGE) ../Packages.gz shell1.sourceforge.net:/home/groups/linkchecker/htdocs/debian
|
|
ncftpput download.sourceforge.net /incoming $(ALLPACKAGES)
|
|
ssh -tC shell1.sourceforge.net "cd /home/groups/linkchecker/htdocs/raw && make"
|
|
|
|
test:
|
|
rm -f test/*.result
|
|
@for i in test/*.html; do \
|
|
echo "Testing $$i. Results are in $$i.result"; \
|
|
./$(PACKAGE) -r1 -o text -N"news.rz.uni-sb.de" -v -a $$i > $$i.result 2>&1; \
|
|
done
|
|
|
|
po:
|
|
# german translation
|
|
xgettext --default-domain=linkcheck --no-location \
|
|
--join-existing --keyword --keyword=_ \
|
|
--output-dir=locale/de/LC_MESSAGES/ --sort-output $(SOURCES)
|
|
# french translation
|
|
xgettext --default-domain=linkcheck --no-location \
|
|
--join-existing --keyword --keyword=_ \
|
|
--output-dir=locale/fr/LC_MESSAGES/ --sort-output $(SOURCES)
|
|
|
|
mo:
|
|
# german translation
|
|
msgfmt -o locale/de/LC_MESSAGES/linkcheck.mo \
|
|
locale/de/LC_MESSAGES/linkcheck.po
|
|
# french translation
|
|
msgfmt -o locale/fr/LC_MESSAGES/linkcheck.mo \
|
|
locale/fr/LC_MESSAGES/linkcheck.po
|
|
|