]> git.sesse.net Git - vlc/blob - bindings/python/Makefile
f057af74e089903f8c8f827eab112ff562a97c0d
[vlc] / bindings / python / Makefile
1 ifdef HOMEDRIVE
2         COMPILERARG = --compiler=mingw32
3 else
4         COMPILERARG = 
5 endif
6
7 all:
8         python setup.py build $(COMPILERARG)
9
10 install:
11         python setup.py install
12
13 clean:
14         $(RM) -rf build
15