summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3d784127ce972b3e91e8d21fd7e3c3e8314107c5 (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 *.pyc

.PHONY: build clean install test