]> git.sesse.net Git - vlc/blob - bindings/mediacontrol-python/Makefile.am
mediacontrol-python/setup.py: do not use PIC libraries on win32 and darwin-ppc
[vlc] / bindings / mediacontrol-python / Makefile.am
1 ##############################################################################
2 # Building the Python binding
3 ###############################################################################
4
5 if HAVE_WIN32
6         COMPILERARG = --compiler=mingw32
7 else
8         COMPILERARG = 
9 endif
10
11 if BUILD_PYTHON
12
13 all:
14         python setup.py build $(COMPILERARG)
15
16 install:
17         python setup.py install
18
19 clean:
20         $(RM) -rf build
21 endif