summaryrefslogtreecommitdiff
path: root/Makefile
blob: 7ebe77d782dfca9c7653b8310aa07ef92a38acd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
build: ;

test:
	tests/dh_xul-ext/test
	tests/test-moz-version

install:
	python setup.py install --root="$(DESTDIR)" --no-compile --install-layout=deb

clean:
	rm -rf build src/*.pyc

.PHONY: build clean install test