python: add install target to Makefile

This commit is contained in:
Nguyen Anh Quynh 2013-12-02 20:24:38 +08:00
parent 676cabd565
commit 210e94dbed

View File

@ -1,6 +1,10 @@
.PHONY: all clean install
all:
cd ..; python const_generator.py python
# sudo python setup.py install
install:
python setup.py install
clean:
rm -rf capstone/*.pyc capstone/*_const.py