1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
PREFIX = %s PYTHON = %s all: build build: python setup.py build install: build python setup.py install --prefix=$(PREFIX) --root=/ uninstall: rm $(PREFIX)/bin/openerp-client rm -rf $(PREFIX)/share/openerp-client rm -rf $(PREFIX)/share/pixmaps/openerp-client rm -rf $(PREFIX)/lib/$(PYTHON)/dist-packages/openerp* clean: rm -rf build rm -rf dist rm -rf openerp_client.egg* rm openerp-client rm Makefile |