~openerp-dev/openobject-client/dev_client_rga

« back to all changes in this revision

Viewing changes to configure.makefile

  • Committer: RGA(OpenERP)
  • Date: 2011-01-19 05:52:51 UTC
  • mfrom: (1369.10.89 client)
  • Revision ID: rga@tinyerp.com-20110119055251-vh2pmznpxcs445e1
Merge with trunk client

Show diffs side-by-side

added added

removed removed

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