mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-05-17 02:51:07 +00:00
execute shell vars only once
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@2444 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
1852e21501
commit
9e7259a2d0
1 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
|
@ -2,8 +2,8 @@
|
|||
PYVER := 2.4
|
||||
PYTHON := python$(PYVER)
|
||||
PACKAGE := linkchecker
|
||||
NAME = $(shell $(PYTHON) setup.py --name)
|
||||
VERSION = $(shell $(PYTHON) setup.py --version)
|
||||
NAME := $(shell $(PYTHON) setup.py --name)
|
||||
VERSION := $(shell $(PYTHON) setup.py --version)
|
||||
PACKAGEDIR = /home/groups/l/li/$(PACKAGE)
|
||||
#HTMLDIR=shell1.sourceforge.net:$(PACKAGEDIR)/htdocs
|
||||
HTMLDIR=/home/calvin/public_html/linkchecker.sf.net/htdocs
|
||||
|
|
@ -31,12 +31,12 @@ clean:
|
|||
$(MAKE) -C po clean
|
||||
rm -f linkcheck/HtmlParser/htmlsax.so
|
||||
rm -f linkcheck/HtmlParser/*.output
|
||||
find . -name '*.py[co]' | xargs rm -f
|
||||
find . -name '*.py[co]' -exec rm -f {} \;
|
||||
|
||||
distclean: clean cleandeb
|
||||
# just to be sure clean also the build dir
|
||||
rm -rf dist build
|
||||
rm -f _$(PACKAGE)_configdata.py* MANIFEST Packages.gz
|
||||
rm -f _$(PACKAGE)_configdata.py MANIFEST Packages.gz
|
||||
# clean aborted dist builds and -out files
|
||||
rm -f $(PACKAGE)-out* $(PACKAGE).prof $(PACKAGE)-md5sums.txt
|
||||
rm -rf $(PACKAGE)-$(VERSION)
|
||||
|
|
|
|||
Loading…
Reference in a new issue