Codebase list ros-catkin-pkg / debian/0.5.1-1 Makefile
debian/0.5.1-1

Tree @debian/0.5.1-1 (Download .tar.gz)

Makefile @debian/0.5.1-1raw · history · blame

.PHONY: all setup clean_dist distro clean install testsetup test

NAME=catkin_pkg
VERSION=`./setup.py --version`

all:
	echo "noop for debbuild"

setup:
	echo "building version ${VERSION}"

clean_dist:
	-rm -f MANIFEST
	-rm -rf dist
	-rm -rf deb_dist

distro: setup clean_dist
	python setup.py sdist

clean: clean_dist
	echo "clean"

install: distro
	sudo checkinstall python setup.py install

testsetup:
	echo "running ${NAME} tests"

test: testsetup
	cd test && pytest && pytest-3